1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# configure.ac -- process this file with autoconf to produce a configure script
AC_INIT([prep-images], [m4_esyscmd_s(cat version)], [tim@ed.am], ,[http://ed.am/dev/gtk/prep-images])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign dist-xz])
# checks for programs.
AM_PATH_PYTHON([2.6])
# checks for libraries.
# checks for header files.
# checks for typedefs, structures, and compiler characteristics.
# checks for library functions.
AC_CONFIG_FILES([src/prep-images], [chmod +x src/prep-images])
AC_OUTPUT([Makefile src/Makefile])
|