@@@ much mess, mostly manpages
[mLib] / test / Makefile.am
CommitLineData
18c831dc
MW
1### -*-makefile-*-
2###
3### Build script for testing
4###
5### (c) 2009 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the mLib utilities library.
11###
12### mLib is free software; you can redistribute it and/or modify
13### it under the terms of the GNU Library General Public License as
14### published by the Free Software Foundation; either version 2 of the
15### License, or (at your option) any later version.
16###
17### mLib is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU Library General Public License for more details.
21###
22### You should have received a copy of the GNU Library General Public
23### License along with mLib; if not, write to the Free
24### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25### MA 02111-1307, USA.
26
27include $(top_srcdir)/vars.am
28
29noinst_LTLIBRARIES = libtest.la
30libtest_la_SOURCES =
31
c4ccbbf9
MW
32SUBDIRS =
33
18c831dc
MW
34###--------------------------------------------------------------------------
35### Component files.
36
b64eb60f
MW
37## Benchmarking.
38pkginclude_HEADERS += bench.h
39libtest_la_SOURCES += bench.c
c4ccbbf9 40EXTRA_DIST += bench.3.in
d056fbdf 41LIBMANS += bench.3
b64eb60f
MW
42
43## Old `testrig' testing framework.
18c831dc
MW
44pkginclude_HEADERS += testrig.h
45libtest_la_SOURCES += testrig.c
c4ccbbf9 46EXTRA_DIST += testrig.3.in
18c831dc
MW
47LIBMANS += testrig.3
48
b64eb60f
MW
49## New `tvec' testing framework.
50pkginclude_HEADERS += tvec.h
51libtest_la_SOURCES += tvec-core.c
52libtest_la_SOURCES += tvec-output.c
53libtest_la_SOURCES += tvec-types.c
54libtest_la_SOURCES += tvec-main.c
c4ccbbf9
MW
55EXTRA_DIST += tvec.3.in
56EXTRA_DIST += tvec-types.3.in
57EXTRA_DIST += tvec-adhoc.3.in
58EXTRA_DIST += tvec-main.3.in
59EXTRA_DIST += tvec-env.3.in
60EXTRA_DIST += tvec-tyimpl.3.in
61EXTRA_DIST += tvec-output.3.in
d056fbdf
MW
62LIBMANS += tvec.3
63LIBMANS += tvec-types.3
64LIBMANS += tvec-adhoc.3
65LIBMANS += tvec-main.3
66LIBMANS += tvec-env.3
67LIBMANS += tvec-tyimpl.3
68LIBMANS += tvec-output.3
b64eb60f 69
c91413e6 70libtest_la_SOURCES += tvec-bench.c
c4ccbbf9 71EXTRA_DIST += tvec-bench.3.in
d056fbdf
MW
72LIBMANS += tvec-bench.3
73
c91413e6 74libtest_la_SOURCES += tvec-remote.c
c4ccbbf9 75EXTRA_DIST += tvec-remote.3.in
d056fbdf
MW
76LIBMANS += tvec-remote.3
77
31d0247c 78libtest_la_SOURCES += tvec-timeout.c
c4ccbbf9 79EXTRA_DIST += tvec-timeout.3.in
d056fbdf 80LIBMANS += tvec-timeout.3
c91413e6 81
b64eb60f
MW
82check_PROGRAMS += t/tvec.t
83t_tvec_t_SOURCES = t/tvec-test.c
84t_tvec_t_CPPFLAGS = $(TEST_CPPFLAGS)
85t_tvec_t_LDFLAGS = -static
86
18c831dc 87###----- That's all, folks --------------------------------------------------