Update README on using libraries in non-standard locations
[bpt/guile.git] / test-suite / Makefile.am
CommitLineData
f14d16ed
KR
1## Process this file with automake to produce Makefile.in.
2##
e47096d9 3## Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Software Foundation, Inc.
f14d16ed
KR
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
92205699
MV
19## to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
20## Floor, Boston, MA 02110-1301 USA
f14d16ed 21
b4559de7 22SUBDIRS = standalone
c62fdb8e 23
68254263 24SCM_TESTS = tests/alist.test \
16e0c623 25 tests/and-let-star.test \
4f21b9e8 26 tests/arbiters.test \
53e28ed9 27 tests/asm-to-bytecode.test \
68254263 28 tests/bit-operations.test \
1ee2c72e 29 tests/bytevectors.test \
68254263
MV
30 tests/c-api.test \
31 tests/chars.test \
32 tests/common-list.test \
a3163568 33 tests/continuations.test \
3d1a89b9 34 tests/elisp.test \
68254263
MV
35 tests/environments.test \
36 tests/eval.test \
37 tests/exceptions.test \
5e9456e3 38 tests/filesys.test \
68254263 39 tests/format.test \
7b93c2e5 40 tests/fractions.test \
8ab3d8a0 41 tests/ftw.test \
68254263
MV
42 tests/gc.test \
43 tests/getopt-long.test \
44 tests/goops.test \
45 tests/guardians.test \
08ee6abd 46 tests/hash.test \
68254263 47 tests/hooks.test \
b89c4943 48 tests/i18n.test \
68254263
MV
49 tests/import.test \
50 tests/interp.test \
51 tests/list.test \
52 tests/load.test \
6e7d5622 53 tests/modules.test \
68254263
MV
54 tests/multilingual.nottest \
55 tests/numbers.test \
56 tests/optargs.test \
d2864c8a 57 tests/options.test \
e47096d9 58 tests/procprop.test \
c42605e9 59 tests/poe.test \
3bdc8f4d 60 tests/popen.test \
68254263 61 tests/ports.test \
72a3671e 62 tests/posix.test \
e130b09f 63 tests/q.test \
68254263 64 tests/r4rs.test \
c18140cf 65 tests/r5rs_pitfall.test \
1ee2c72e 66 tests/r6rs-ports.test \
2c0ddf44 67 tests/ramap.test \
68254263 68 tests/reader.test \
16e0c623 69 tests/receive.test \
68254263 70 tests/regexp.test \
32938e4d 71 tests/socket.test \
eb6c635a 72 tests/srcprop.test \
d31350ff 73 tests/srfi-1.test \
ab32320d 74 tests/srfi-6.test \
68254263 75 tests/srfi-10.test \
cd858a31 76 tests/srfi-11.test \
68254263
MV
77 tests/srfi-13.test \
78 tests/srfi-14.test \
79 tests/srfi-19.test \
012a3a75 80 tests/srfi-26.test \
dfedf226 81 tests/srfi-31.test \
a1a5dfa8 82 tests/srfi-34.test \
f50ca8da 83 tests/srfi-35.test \
d4c38221 84 tests/srfi-37.test \
2b78075b 85 tests/srfi-39.test \
bf04b1a3 86 tests/srfi-60.test \
1317062f 87 tests/srfi-69.test \
189681f5 88 tests/srfi-88.test \
68254263
MV
89 tests/srfi-4.test \
90 tests/srfi-9.test \
91 tests/strings.test \
d15ad007 92 tests/structs.test \
68254263
MV
93 tests/symbols.test \
94 tests/syncase.test \
95 tests/syntax.test \
72a3671e 96 tests/threads.test \
68254263 97 tests/time.test \
ce09ee19 98 tests/tree-il.test \
aa529137 99 tests/unif.test \
68254263
MV
100 tests/version.test \
101 tests/weaks.test
83060bc4 102
3c540af4
MV
103SCM_TESTS_DIRS = tests/asmobs \
104 tests/c-api
105
61db429e 106EXTRA_DIST = guile-test lib.scm $(SCM_TESTS) ChangeLog-2008
3c540af4
MV
107
108## Automake should be able to handle the distribution of tests/asmobs
109## etc without any help, but not all version can handle 'deep'
110## directories. So we do it on our own.
111dist-hook:
112 for d in $(SCM_TESTS_DIRS); do \
113 cp -pR $(srcdir)/$$d $(distdir)/$$d; \
d9f352d4 114 rm -rf $(distdir)/$$d/CVS; \
3c540af4 115 done