]> Dogcows Code - chaz/tar/blob - tests/Makefile.am
GNU tar 1.12
[chaz/tar] / tests / Makefile.am
1 # Makefile for GNU tar regression tests.
2 # Copyright © 1996, 1997 Free Software Foundation, Inc.
3 # François Pinard <pinard@iro.umontreal.ca>, 1988.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 # 02111-1307, USA.
19
20 AUTOMAKE_OPTIONS = gnits ../src/ansi2knr
21 check_PROGRAMS = genfile
22 BUILT_SOURCES = preset
23
24 TESTS = version.sh ignfail.sh extrac01.sh extrac02.sh extrac03.sh \
25 old.sh volume.sh gzip.sh append.sh delete01.sh incremen.sh
26
27 # Postponed until after the 1.12 release.
28 POSTPONED_TESTS = delete02.sh
29
30 genfile_SOURCES = genfile.c
31 EXTRA_DIST = after before preset.in $(TESTS) $(POSTPONED_TESTS)
32
33 DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
34 INCLUDES = -I.. -I../intl -I$(top_srcdir)/src -I$(top_srcdir)/lib
35 LDADD = ../lib/libtar.a @INTLLIBS@
36 localedir = $(prefix)/@DATADIRNAME@/locale
37
38 mostlyclean:
39 rm -rf tmp-*
40
41 $(TESTS): genfile
This page took 0.036198 seconds and 5 git commands to generate.