* Makefile.am: Added appropriate @LIBGUILE_*_MAJOR@ substitutions
[bpt/guile.git] / guile-readline / Makefile.am
CommitLineData
c374ab69
MV
1## Process this file with Automake to create Makefile.in
2##
f1dc5f45 3## Copyright (C) 1998, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
c374ab69
MV
4##
5## This file is part of GUILE.
cc4c7bd4 6##
c374ab69
MV
7## GUILE is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as
9## published by the Free Software Foundation; either version 2, or
10## (at your option) any later version.
cc4c7bd4 11##
c374ab69
MV
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
15## GNU General Public License for more details.
cc4c7bd4 16##
c374ab69
MV
17## You should have received a copy of the GNU General Public
18## License along with GUILE; see the file COPYING. If not, write
19## to the Free Software Foundation, Inc., 59 Temple Place, Suite
20## 330, Boston, MA 02111-1307 USA
21
0dcee837 22SUBDIRS = ice-9
c374ab69 23
a0599745 24## Prevent automake from adding extra -I options
7ed13800 25DEFS = @DEFS@ @EXTRA_DEFS@
c374ab69
MV
26## Check for headers in $(srcdir)/.., so that #include
27## <libguile/MUMBLE.h> will find MUMBLE.h in this dir when we're
28## building.
a0599745 29INCLUDES = -I.. -I$(srcdir)/..
c374ab69
MV
30
31GUILE_SNARF = ../libguile/guile-snarf
32
33lib_LTLIBRARIES = libguilereadline.la
34
305bf93c 35libguilereadline_la_SOURCES = readline.c
7ed13800 36libguilereadline_la_LIBADD = ../libguile/libguile.la
0bb2ba7a
RB
37libguilereadline_la_LDFLAGS = -version-info @LIBGUILEREADLINE_INTERFACE@ \
38 -export-dynamic -no-undefined
39
c374ab69 40
84a8c61d
MD
41BUILT_SOURCES = readline.x
42
ae9e7aac
MD
43pkginclude_HEADERS = readline.h
44
6a9a7bf2 45snarfcppopts = $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
c374ab69
MV
46SUFFIXES = .x
47.c.x:
2c7a286a 48 $(GUILE_SNARF) -o $@ $< $(snarfcppopts)
c374ab69 49
0dcee837 50EXTRA_DIST = LIBGUILEREADLINE-VERSION
507af33e 51
305bf93c
ML
52MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
53
54CLEANFILES = *.x
2d72b502
MD
55
56dist-hook:
57 (temp="/tmp/mangle-deps.$$$$"; \
58 trap "rm -f $$temp" 0 1 2 15; \
59 sed -e 's|\([ ]\)\(\.\./\(\|libguile/\|guile-readline/\)[a-z_-]*\.h\)|\1$$(srcdir)/\2|g' $(distdir)/Makefile.in \
60 | sed -e 's|\$$(srcdir)/\(\.\./libguile/\(libpath\|scmconfig\|versiondat\)\)|\1|g' \
61 | sed -e 's|\.\./guile-readline/\([a-z_-]*\.x\)|\1|g' > $$temp \
7ceac84e 62 && chmod u+w $(distdir)/Makefile.in && cp -p $$temp $(distdir)/Makefile.in)
0dcee837 63