[go: up one dir, main page]

Menu

[r3]: / configure.ac  Maximize  Restore  History

Download this file

31 lines (20 with data), 656 Bytes

#                                               -*- 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