(c-tokenize.o): Refer to source via $< so that vpath
[bpt/guile.git] / libguile / Makefile.am
1 ## Process this file with Automake to create Makefile.in
2 ##
3 ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4 ##
5 ## This file is part of GUILE.
6 ##
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.
11 ##
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.
16 ##
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
22 AUTOMAKE_OPTIONS = gnu
23
24 ## Prevent automake from adding extra -I options
25 DEFS = @DEFS@
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.
29 INCLUDES = -I.. -I$(top_srcdir) -I$(top_srcdir)/libguile-ltdl
30
31 ETAGS_ARGS = --regex='/SCM_\(GLOBAL_\)?\(G?PROC\|G?PROC1\|SYMBOL\|VCELL\|CONST_LONG\).*\"\([^\"]\)*\"/\3/' \
32 --regex='/[ \t]*SCM_[G]?DEFINE1?[ \t]*(\([^,]*\),[^,]*/\1/'
33
34 lib_LTLIBRARIES = libguile.la
35 bin_PROGRAMS = guile
36
37 noinst_PROGRAMS = guile_filter_doc_snarfage
38 guile_filter_doc_snarfage_SOURCES = c-tokenize.c
39
40 ## Override default rule; this should be compiled for BUILD host.
41 ## For some reason, OBJEXT does not include the dot
42 c-tokenize.$(OBJEXT): c-tokenize.c
43 if [ "$(cross_compiling)" = "yes" ]; then \
44 $(CC_FOR_BUILD) -c -o $@ $<; \
45 else \
46 $(COMPILE) -c -o $@ $<; \
47 fi
48
49 ## Override default rule; this should run on BUILD host.
50 guile_filter_doc_snarfage$(EXEEXT): $(guile_filter_doc_snarfage_OBJECTS) $(guile_filter_doc_snarfage_DEPENDENCIES)
51 @rm -f guile_filter_doc_snarfage$(EXEEXT)
52 if [ "$(cross_compiling)" = "yes" ]; then \
53 $(CCLD_FOR_BUILD) -o $@ $(guile_filter_doc_snarfage_OBJECTS); \
54 else \
55 $(LINK) $(guile_filter_doc_snarfage_OBJECTS) $(LDADD) $(LIBS); \
56 fi
57
58
59 guile_SOURCES = guile.c
60 guile_LDADD = libguile.la
61 guile_LDFLAGS = @DLPREOPEN@
62
63 libguile_la_SOURCES = alist.c arbiters.c async.c backtrace.c boolean.c \
64 chars.c continuations.c convert.c debug.c deprecation.c \
65 dynwind.c environments.c eq.c error.c eval.c evalext.c extensions.c \
66 feature.c fluids.c fports.c \
67 gc.c gc-mark.c gc-segment.c gc-malloc.c gc-card.c gc-freelist.c \
68 gc_os_dep.c gdbint.c gh_data.c gh_eval.c gh_funcs.c gh_init.c \
69 gh_io.c gh_list.c gh_predicates.c goops.c gsubr.c guardians.c hash.c \
70 hashtab.c hooks.c init.c inline.c ioext.c keywords.c \
71 lang.c list.c \
72 load.c macros.c mallocs.c modules.c numbers.c objects.c objprop.c \
73 options.c pairs.c ports.c print.c procprop.c procs.c properties.c \
74 random.c rdelim.c read.c root.c rw.c scmsigs.c script.c simpos.c smob.c \
75 sort.c srcprop.c stackchk.c stacks.c stime.c strings.c strop.c \
76 strorder.c strports.c struct.c symbols.c threads.c throw.c values.c \
77 variable.c vectors.c version.c vports.c weaks.c
78
79 DOT_X_FILES = alist.x arbiters.x async.x backtrace.x boolean.x chars.x \
80 continuations.x debug.x deprecation.x dynl.x dynwind.x \
81 environments.x eq.x \
82 error.x eval.x evalext.x extensions.x feature.x fluids.x fports.x \
83 gc.x gc-mark.x gc-segment.x gc-malloc.x gc-card.x goops.x \
84 gsubr.x guardians.x hash.x hashtab.x hooks.x init.x ioext.x iselect.x \
85 keywords.x lang.x list.x load.x macros.x mallocs.x modules.x \
86 numbers.x objects.x objprop.x options.x pairs.x ports.x print.x \
87 procprop.x procs.x properties.x random.x rdelim.x read.x root.x rw.x \
88 scmsigs.x script.x simpos.x smob.x sort.x srcprop.x \
89 stackchk.x stacks.x stime.x strings.x strop.x strorder.x strports.x \
90 struct.x symbols.x threads.x throw.x values.x variable.x vectors.x \
91 version.x vports.x weaks.x
92
93 EXTRA_DOT_X_FILES = @EXTRA_DOT_X_FILES@
94
95 DOT_DOC_FILES = alist.doc arbiters.doc async.doc backtrace.doc \
96 boolean.doc chars.doc continuations.doc debug.doc dynl.doc \
97 dynwind.doc environments.doc eq.doc error.doc eval.doc evalext.doc \
98 extensions.doc feature.doc fluids.doc fports.doc gc.doc goops.doc \
99 gsubr.doc gc-mark.doc gc-segment.doc gc-malloc.doc gc-card.doc \
100 guardians.doc hash.doc hashtab.doc hooks.doc init.doc ioext.doc \
101 iselect.doc keywords.doc lang.doc list.doc load.doc macros.doc \
102 mallocs.doc modules.doc numbers.doc objects.doc objprop.doc \
103 options.doc pairs.doc ports.doc print.doc procprop.doc \
104 procs.doc properties.doc random.doc rdelim.doc read.doc root.doc rw.doc \
105 scmsigs.doc script.doc simpos.doc smob.doc sort.doc \
106 srcprop.doc stackchk.doc stacks.doc stime.doc strings.doc strop.doc \
107 strorder.doc strports.doc struct.doc symbols.doc threads.doc throw.doc \
108 values.doc variable.doc vectors.doc version.doc vports.doc weaks.doc
109
110 EXTRA_DOT_DOC_FILES = @EXTRA_DOT_DOC_FILES@
111
112 BUILT_SOURCES = cpp_err_symbols.c cpp_sig_symbols.c libpath.h scmconfig.h \
113 version.h \
114 $(DOT_X_FILES) $(EXTRA_DOT_X_FILES) guile.texi
115
116 EXTRA_libguile_la_SOURCES = _scm.h \
117 alloca.c inet_aton.c memmove.c putenv.c strerror.c \
118 dynl.c regex-posix.c \
119 filesys.c posix.c net_db.c socket.c \
120 ramap.c unif.c debug-malloc.c mkstemp.c \
121 win32-uname.c win32-dirent.c win32-socket.c
122
123 ## delete guile-snarf.awk from the installation bindir, in case it's
124 ## lingering there due to an earlier guile version not having been
125 ## wiped out.
126 install-exec-hook:
127 rm -f $(DESTDIR)$(bindir)/guile-snarf.awk
128
129 ## This is kind of nasty... there are ".c" files that we don't want to
130 ## compile, since they are #included. So instead we list them here.
131 ## Perhaps we can deal with them normally once the merge seems to be
132 ## working.
133 noinst_HEADERS = num2integral.i.c num2float.i.c convert.i.c \
134 win32-uname.h win32-dirent.h win32-socket.h \
135 private-gc.h
136
137 libguile_la_DEPENDENCIES = @LIBLOBJS@
138 libguile_la_LIBADD = @LIBLOBJS@ ../libguile-ltdl/libguile-ltdl.la $(THREAD_LIBS_LOCAL)
139 libguile_la_LDFLAGS = -version-info @LIBGUILE_INTERFACE_CURRENT@:@LIBGUILE_INTERFACE_REVISION@:@LIBGUILE_INTERFACE_AGE@ -export-dynamic -no-undefined
140
141 # These are headers visible as <guile/mumble.h>
142 pkginclude_HEADERS = gh.h
143
144 # These are headers visible as <libguile/mumble.h>.
145 modincludedir = $(includedir)/libguile
146 modinclude_HEADERS = __scm.h alist.h arbiters.h async.h backtrace.h boolean.h \
147 chars.h continuations.h convert.h debug.h \
148 debug-malloc.h threads-plugin.h null-threads.h pthread-threads.h \
149 deprecation.h dynl.h dynwind.h environments.h eq.h error.h eval.h \
150 evalext.h extensions.h feature.h filesys.h fluids.h fports.h gc.h \
151 gdb_interface.h gdbint.h \
152 goops.h gsubr.h guardians.h hash.h hashtab.h hooks.h init.h \
153 inline.h ioext.h \
154 iselect.h keywords.h lang.h list.h load.h macros.h mallocs.h modules.h \
155 net_db.h numbers.h objects.h objprop.h options.h pairs.h ports.h posix.h \
156 regex-posix.h print.h procprop.h procs.h properties.h random.h ramap.h \
157 rdelim.h read.h root.h rw.h scmsigs.h validate.h script.h simpos.h smob.h \
158 snarf.h socket.h sort.h srcprop.h stackchk.h stacks.h stime.h strings.h \
159 strop.h strorder.h strports.h struct.h symbols.h tags.h threads.h \
160 throw.h unif.h values.h variable.h vectors.h version.h vports.h weaks.h
161
162 ## This file is generated at configure time. That is why it is DATA
163 ## and not a header -- headers are included in the distribution.
164 modinclude_DATA = scmconfig.h
165
166 bin_SCRIPTS = guile-snarf
167
168 # We can re-enable install for some of these if/when they are documented
169 # and people feel like maintaining them. For now, this is not the case.
170 noinst_SCRIPTS = guile-doc-snarf guile-snarf-docs guile-func-name-check
171
172 EXTRA_DIST = ChangeLog-gh ChangeLog-scm ChangeLog-threads \
173 ChangeLog-1996-1999 ChangeLog-2000 cpp_signal.c \
174 cpp_errno.c cpp_err_symbols.in cpp_err_symbols.c \
175 cpp_sig_symbols.c cpp_sig_symbols.in cpp_cnvt.awk \
176 c-tokenize.lex threads-plugin.c version.h.in pthread-threads.c
177 # $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES) \
178 # guile-procedures.txt guile.texi
179
180 ## We use @-...-@ as the substitution brackets here, instead of the
181 ## usual @...@, so autoconf doesn't go and substitute the values
182 ## directly into the left-hand sides of the sed substitutions. *sigh*
183 version.h: version.h.in
184 sed < $< > $@.tmp \
185 -e s:@-GUILE_MAJOR_VERSION-@:${GUILE_MAJOR_VERSION}: \
186 -e s:@-GUILE_MINOR_VERSION-@:${GUILE_MINOR_VERSION}: \
187 -e s:@-GUILE_MICRO_VERSION-@:${GUILE_MICRO_VERSION}:
188 mv $@.tmp $@
189
190 ## FIXME: Consider using timestamp file, to avoid unnecessary rebuilds.
191 libpath.h: $(srcdir)/Makefile.in $(top_builddir)/config.status
192 @echo "Generating libpath.h..."
193 @rm -f libpath.tmp
194 @echo '/* generated by Makefile */' > libpath.tmp
195 @echo '#define SCM_PKGDATA_DIR "$(pkgdatadir)"' >> libpath.tmp
196 @echo '#define SCM_LIBRARY_DIR "$(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)"'>>libpath.tmp
197 @echo '#define SCM_SITE_DIR "$(pkgdatadir)/site"' >> libpath.tmp
198 @echo '#define SCM_BUILD_INFO { \' >> libpath.tmp
199 @echo ' { "srcdir", "'"`cd @srcdir@; pwd`"'" }, \' >> libpath.tmp
200 @echo ' { "top_srcdir", "@top_srcdir_absolute@" }, \' >> libpath.tmp
201 @echo ' { "prefix", "@prefix@" }, \' >> libpath.tmp
202 @echo ' { "exec_prefix", "@exec_prefix@" }, \' >> libpath.tmp
203 @echo ' { "bindir", "@bindir@" }, \' >> libpath.tmp
204 @echo ' { "sbindir", "@sbindir@" }, \' >> libpath.tmp
205 @echo ' { "libexecdir", "@libexecdir@" }, \' >> libpath.tmp
206 @echo ' { "datadir", "@datadir@" }, \' >> libpath.tmp
207 @echo ' { "sysconfdir", "@sysconfdir@" }, \' >> libpath.tmp
208 @echo ' { "sharedstatedir", "@sharedstatedir@" }, \' >> libpath.tmp
209 @echo ' { "localstatedir", "@localstatedir@" }, \' >> libpath.tmp
210 @echo ' { "libdir", "@libdir@" }, \' >> libpath.tmp
211 @echo ' { "infodir", "@infodir@" }, \' >> libpath.tmp
212 @echo ' { "mandir", "@mandir@" }, \' >> libpath.tmp
213 @echo ' { "includedir", "@includedir@" }, \' >> libpath.tmp
214 @echo ' { "pkgdatadir", "$(datadir)/@PACKAGE@" }, \' >> libpath.tmp
215 @echo ' { "pkglibdir", "$(libdir)/@PACKAGE@" }, \' >> libpath.tmp
216 @echo ' { "pkgincludedir", "$(includedir)/@PACKAGE@" }, \' \
217 >> libpath.tmp
218 @echo ' { "guileversion", "@GUILE_VERSION@" }, \' >> libpath.tmp
219 @echo ' { "libguileinterface", "@LIBGUILE_INTERFACE@" }, \' \
220 >> libpath.tmp
221 @echo ' { "LIBS", "@GUILE_LIBS@" }, \' >> libpath.tmp
222 @echo ' { "buildstamp", "'"`date`"'" }, \' >> libpath.tmp
223 @echo '}' >> libpath.tmp
224 @mv libpath.tmp libpath.h
225
226
227 snarfcppopts = $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
228
229 SUFFIXES = .x .doc
230 .c.x:
231 ./guile-snarf -o $@ $< $(snarfcppopts)
232 .c.doc:
233 -(test -n "${AWK+set}" || AWK="@AWK@"; ${AWK} -f ./guile-func-name-check $<)
234 (./guile-snarf-docs $(snarfcppopts) $< | \
235 ./guile_filter_doc_snarfage$(EXEEXT) --filter-snarfage) > $@ || { rm $@; false; }
236
237 $(DOT_X_FILES) $(EXTRA_DOT_DOC_FILES): snarf.h guile-snarf.in
238
239 $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): snarf.h guile-snarf-docs.in guile_filter_doc_snarfage$(EXEEXT)
240
241 error.x: cpp_err_symbols.c
242 posix.x: cpp_sig_symbols.c
243 load.x: libpath.h
244
245 include $(top_srcdir)/am/pre-inst-guile
246
247 alldotdocfiles = $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES)
248 snarf2checkedtexi = GUILE="$(GUILE_FOR_BUILD)" $(top_srcdir)/scripts/snarf-check-and-output-texi
249 dotdoc2texi = cat $(alldotdocfiles) | $(snarf2checkedtexi)
250
251 guile.texi: $(alldotdocfiles) guile
252 $(dotdoc2texi) --manual > $@ || { rm $@; false; }
253
254 guile-procedures.texi: $(alldotdocfiles) guile
255 $(dotdoc2texi) > $@ || { rm $@; false; }
256
257 if HAVE_MAKEINFO
258
259 guile-procedures.txt: guile-procedures.texi
260 rm -f $@
261 makeinfo --force -o $@ guile-procedures.texi || test -f $@
262
263 else
264
265 guile-procedures.txt: guile-procedures.texi
266 cp guile-procedures.texi $@
267
268 endif
269
270 c-tokenize.c: c-tokenize.lex
271 flex -t $(srcdir)/c-tokenize.lex > $@ || { rm $@; false; }
272
273 schemelibdir = $(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)
274 schemelib_DATA = guile-procedures.txt
275
276 ## Add -MG to make the .x magic work with auto-dep code.
277 MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
278
279 cpp_err_symbols.c: cpp_err_symbols.in cpp_cnvt.awk
280 $(AWK) -f $(srcdir)/cpp_cnvt.awk < $(srcdir)/cpp_err_symbols.in > \
281 cpp_err_symbols.tmp
282 mv cpp_err_symbols.tmp cpp_err_symbols.c
283
284 cpp_sig_symbols.c: cpp_sig_symbols.in cpp_cnvt.awk
285 $(AWK) -f $(srcdir)/cpp_cnvt.awk < $(srcdir)/cpp_sig_symbols.in > \
286 cpp_sig_symbols.tmp
287 mv cpp_sig_symbols.tmp cpp_sig_symbols.c
288
289 ## Create a new version of the cpp_sig_symbols.in file, including all SIGXXX
290 ## macros defined on this platform.
291 check_signals:
292 gcc -undef -dM -E $(srcdir)/cpp_signal.c | egrep ' SIG[A-Z]+' \
293 | cut -f2 -d' ' | sort > cpp_sig_symbols_here
294 diff -u $(srcdir)/cpp_sig_symbols.in cpp_sig_symbols_here \
295 | egrep '^\+S' \
296 | cut -c2- > cpp_sig_symbols_diff
297 if test -s cpp_sig_symbols_diff ; then \
298 cat $(srcdir)/cpp_sig_symbols.in cpp_sig_symbols_diff \
299 | sort > cpp_sig_symbols_new ;\
300 echo "cpp_sig_symbols_new has the following additions:" ;\
301 cat cpp_sig_symbols_diff ;\
302 else echo "No new symbols found."; \
303 fi
304
305 ## Likewise for cpp_err_symbols.in.
306 check_errnos:
307 gcc -undef -dM -E $(srcdir)/cpp_errno.c | egrep ' E.+' \
308 | cut -f2 -d' ' | sort > cpp_err_symbols_here
309 diff -u $(srcdir)/cpp_err_symbols.in cpp_err_symbols_here \
310 | egrep '^\+E' \
311 | cut -c2- > cpp_err_symbols_diff
312 if test -s cpp_err_symbols_diff ; then \
313 cat $(srcdir)/cpp_err_symbols.in cpp_err_symbols_diff \
314 | sort > cpp_err_symbols_new ;\
315 echo "cpp_err_symbols_new has the following additions:" ;\
316 cat cpp_err_symbols_diff ;\
317 else echo "No new symbols found."; \
318 fi
319
320 MOSTLYCLEANFILES = \
321 cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new \
322 cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new \
323 version.h version.h.tmp \
324 scmconfig.h scmconfig.h.tmp
325
326 CLEANFILES = libpath.h *.x *.doc guile-procedures.txt guile-procedures.texi guile.texi
327
328 MAINTAINERCLEANFILES = c-tokenize.c