add ,finish repl meta-command
[bpt/guile.git] / Makefile.am
CommitLineData
733943b9 1## Process this file with automake to produce Makefile.in.
2764bd99 2##
718815d7 3## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
2764bd99
JB
4##
5## This file is part of GUILE.
14353f06 6##
53befeb7
NJ
7## GUILE is free software; you can redistribute it and/or modify it
8## under the terms of the GNU Lesser General Public License as
9## published by the Free Software Foundation; either version 3, or
2764bd99 10## (at your option) any later version.
14353f06 11##
2764bd99
JB
12## GUILE is distributed in the hope that it will be useful, but
13## WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
53befeb7 15## GNU Lesser General Public License for more details.
14353f06 16##
53befeb7
NJ
17## You should have received a copy of the GNU Lesser General Public
18## License along with GUILE; see the file COPYING.LESSER. If not,
19## write to the Free Software Foundation, Inc., 51 Franklin Street,
20## Fifth Floor, Boston, MA 02110-1301 USA
733943b9 21
329e0394
KR
22# want automake 1.10 or higher so that AM_GNU_GETTEXT can tell automake that
23# config.rpath is needed
24#
25AUTOMAKE_OPTIONS = 1.10
f501d0d4 26
0b6d8fdc 27SUBDIRS = lib meta libguile guile-readline emacs \
37710f7e 28 examples test-suite benchmark-suite am \
aa592f96 29 module doc
733943b9 30
718815d7
AW
31libguileincludedir = $(pkgincludedir)/$(GUILE_EFFECTIVE_VERSION)
32libguileinclude_HEADERS = libguile.h
0479e5b7 33
cb5a5283
LC
34EXTRA_DIST = LICENSE HACKING GUILE-VERSION \
35 m4/ChangeLog-2008 \
36 ChangeLog-2008 \
37 .version
94f7baaf 38
1ff7abbe
DH
39TESTS = check-guile
40
d051899d 41ACLOCAL_AMFLAGS = -I m4
0520dabb 42
9ea1cfc6 43DISTCLEANFILES = check-guile.log
0520dabb 44
13922e3f
LC
45DISTCHECK_CONFIGURE_FLAGS = --enable-error-on-warning
46
db10a69b 47dist-hook: gen-ChangeLog gen-tarball-version
5b55e293 48
48a0fe4d
AW
49clean-local:
50 rm -rf cache/
51
a6e60a95
AW
52CONFIG_STATUS_DEPENDENCIES = GUILE-VERSION
53
5b55e293
AW
54gen_start_rev = 61db429e251bfd2f75cb4632972e0238056eb24b
55.PHONY: gen-ChangeLog
56gen-ChangeLog:
57 if test -d .git; then \
58 $(top_srcdir)/build-aux/gitlog-to-changelog \
59 $(gen_start_rev)..HEAD > $(distdir)/cl-t; \
60 rm -f $(distdir)/ChangeLog; \
61 mv $(distdir)/cl-t $(distdir)/ChangeLog; \
62 fi
63
db10a69b
LC
64BUILT_SOURCES = $(top_srcdir)/.version
65$(top_srcdir)/.version:
66 echo $(VERSION) > $@-t && mv $@-t $@
67gen-tarball-version:
68 echo $(VERSION) > $(distdir)/.tarball-version
69
0520dabb 70# Makefile.am ends here