spot/buddy/configure.ac
Alexandre Duret-Lutz 89cc96b8f6 * configure.ac: Output config.h.
* src/kernel.h: Include it.
* src/Makefile.am (AM_CPPFLAGS): New variable.
2003-05-05 14:07:28 +00:00

35 lines
581 B
Text

AC_PREREQ([2.57])
AC_INIT([buddy], [2.2a])
AC_CONFIG_AUX_DIR([tools])
AM_INIT_AUTOMAKE([foreign nostdinc no-define 1.7.3])
AC_PROG_CC
AM_PROG_LEX
AC_PROG_YACC
AC_PROG_CXX
AC_PROG_LIBTOOL
buddy_DEBUG_FLAGS
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
src/Makefile
doc/Makefile
examples/Makefile
examples/adder/Makefile
examples/calculator/Makefile
examples/cmilner/Makefile
examples/fdd/Makefile
examples/internal/Makefile
examples/milner/Makefile
examples/money/Makefile
examples/queen/Makefile
examples/solitare/Makefile
])
AC_OUTPUT