1
0
Fork 0
tekuti/configure.ac
Andy Wingo 4f62c95bde autotoolize, and compile the scheme files
* .gitignore:
* AUTHORS:
* COPYING:
* ChangeLog:
* Makefile.am:
* NEWS:
* README:
* acinclude.m4:
* configure.ac:
* env.in: All the needed bits.
2010-11-13 18:48:18 +01:00

21 lines
392 B
Text

dnl -*- Autoconf -*-
AC_INIT(tekuti, 0.2.0)
AC_CONFIG_SRCDIR(src/tekuti)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability])
AM_SILENT_RULES([yes])
GUILE_PROGS
if $GUILE_TOOLS | grep -q compile; then
# everything cool
true
else
AC_MSG_ERROR([Guile 2.0 required.])
fi
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([env], [chmod +x env])
AC_OUTPUT