Honor $TMPDIR in the test suite.
[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 -I$(top_srcdir)/lib -I$(top_builddir)/lib \
36 $(EXTRA_DEFS) $(GUILE_CFLAGS)
37
38 AM_LDFLAGS = $(GUILE_CFLAGS)
39
40 snarfcppopts = \
41 $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS) -I$(top_srcdir) \
42 -I$(top_srcdir)/lib -I$(top_builddir)/lib
43
44 SUFFIXES = .x
45 .c.x:
46 ${top_builddir}/libguile/guile-snarf -o $@ $< $(snarfcppopts)
47
48 CLEANFILES = *.x
49
50 .DELETE_ON_ERROR:
51
52 check_SCRIPTS += test-system-cmds
53 TESTS += test-system-cmds
54
55 check_SCRIPTS += test-bad-identifiers
56 TESTS += test-bad-identifiers
57
58 check_SCRIPTS += test-require-extension
59 TESTS += test-require-extension
60
61 # test-num2integral
62 test_num2integral_SOURCES = test-num2integral.c
63 test_num2integral_CFLAGS = ${test_cflags}
64 test_num2integral_LDADD = ${top_builddir}/libguile/libguile.la
65 check_PROGRAMS += test-num2integral
66 TESTS += test-num2integral
67
68 # test-round
69 test_round_CFLAGS = ${test_cflags}
70 test_round_LDADD = ${top_builddir}/libguile/libguile.la
71 check_PROGRAMS += test-round
72 TESTS += test-round
73
74 # test-gh
75 test_gh_SOURCES = test-gh.c
76 test_gh_CFLAGS = ${test_cflags}
77 test_gh_LDADD = ${top_builddir}/libguile/libguile.la
78 check_PROGRAMS += test-gh
79 TESTS += test-gh
80
81 # test-asmobs
82 noinst_LTLIBRARIES += libtest-asmobs.la
83 libtest_asmobs_la_SOURCES = test-asmobs-lib.c test-asmobs-lib.x
84 libtest_asmobs_la_CFLAGS = ${test_cflags}
85 libtest_asmobs_la_LDFLAGS = -no-undefined -rpath `pwd` # so libtool will really build an .so
86 libtest_asmobs_la_LIBADD = ${top_builddir}/libguile/libguile.la
87 BUILT_SOURCES += test-asmobs-lib.x
88 check_SCRIPTS += test-asmobs
89 TESTS += test-asmobs
90
91 # test-list
92 test_list_SOURCES = test-list.c
93 test_list_CFLAGS = ${test_cflags}
94 test_list_LDADD = ${top_builddir}/libguile/libguile.la
95 check_PROGRAMS += test-list
96 TESTS += test-list
97
98 # test-unwind
99 test_unwind_SOURCES = test-unwind.c
100 test_unwind_CFLAGS = ${test_cflags}
101 test_unwind_LDADD = ${top_builddir}/libguile/libguile.la
102 check_PROGRAMS += test-unwind
103 TESTS += test-unwind
104
105 # test-conversion
106 test_conversion_SOURCES = test-conversion.c
107 test_conversion_CFLAGS = ${test_cflags}
108 test_conversion_LDADD = ${top_builddir}/libguile/libguile.la
109 check_PROGRAMS += test-conversion
110 TESTS += test-conversion
111
112 # test-use-srfi
113 check_SCRIPTS += test-use-srfi
114 TESTS += test-use-srfi
115
116 # test-with-guile-module
117 test_with_guile_module_CFLAGS = ${test_cflags}
118 test_with_guile_module_LDADD = ${top_builddir}/libguile/libguile.la
119 check_PROGRAMS += test-with-guile-module
120 TESTS += test-with-guile-module
121
122 all-local:
123 cd ${srcdir} && chmod u+x ${check_SCRIPTS}
124
125 EXTRA_DIST = ${check_SCRIPTS}