*** empty log message ***
[coreutils.git] / tests / tail-2 / Makefile.in
blob2a970125f96e0e42ae385ac38354df129f672586
1 # Makefile.in generated automatically by automake 1.4a from Makefile.am
3 # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4 # This Makefile.in is free software; the Free Software Foundation
5 # gives unlimited permission to copy and/or distribute it,
6 # with or without modifications, as long as this notice is preserved.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11 # PARTICULAR PURPOSE.
13 SHELL = @SHELL@
15 srcdir = @srcdir@
16 top_srcdir = @top_srcdir@
17 VPATH = @srcdir@
18 prefix = @prefix@
19 exec_prefix = @exec_prefix@
21 bindir = @bindir@
22 sbindir = @sbindir@
23 libexecdir = @libexecdir@
24 datadir = @datadir@
25 sysconfdir = @sysconfdir@
26 sharedstatedir = @sharedstatedir@
27 localstatedir = @localstatedir@
28 libdir = @libdir@
29 infodir = @infodir@
30 mandir = @mandir@
31 includedir = @includedir@
32 oldincludedir = /usr/include
34 DESTDIR =
36 pkgdatadir = $(datadir)/@PACKAGE@
37 pkglibdir = $(libdir)/@PACKAGE@
38 pkgincludedir = $(includedir)/@PACKAGE@
40 top_builddir = ../..
42 ACLOCAL = @ACLOCAL@
43 AUTOCONF = @AUTOCONF@
44 AUTOMAKE = @AUTOMAKE@
45 AUTOHEADER = @AUTOHEADER@
47 INSTALL = @INSTALL@
48 INSTALL_PROGRAM = @INSTALL_PROGRAM@
49 INSTALL_DATA = @INSTALL_DATA@
50 INSTALL_SCRIPT = @INSTALL_SCRIPT@
51 INSTALL_STRIP_FLAG =
52 transform = @program_transform_name@
54 NORMAL_INSTALL = :
55 PRE_INSTALL = :
56 POST_INSTALL = :
57 NORMAL_UNINSTALL = :
58 PRE_UNINSTALL = :
59 POST_UNINSTALL = :
60 host_alias = @host_alias@
61 host_triplet = @host@
62 AMDEP = @AMDEP@
63 AMTAR = @AMTAR@
64 AWK = @AWK@
65 CATALOGS = @CATALOGS@
66 CATOBJEXT = @CATOBJEXT@
67 CC = @CC@
68 CPP = @CPP@
69 CXX = @CXX@
70 CXXCPP = @CXXCPP@
71 DATADIRNAME = @DATADIRNAME@
72 DEPDIR = @DEPDIR@
73 GENCAT = @GENCAT@
74 GETCONF = @GETCONF@
75 GMOFILES = @GMOFILES@
76 GMSGFMT = @GMSGFMT@
77 GNU_PACKAGE = @GNU_PACKAGE@
78 GT_NO = @GT_NO@
79 GT_YES = @GT_YES@
80 INCLUDE_LOCALE_H = @INCLUDE_LOCALE_H@
81 INSTOBJEXT = @INSTOBJEXT@
82 INTLDEPS = @INTLDEPS@
83 INTLLIBS = @INTLLIBS@
84 INTLOBJS = @INTLOBJS@
85 LIBOBJS = @LIBOBJS@
86 MAKEINFO = @MAKEINFO@
87 MKINSTALLDIRS = @MKINSTALLDIRS@
88 MSGFMT = @MSGFMT@
89 PACKAGE = @PACKAGE@
90 PERL = @PERL@
91 POFILES = @POFILES@
92 POSUB = @POSUB@
93 POW_LIBM = @POW_LIBM@
94 RANLIB = @RANLIB@
95 U = @U@
96 USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
97 USE_NLS = @USE_NLS@
98 VERSION = @VERSION@
99 YACC = @YACC@
100 install_sh = @install_sh@
101 l = @l@
104 EXTRA_DIST = $(TESTS)
106 TESTS_ENVIRONMENT = \
107 top_srcdir=$(top_srcdir) \
108 srcdir=$(srcdir) \
109 PERL="@PERL@" \
110 PATH=`pwd`/../../src:$$PATH \
111 PROG=tail
114 TESTS = assert
115 subdir = tests/tail-2
116 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
117 CONFIG_HEADER = ../../config.h
118 CONFIG_CLEAN_FILES =
119 DIST_SOURCES =
120 DIST_COMMON = Makefile.am Makefile.in
123 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
125 GZIP_ENV = --best
126 all: all-redirect
127 .SUFFIXES:
128 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
129 cd $(top_srcdir) && $(AUTOMAKE) --gnits tests/tail-2/Makefile
131 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
132 cd $(top_builddir) \
133 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
135 tags: TAGS
136 TAGS:
139 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
141 distdir: $(DISTFILES)
142 @for file in $(DISTFILES); do \
143 d=$(srcdir); \
144 if test -d $$d/$$file; then \
145 cp -pR $$d/$$file $(distdir); \
146 else \
147 test -f $(distdir)/$$file \
148 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
149 || cp -p $$d/$$file $(distdir)/$$file || :; \
150 fi; \
151 done
152 check-TESTS: $(TESTS)
153 @failed=0; all=0; xfail=0; xpass=0; \
154 srcdir=$(srcdir); export srcdir; \
155 for tst in $(TESTS); do \
156 if test -f ./$$tst; then dir=./; \
157 elif test -f $$tst; then dir=; \
158 else dir="$(srcdir)/"; fi; \
159 if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
160 all=`expr $$all + 1`; \
161 case " $(XFAIL_TESTS) " in \
162 *" $$tst "*) \
163 xpass=`expr $$xpass + 1`; \
164 failed=`expr $$failed + 1`; \
165 echo "XPASS: $$tst"; \
166 ;; \
167 *) \
168 echo "PASS: $$tst"; \
169 ;; \
170 esac; \
171 elif test $$? -ne 77; then \
172 all=`expr $$all + 1`; \
173 case " $(XFAIL_TESTS) " in \
174 *" $$tst "*) \
175 xfail=`expr $$xfail + 1`; \
176 echo "XFAIL: $$tst"; \
177 ;; \
178 *) \
179 failed=`expr $$failed + 1`; \
180 echo "FAIL: $$tst"; \
181 ;; \
182 esac; \
183 fi; \
184 done; \
185 if test "$$failed" -eq 0; then \
186 if test "$$xfail" -eq 0; then \
187 banner="All $$all tests passed"; \
188 else \
189 banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
190 fi; \
191 else \
192 if test "$$xpass" -eq 0; then \
193 banner="$$failed of $$all tests failed"; \
194 else \
195 banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
196 fi; \
197 fi; \
198 dashes=`echo "$$banner" | sed s/./=/g`; \
199 echo "$$dashes"; \
200 echo "$$banner"; \
201 echo "$$dashes"; \
202 test "$$failed" -eq 0
203 info-am:
204 info: info-am
205 dvi-am:
206 dvi: dvi-am
207 check-am: all-am
208 $(MAKE) $(AM_MAKEFLAGS) check-TESTS
209 check: check-am
210 installcheck-am:
211 installcheck: installcheck-am
212 install-exec-am:
213 install-exec: install-exec-am
215 install-data-am:
216 install-data: install-data-am
218 install-am: all-am
219 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
220 install: install-am
221 uninstall-am:
222 uninstall: uninstall-am
223 all-am: Makefile
224 all-redirect: all-am
225 install-strip:
226 $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
227 installdirs:
230 mostlyclean-generic:
232 clean-generic:
234 distclean-generic:
235 -rm -f Makefile $(CONFIG_CLEAN_FILES)
236 -rm -f config.cache config.log stamp-h stamp-h[0-9]*
238 maintainer-clean-generic:
239 -rm -f Makefile.in
240 mostlyclean-am: mostlyclean-generic
242 mostlyclean: mostlyclean-am
244 clean-am: clean-generic mostlyclean-am
246 clean: clean-am
248 distclean-am: distclean-generic clean-am
250 distclean: distclean-am
252 maintainer-clean-am: maintainer-clean-generic distclean-am
253 @echo "This command is intended for maintainers to use;"
254 @echo "it deletes files that may require special tools to rebuild."
256 maintainer-clean: maintainer-clean-am
258 .PHONY: tags distdir check-TESTS info-am info dvi-am dvi check check-am \
259 installcheck-am installcheck install-exec-am install-exec \
260 install-data-am install-data install-am install uninstall-am uninstall \
261 all-redirect all-am all install-strip installdirs mostlyclean-generic \
262 distclean-generic clean-generic maintainer-clean-generic clean \
263 mostlyclean distclean maintainer-clean
266 # Tell versions [3.59,3.63) of GNU make to not export all variables.
267 # Otherwise a system limit (for SysV at least) may be exceeded.
268 .NOEXPORT: