Commentary in job.scm that explains usage.
[tlb/tomd.git] / configure.ac
1 AC_INIT([tomd], [0.0.1], [tbalzer2012@gmail.com])
2 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
3 AC_PROG_CC
4 dnl AC_CONFIG_HEADERS([])
5 AC_CONFIG_FILES([
6 Makefile
7 src/Makefile
8 ])
9 dnl need to do checking for header/lib install
10 AC_ARG_ENABLE([guile],
11 [ --enable-guile Enable Guile Configuration of tomd],
12 [case "${enableval}" in
13 yes) guile=true ;;
14 no) guile=false ;;
15 *) AC_MSG_ERROR([bad value ${enableval} for --enable-guile]) ;;
16 esac],[debug=false])
17 AM_CONDITIONAL([GUILE_ENABLE], [test x$guile = xtrue])
18 AC_OUTPUT