Fix SRFI-37 `args-fold' with short option names of argument-less options.
[bpt/guile.git] / test-suite / standalone / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2 ##
3 ## Copyright 2003, 2004, 2005, 2006, 2007, 2008 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., 51 Franklin Street, Fifth
20 ## Floor, Boston, MA 02110-1301 USA
21
22
23 # initializations so we can use += below.
24 TESTS =
25 noinst_LTLIBRARIES =
26 check_PROGRAMS =
27 check_SCRIPTS =
28 BUILT_SOURCES =
29
30 TESTS_ENVIRONMENT = "${top_builddir}/pre-inst-guile-env"
31
32 test_cflags = \
33 -I$(top_srcdir)/test-suite/standalone \
34 -I$(top_srcdir) \
35 $(EXTRA_DEFS) $(GUILE_CFLAGS)
36
37 AM_LDFLAGS = $(GUILE_CFLAGS)
38
39 snarfcppopts = \
40 $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS) -I$(top_srcdir)
41 SUFFIXES = .x
42 .c.x:
43 ${top_builddir}/libguile/guile-snarf -o $@ $< $(snarfcppopts)
44
45 CLEANFILES = *.x
46
47 .DELETE_ON_ERROR:
48
49 check_SCRIPTS += test-system-cmds
50 TESTS += test-system-cmds
51
52 check_SCRIPTS += test-bad-identifiers
53 TESTS += test-bad-identifiers
54
55 check_SCRIPTS += test-require-extension
56 TESTS += test-require-extension
57
58 # test-num2integral
59 test_num2integral_SOURCES = test-num2integral.c
60 test_num2integral_CFLAGS = ${test_cflags}
61 test_num2integral_LDADD = ${top_builddir}/libguile/libguile.la
62 check_PROGRAMS += test-num2integral
63 TESTS += test-num2integral
64
65 # test-round
66 test_round_CFLAGS = ${test_cflags}
67 test_round_LDADD = ${top_builddir}/libguile/libguile.la
68 check_PROGRAMS += test-round
69 TESTS += test-round
70
71 # test-gh
72 test_gh_SOURCES = test-gh.c
73 test_gh_CFLAGS = ${test_cflags}
74 test_gh_LDADD = ${top_builddir}/libguile/libguile.la
75 check_PROGRAMS += test-gh
76 TESTS += test-gh
77
78 # test-asmobs
79 noinst_LTLIBRARIES += libtest-asmobs.la
80 libtest_asmobs_la_SOURCES = test-asmobs-lib.c test-asmobs-lib.x
81 libtest_asmobs_la_CFLAGS = ${test_cflags}
82 libtest_asmobs_la_LDFLAGS = -no-undefined -rpath `pwd` # so libtool will really build an .so
83 libtest_asmobs_la_LIBADD = ${top_builddir}/libguile/libguile.la
84 BUILT_SOURCES += test-asmobs-lib.x
85 check_SCRIPTS += test-asmobs
86 TESTS += test-asmobs
87
88 # test-list
89 test_list_SOURCES = test-list.c
90 test_list_CFLAGS = ${test_cflags}
91 test_list_LDADD = ${top_builddir}/libguile/libguile.la
92 check_PROGRAMS += test-list
93 TESTS += test-list
94
95 # test-unwind
96 test_unwind_SOURCES = test-unwind.c
97 test_unwind_CFLAGS = ${test_cflags}
98 test_unwind_LDADD = ${top_builddir}/libguile/libguile.la
99 check_PROGRAMS += test-unwind
100 TESTS += test-unwind
101
102 # test-conversion
103 test_conversion_SOURCES = test-conversion.c
104 test_conversion_CFLAGS = ${test_cflags}
105 test_conversion_LDADD = ${top_builddir}/libguile/libguile.la
106 check_PROGRAMS += test-conversion
107 TESTS += test-conversion
108
109 # test-use-srfi
110 check_SCRIPTS += test-use-srfi
111 TESTS += test-use-srfi
112
113 # test-with-guile-module
114 test_with_guile_module_CFLAGS = ${test_cflags}
115 test_with_guile_module_LDADD = ${top_builddir}/libguile/libguile.la
116 check_PROGRAMS += test-with-guile-module
117 TESTS += test-with-guile-module
118
119 all-local:
120 cd ${srcdir} && chmod u+x ${check_SCRIPTS}
121
122 EXTRA_DIST = ${check_SCRIPTS}