* scheme-modules.texi (Compiled Code Modules): replace
[bpt/guile.git] / guile-readline / Makefile.am
CommitLineData
c374ab69
MV
1## Process this file with Automake to create Makefile.in
2##
9cc64c3e 3## Copyright (C) 1998, 1999, 2000, 2001 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
cd68fcc1 22AUTOMAKE_OPTIONS = foreign
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
370b47a8
MV
45ice9dir = $(datadir)/guile/$(VERSION)/ice-9
46ice9_DATA = readline.scm
c374ab69 47
6a9a7bf2 48snarfcppopts = $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
c374ab69
MV
49SUFFIXES = .x
50.c.x:
2c7a286a 51 $(GUILE_SNARF) -o $@ $< $(snarfcppopts)
c374ab69 52
edb810bb 53EXTRA_DIST = $(ice9_DATA) LIBGUILEREADLINE-VERSION
ee148ae7 54ETAGS_ARGS = $(ice9_DATA)
507af33e 55
305bf93c
ML
56MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
57
58CLEANFILES = *.x
2d72b502
MD
59
60dist-hook:
61 (temp="/tmp/mangle-deps.$$$$"; \
62 trap "rm -f $$temp" 0 1 2 15; \
63 sed -e 's|\([ ]\)\(\.\./\(\|libguile/\|guile-readline/\)[a-z_-]*\.h\)|\1$$(srcdir)/\2|g' $(distdir)/Makefile.in \
64 | sed -e 's|\$$(srcdir)/\(\.\./libguile/\(libpath\|scmconfig\|versiondat\)\)|\1|g' \
65 | sed -e 's|\.\./guile-readline/\([a-z_-]*\.x\)|\1|g' > $$temp \
7ceac84e 66 && chmod u+w $(distdir)/Makefile.in && cp -p $$temp $(distdir)/Makefile.in)