Changes from arch/CVS synchronization
[bpt/guile.git] / guile-readline / Makefile.am
CommitLineData
c374ab69
MV
1## Process this file with Automake to create Makefile.in
2##
1b09b607 3## Copyright (C) 1998, 1999, 2000, 2001, 2004, 2006 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
92205699
MV
19## to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
20## Floor, Boston, MA 02110-1301 USA
c374ab69 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.
5be9f729 29INCLUDES = -I. -I.. -I$(srcdir)/..
c374ab69
MV
30
31GUILE_SNARF = ../libguile/guile-snarf
32
e5ab7101 33lib_LTLIBRARIES = libguilereadline-v-@LIBGUILEREADLINE_MAJOR@.la
c374ab69 34
e5ab7101
MV
35libguilereadline_v_@LIBGUILEREADLINE_MAJOR@_la_SOURCES = readline.c
36libguilereadline_v_@LIBGUILEREADLINE_MAJOR@_la_LIBADD = ../libguile/libguile.la
37libguilereadline_v_@LIBGUILEREADLINE_MAJOR@_la_LDFLAGS = -version-info @LIBGUILEREADLINE_INTERFACE@ -export-dynamic -no-undefined
0bb2ba7a 38
c374ab69 39
84a8c61d
MD
40BUILT_SOURCES = readline.x
41
ae9e7aac
MD
42pkginclude_HEADERS = readline.h
43
6a9a7bf2 44snarfcppopts = $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
c374ab69
MV
45SUFFIXES = .x
46.c.x:
2c7a286a 47 $(GUILE_SNARF) -o $@ $< $(snarfcppopts)
c374ab69 48
0dcee837 49EXTRA_DIST = LIBGUILEREADLINE-VERSION
507af33e 50
305bf93c
ML
51MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
52
53CLEANFILES = *.x
2d72b502
MD
54
55dist-hook:
56 (temp="/tmp/mangle-deps.$$$$"; \
57 trap "rm -f $$temp" 0 1 2 15; \
58 sed -e 's|\([ ]\)\(\.\./\(\|libguile/\|guile-readline/\)[a-z_-]*\.h\)|\1$$(srcdir)/\2|g' $(distdir)/Makefile.in \
59 | sed -e 's|\$$(srcdir)/\(\.\./libguile/\(libpath\|scmconfig\|versiondat\)\)|\1|g' \
60 | sed -e 's|\.\./guile-readline/\([a-z_-]*\.x\)|\1|g' > $$temp \
7ceac84e 61 && chmod u+w $(distdir)/Makefile.in && cp -p $$temp $(distdir)/Makefile.in)
0dcee837 62