* srfi-1.scm (check-arg-type, non-negative-integer?): a couple of new
[bpt/guile.git] / srfi / Makefile.am
CommitLineData
ca003b26
MG
1## Process this file with Automake to create Makefile.in
2##
3## Copyright (C) 2001 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
22AUTOMAKE_OPTIONS = foreign
23
ca003b26
MG
24## Prevent automake from adding extra -I options
25DEFS = @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.
29INCLUDES = -I.. -I$(srcdir)/..
30
31
71ca65d9 32lib_LTLIBRARIES = libguile-srfi-srfi-13-14.la libguile-srfi-srfi-4.la
ca003b26 33
71ca65d9 34BUILT_SOURCES = srfi-13.x srfi-14.x srfi-4.x
653c7291
MG
35libguile_srfi_srfi_13_14_la_SOURCES = srfi-13.x srfi-13.c srfi-14.x srfi-14.c\
36 srfi-13.h srfi-14.h
ca003b26
MG
37libguile_srfi_srfi_13_14_la_LDFLAGS = -version-info 0:0 -export-dynamic
38
71ca65d9
MG
39libguile_srfi_srfi_4_la_SOURCES = srfi-4.x srfi-4.c srfi-4.h
40libguile_srfi_srfi_4_la_LDFLAGS = -version-info 0:0 -export-dynamic
41
ca003b26 42srfidir = $(datadir)/guile/$(VERSION)/srfi
e9680547
MG
43srfi_DATA = srfi-1.scm \
44 srfi-2.scm \
71ca65d9 45 srfi-4.scm \
95f1d861
RB
46 srfi-6.scm \
47 srfi-8.scm \
a6fd89a4 48 srfi-9.scm \
e1633bf3 49 srfi-10.scm \
95f1d861
RB
50 srfi-11.scm \
51 srfi-13.scm \
e1633bf3 52 srfi-14.scm \
6851c8a4 53 srfi-16.scm \
a19422d7
RB
54 srfi-17.scm \
55 srfi-19.scm
ca003b26
MG
56
57EXTRA_DIST = $(srfi_DATA)
58
59GUILE_SNARF = ../libguile/guile-snarf
60
998c3141
ML
61MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
62
ca003b26
MG
63SUFFIXES = .x
64.c.x:
65 $(GUILE_SNARF) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@ \
66 || { rm $@; false; }
67
998c3141 68CLEANFILES = *.x