1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# configure.ac -- process this file with autoconf to produce a configure script
AC_INIT([stdhome], [m4_esyscmd_s(cat version)],
[tim@ed.am], ,[http://ed.am/dev/stdhome])
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/stdhome], [chmod +x src/stdhome])
AC_OUTPUT([Makefile src/Makefile lib/stdhome/Makefile])
|