SRFI 34
[bpt/guile.git] / srfi / Makefile.am
1 ## Process this file with Automake to create Makefile.in
2 ##
3 ## Copyright (C) 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@ @EXTRA_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$(srcdir)/..
30
31 srfiincludedir = $(pkgincludedir)/srfi
32
33 # These headers are visible as <guile/srfi/mumble.h>
34 srfiinclude_HEADERS = srfi-1.h srfi-4.h srfi-13.h srfi-14.h
35
36 lib_LTLIBRARIES = libguile-srfi-srfi-1.la \
37 libguile-srfi-srfi-4.la \
38 libguile-srfi-srfi-13-14.la
39
40 BUILT_SOURCES = srfi-1.x srfi-4.x srfi-13.x srfi-14.x
41
42 libguile_srfi_srfi_1_la_SOURCES = srfi-1.x srfi-1.c
43 libguile_srfi_srfi_1_la_LIBADD = ../libguile/libguile.la
44 libguile_srfi_srfi_1_la_LDFLAGS = -export-dynamic \
45 -version-info @LIBGUILE_SRFI_SRFI_1_INTERFACE@
46
47 libguile_srfi_srfi_4_la_SOURCES = srfi-4.x srfi-4.c
48 libguile_srfi_srfi_4_la_LIBADD = ../libguile/libguile.la
49 libguile_srfi_srfi_4_la_LDFLAGS = -export-dynamic \
50 -version-info @LIBGUILE_SRFI_SRFI_4_INTERFACE@
51
52 libguile_srfi_srfi_13_14_la_SOURCES = srfi-13.x srfi-13.c srfi-14.x srfi-14.c
53 libguile_srfi_srfi_13_14_la_LIBADD = ../libguile/libguile.la
54 libguile_srfi_srfi_13_14_la_LDFLAGS = -export-dynamic \
55 -version-info @LIBGUILE_SRFI_SRFI_13_14_INTERFACE@
56
57 srfidir = $(datadir)/guile/$(GUILE_EFFECTIVE_VERSION)/srfi
58 srfi_DATA = srfi-1.scm \
59 srfi-2.scm \
60 srfi-4.scm \
61 srfi-6.scm \
62 srfi-8.scm \
63 srfi-9.scm \
64 srfi-10.scm \
65 srfi-11.scm \
66 srfi-13.scm \
67 srfi-14.scm \
68 srfi-16.scm \
69 srfi-17.scm \
70 srfi-19.scm \
71 srfi-34.scm
72
73 EXTRA_DIST = $(srfi_DATA)
74 ETAGS_ARGS = $(srfi_DATA)
75
76 GUILE_SNARF = ../libguile/guile-snarf
77
78 MKDEP = gcc -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
79
80 snarfcppopts = $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
81
82 SUFFIXES = .x
83 .c.x:
84 $(GUILE_SNARF) -o $@ $< $(snarfcppopts)
85
86 CLEANFILES = *.x