spot/configure.ac
Alexandre Duret-Lutz 03e893b23d * configure.ac (AM_INIT_AUTOMAKE): Use nostdinc, to make
sure we always use paths relative to src/ in src/'s
subdirectories.
2003-04-29 11:15:00 +00:00

31 lines
No EOL
473 B
Text

AC_PREREQ([2.57])
AC_INIT([spot], [0.1])
AC_CONFIG_AUX_DIR([tools])
AM_INIT_AUTOMAKE([foreign nostdinc 1.7.3])
AC_PROG_CXX
AC_PROG_RANLIB
AM_PROG_LEX
AC_PROG_YACC
AC_LANG(C++)
CF_GXX_WARNINGS
AC_CHECK_PROG([DOT], [dot], [dot])
AC_CONFIG_FILES([
Makefile
doc/Makefile
doc/Doxyfile
src/Makefile
src/ltlenv/Makefile
src/ltlast/Makefile
src/ltlparse/Makefile
src/ltltest/Makefile
src/ltltest/defs
src/ltlvisit/Makefile
src/misc/Makefile
])
AC_OUTPUT