1
# Copyright (C) 2009, 2010, 2011 Jose A Ortega Ruiz.
2
#
3
# This file is free software; as a special exception the author gives
4
# unlimited permission to copy and/or distribute it, with or without
5
# modifications, as long as this notice is preserved.
6
#
7
# This program is distributed in the hope that it will be useful, but
8
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
9
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
11
AC_INIT([Geiser],[0.1.4],[geiser-users@nongnu.org],geiser)
12
AC_CONFIG_SRCDIR([elisp/geiser.el])
13
AM_INIT_AUTOMAKE
14
15
AC_PROG_MAKE_SET
16
AC_PROG_INSTALL
17
AC_PROG_MKDIR_P
18
AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, no)
19
20
AM_PATH_LISPDIR
21
22
AC_CONFIG_FILES([
23
Makefile
24
elisp/Makefile
25
elisp/geiser-version.el
26
elisp/geiser-load.el
27
scheme/Makefile
28
bin/Makefile
29
doc/Makefile
30
])
31
32
AC_OUTPUT