Person password manager Code
Status: Pre-Alpha
Brought to you by:
xiaohu
# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) AC_INIT([mypass], [0.0.1], [xiaohu417@gmail.com]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_AUX_DIR([autotools]) AC_CONFIG_MACRO_DIR([m4macros]) AM_INIT_AUTOMAKE([-Wall dist-bzip2]) AM_MAINTAINER_MODE m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # Checks for programs. # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_CONFIG_FILES([Makefile pass/Makefile ui/Makefile ]) AC_OUTPUT