summaryrefslogtreecommitdiffstatshomepage
path: root/configure.ac
blob: da0d6679ae3614fb37cf45a13445e229ac067938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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