source: trunk/grep/tests/Makefile.in@ 2783

Last change on this file since 2783 was 2557, checked in by bird, 20 years ago

grep 2.5.1a

File size: 7.5 KB
Line 
1# Makefile.in generated automatically by automake 1.5 from Makefile.am.
2
3# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
4# Free Software Foundation, Inc.
5# This Makefile.in is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12# PARTICULAR PURPOSE.
13
14@SET_MAKE@
15
16SHELL = @SHELL@
17
18srcdir = @srcdir@
19top_srcdir = @top_srcdir@
20VPATH = @srcdir@
21prefix = @prefix@
22exec_prefix = @exec_prefix@
23
24bindir = @bindir@
25sbindir = @sbindir@
26libexecdir = @libexecdir@
27datadir = @datadir@
28sysconfdir = @sysconfdir@
29sharedstatedir = @sharedstatedir@
30localstatedir = @localstatedir@
31libdir = @libdir@
32infodir = @infodir@
33mandir = @mandir@
34includedir = @includedir@
35oldincludedir = /usr/include
36pkgdatadir = $(datadir)/@PACKAGE@
37pkglibdir = $(libdir)/@PACKAGE@
38pkgincludedir = $(includedir)/@PACKAGE@
39top_builddir = ..
40
41ACLOCAL = @ACLOCAL@
42AUTOCONF = @AUTOCONF@
43AUTOMAKE = @AUTOMAKE@
44AUTOHEADER = @AUTOHEADER@
45
46INSTALL = @INSTALL@
47INSTALL_PROGRAM = @INSTALL_PROGRAM@
48INSTALL_DATA = @INSTALL_DATA@
49INSTALL_SCRIPT = @INSTALL_SCRIPT@
50INSTALL_HEADER = $(INSTALL_DATA)
51transform = @program_transform_name@
52NORMAL_INSTALL = :
53PRE_INSTALL = :
54POST_INSTALL = :
55NORMAL_UNINSTALL = :
56PRE_UNINSTALL = :
57POST_UNINSTALL = :
58host_alias = @host_alias@
59host_triplet = @host@
60AMTAR = @AMTAR@
61BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
62CATALOGS = @CATALOGS@
63CATOBJEXT = @CATOBJEXT@
64CC = @CC@
65CPP = @CPP@
66DATADIRNAME = @DATADIRNAME@
67DEPDIR = @DEPDIR@
68EXEEXT = @EXEEXT@
69GENCAT = @GENCAT@
70GETCONF = @GETCONF@
71GLIBC21 = @GLIBC21@
72GMOFILES = @GMOFILES@
73GMSGFMT = @GMSGFMT@
74INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
75INSTOBJEXT = @INSTOBJEXT@
76INTLBISON = @INTLBISON@
77INTLLIBS = @INTLLIBS@
78INTLOBJS = @INTLOBJS@
79INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
80LIBICONV = @LIBICONV@
81MKINSTALLDIRS = @MKINSTALLDIRS@
82MSGFMT = @MSGFMT@
83OBJEXT = @OBJEXT@
84PACKAGE = @PACKAGE@
85POFILES = @POFILES@
86POSUB = @POSUB@
87RANLIB = @RANLIB@
88SEP = @SEP@
89U = @U@
90USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
91USE_NLS = @USE_NLS@
92VERSION = @VERSION@
93am__include = @am__include@
94am__quote = @am__quote@
95install_sh = @install_sh@
96
97AWK = @AWK@
98
99TESTS = warning.sh khadafy.sh spencer1.sh bre.sh ere.sh \
100 status.sh empty.sh options.sh backref.sh file.sh
101
102EXTRA_DIST = $(TESTS) \
103 khadafy.lines khadafy.regexp \
104 spencer1.awk spencer1.tests \
105 bre.awk ere.awk bre.tests ere.tests
106
107CLEANFILES = spencer1.script bre.script ere.script khadafy.out patfile
108TESTS_ENVIRONMENT = \
109 AWK=$(AWK) \
110 GREP=$(top_builddir)/src/grep \
111 GREP_OPTIONS='' \
112 LC_ALL=C
113
114subdir = tests
115mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
116CONFIG_HEADER = $(top_builddir)/config.h
117CONFIG_CLEAN_FILES =
118DIST_SOURCES =
119DIST_COMMON = Makefile.am Makefile.in
120all: all-am
121
122.SUFFIXES:
123$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
124 cd $(top_srcdir) && \
125 $(AUTOMAKE) --gnu tests/Makefile
126Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
127 cd $(top_builddir) && \
128 CONFIG_HEADERS= CONFIG_LINKS= \
129 CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status
130uninstall-info-am:
131tags: TAGS
132TAGS:
133
134
135check-TESTS: $(TESTS)
136 @failed=0; all=0; xfail=0; xpass=0; \
137 srcdir=$(srcdir); export srcdir; \
138 list='$(TESTS)'; \
139 if test -n "$$list"; then \
140 for tst in $$list; do \
141 if test -f ./$$tst; then dir=./; \
142 elif test -f $$tst; then dir=; \
143 else dir="$(srcdir)/"; fi; \
144 if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
145 all=`expr $$all + 1`; \
146 case " $(XFAIL_TESTS) " in \
147 *" $$tst "*) \
148 xpass=`expr $$xpass + 1`; \
149 failed=`expr $$failed + 1`; \
150 echo "XPASS: $$tst"; \
151 ;; \
152 *) \
153 echo "PASS: $$tst"; \
154 ;; \
155 esac; \
156 elif test $$? -ne 77; then \
157 all=`expr $$all + 1`; \
158 case " $(XFAIL_TESTS) " in \
159 *" $$tst "*) \
160 xfail=`expr $$xfail + 1`; \
161 echo "XFAIL: $$tst"; \
162 ;; \
163 *) \
164 failed=`expr $$failed + 1`; \
165 echo "FAIL: $$tst"; \
166 ;; \
167 esac; \
168 fi; \
169 done; \
170 if test "$$failed" -eq 0; then \
171 if test "$$xfail" -eq 0; then \
172 banner="All $$all tests passed"; \
173 else \
174 banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
175 fi; \
176 else \
177 if test "$$xpass" -eq 0; then \
178 banner="$$failed of $$all tests failed"; \
179 else \
180 banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
181 fi; \
182 fi; \
183 dashes=`echo "$$banner" | sed s/./=/g`; \
184 echo "$$dashes"; \
185 echo "$$banner"; \
186 echo "$$dashes"; \
187 test "$$failed" -eq 0; \
188 fi
189
190DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
191
192top_distdir = ..
193distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
194
195distdir: $(DISTFILES)
196 @for file in $(DISTFILES); do \
197 if test -f $$file; then d=.; else d=$(srcdir); fi; \
198 dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
199 if test "$$dir" != "$$file" && test "$$dir" != "."; then \
200 $(mkinstalldirs) "$(distdir)/$$dir"; \
201 fi; \
202 if test -d $$d/$$file; then \
203 cp -pR $$d/$$file $(distdir) \
204 || exit 1; \
205 else \
206 test -f $(distdir)/$$file \
207 || cp -p $$d/$$file $(distdir)/$$file \
208 || exit 1; \
209 fi; \
210 done
211 $(MAKE) $(AM_MAKEFLAGS) \
212 top_distdir="${top_distdir}" distdir="$(distdir)" \
213 dist-hook
214check-am: all-am
215 $(MAKE) $(AM_MAKEFLAGS) check-TESTS
216check: check-am
217all-am: Makefile
218
219installdirs:
220
221install: install-am
222install-exec: install-exec-am
223install-data: install-data-am
224uninstall: uninstall-am
225
226install-am: all-am
227 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
228
229installcheck: installcheck-am
230install-strip:
231 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
232 `test -z '$(STRIP)' || \
233 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
234mostlyclean-generic:
235
236clean-generic:
237 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
238
239distclean-generic:
240 -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
241
242maintainer-clean-generic:
243 @echo "This command is intended for maintainers to use"
244 @echo "it deletes files that may require special tools to rebuild."
245clean: clean-am
246
247clean-am: clean-generic mostlyclean-am
248
249distclean: distclean-am
250
251distclean-am: clean-am distclean-generic
252
253dvi: dvi-am
254
255dvi-am:
256
257info: info-am
258
259info-am:
260
261install-data-am:
262
263install-exec-am:
264
265install-info: install-info-am
266
267install-man:
268
269installcheck-am:
270
271maintainer-clean: maintainer-clean-am
272
273maintainer-clean-am: distclean-am maintainer-clean-generic
274
275mostlyclean: mostlyclean-am
276
277mostlyclean-am: mostlyclean-generic
278
279uninstall-am: uninstall-info-am
280
281.PHONY: all all-am check check-TESTS check-am clean clean-generic \
282 distclean distclean-generic distdir dvi dvi-am info info-am \
283 install install-am install-data install-data-am install-exec \
284 install-exec-am install-info install-info-am install-man \
285 install-strip installcheck installcheck-am installdirs \
286 maintainer-clean maintainer-clean-generic mostlyclean \
287 mostlyclean-generic uninstall uninstall-am uninstall-info-am
288
289
290# the *.sh when checkout does not have the right permission
291# make sure everyting is ok.
292dist-hook:
293 cd $(distdir); for i in $(TESTS); do chmod +x $$i; done
294# Tell versions [3.59,3.63) of GNU make to not export all variables.
295# Otherwise a system limit (for SysV at least) may be exceeded.
296.NOEXPORT:
Note: See TracBrowser for help on using the repository browser.