515c8612723ebd90b5e52d6befede48bc4f40fe9
[debian/tar] / tests / Makefile.am
1 # Makefile for GNU tar regression tests.
2
3 # Copyright (C) 1996, 1997, 1999, 2000, 2001, 2003, 2004 Free Software
4 # Foundation, Inc.
5
6 # François Pinard <pinard@iro.umontreal.ca>, 1988.
7 # Sergey Poznyakoff <gray@mirddin.farlep.net>, 2004.
8
9 ## This program is free software; you can redistribute it and/or modify
10 ## it under the terms of the GNU General Public License as published by
11 ## the Free Software Foundation; either version 2, or (at your option)
12 ## any later version.
13
14 ## This program is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ## GNU General Public License for more details.
18
19 ## You should have received a copy of the GNU General Public License
20 ## along with this program; if not, write to the Free Software
21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22 ## 02111-1307, USA.
23
24 EXTRA_DIST = $(TESTSUITE_AT) testsuite package.m4 star/README star/quicktest.sh
25 DISTCLEANFILES       = atconfig $(check_SCRIPTS)
26 MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
27
28 ## ------------ ##
29 ## package.m4.  ##
30 ## ------------ ##
31
32 $(srcdir)/package.m4: $(top_srcdir)/configure.ac
33         {                                      \
34           echo '# Signature of the current package.'; \
35           echo 'm4_define([AT_PACKAGE_NAME],      [@PACKAGE_NAME@])'; \
36           echo 'm4_define([AT_PACKAGE_TARNAME],   [@PACKAGE_TARNAME@])'; \
37           echo 'm4_define([AT_PACKAGE_VERSION],   [@PACKAGE_VERSION@])'; \
38           echo 'm4_define([AT_PACKAGE_STRING],    [@PACKAGE_STRING@])'; \
39           echo 'm4_define([AT_PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \
40         } >$(srcdir)/package.m4
41
42 #
43
44 ## ------------ ##
45 ## Test suite.  ##
46 ## ------------ ##
47
48 TESTSUITE_AT = \
49  testsuite.at\
50  comprec.at\
51  delete01.at\
52  delete02.at\
53  delete03.at\
54  delete04.at\
55  delete05.at\
56  extrac01.at\
57  extrac02.at\
58  extrac03.at\
59  extrac04.at\
60  extrac05.at\
61  gzip.at\
62  incremental.at\
63  ignfail.at\
64  link01.at\
65  listed01.at\
66  listed02.at\
67  longv7.at\
68  multiv01.at\
69  multiv02.at\
70  multiv03.at\
71  old.at\
72  options.at\
73  options02.at\
74  pipe.at\
75  recurse.at\
76  same-order01.at\
77  same-order02.at\
78  sparse01.at\
79  volume.at\
80  version.at\
81  star/gtarfail.at\
82  star/gtarfail2.at\
83  star/multi-fail.at\
84  star/ustar-big-2g.at\
85  star/ustar-big-8g.at\
86  star/pax-big-10g.at
87
88 TESTSUITE = $(srcdir)/testsuite
89
90 AUTOTEST = $(AUTOM4TE) --language=autotest
91 $(TESTSUITE): package.m4 $(TESTSUITE_AT)
92         $(AUTOTEST) -I $(srcdir) testsuite.at -o $@.tmp
93         mv $@.tmp $@
94
95 atconfig: $(top_builddir)/config.status
96         cd $(top_builddir) && ./config.status tests/$@
97
98 clean-local:
99         $(SHELL) $(TESTSUITE) --clean
100
101 check-local: atconfig atlocal $(TESTSUITE)
102         $(SHELL) $(TESTSUITE)
103
104 #check_SCRIPTS = tar
105
106 # Run the test suite on the *installed* tree.
107 installcheck-local:
108         $(SHELL) $(TESTSUITE) AUTOTEST_PATH=$(exec_prefix)/bin
109
110
111 ## ------------ ##
112 ## genfile      ##
113 ## ------------ ##
114
115 check_PROGRAMS = genfile
116
117 genfile_SOURCES = genfile.c
118
119 localedir = $(datadir)/locale
120 INCLUDES = -I$(top_srcdir)/lib -I../lib -I$(top_srcdir)/src
121
122 LDADD = ../lib/libtar.a $(LIBINTL)
123