Commentary in job.scm that explains usage.
[tlb/tomd.git] / configure.ac
CommitLineData
b6ca5637
TB
1AC_INIT([tomd], [0.0.1], [tbalzer2012@gmail.com])
2AM_INIT_AUTOMAKE([-Wall -Werror foreign])
3AC_PROG_CC
4dnl AC_CONFIG_HEADERS([])
5AC_CONFIG_FILES([
6 Makefile
7 src/Makefile
8])
e10a5588
TB
9dnl need to do checking for header/lib install
10AC_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]) ;;
16esac],[debug=false])
17AM_CONDITIONAL([GUILE_ENABLE], [test x$guile = xtrue])
b6ca5637 18AC_OUTPUT