*** empty log message ***
[coreutils.git] / tests / ln / Makefile.in
blobffa4a7b563ed7859f7d89228b8f80d10e0895595
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 DF_PROG = @DF_PROG@
74 GENCAT = @GENCAT@
75 GETCONF = @GETCONF@
76 GMOFILES = @GMOFILES@
77 GMSGFMT = @GMSGFMT@
78 GNU_PACKAGE = @GNU_PACKAGE@
79 GT_NO = @GT_NO@
80 GT_YES = @GT_YES@
81 INCLUDE_LOCALE_H = @INCLUDE_LOCALE_H@
82 INSTOBJEXT = @INSTOBJEXT@
83 INTLDEPS = @INTLDEPS@
84 INTLLIBS = @INTLLIBS@
85 INTLOBJS = @INTLOBJS@
86 LIBOBJS = @LIBOBJS@
87 MAKEINFO = @MAKEINFO@
88 MKINSTALLDIRS = @MKINSTALLDIRS@
89 MSGFMT = @MSGFMT@
90 PACKAGE = @PACKAGE@
91 PERL = @PERL@
92 POFILES = @POFILES@
93 POSUB = @POSUB@
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 AUTOMAKE_OPTIONS = 1.2 gnits
106 TESTS = sf-1 misc backup-1
107 EXTRA_DIST = $(TESTS)
108 TESTS_ENVIRONMENT = \
109 PATH=`pwd`/../../src:$$PATH
111 subdir = tests/ln
112 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
113 CONFIG_HEADER = ../../config.h
114 CONFIG_CLEAN_FILES =
115 DIST_SOURCES =
116 DIST_COMMON = Makefile.am Makefile.in
119 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
121 GZIP_ENV = --best
122 all: all-redirect
123 .SUFFIXES:
124 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
125 cd $(top_srcdir) && $(AUTOMAKE) --gnits tests/ln/Makefile
127 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
128 cd $(top_builddir) \
129 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
131 tags: TAGS
132 TAGS:
135 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
137 distdir: $(DISTFILES)
138 @for file in $(DISTFILES); do \
139 d=$(srcdir); \
140 if test -d $$d/$$file; then \
141 cp -pR $$d/$$file $(distdir); \
142 else \
143 test -f $(distdir)/$$file \
144 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
145 || cp -p $$d/$$file $(distdir)/$$file || :; \
146 fi; \
147 done
148 check-TESTS: $(TESTS)
149 @failed=0; all=0; xfail=0; xpass=0; \
150 srcdir=$(srcdir); export srcdir; \
151 for tst in $(TESTS); do \
152 if test -f ./$$tst; then dir=./; \
153 elif test -f $$tst; then dir=; \
154 else dir="$(srcdir)/"; fi; \
155 if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
156 all=`expr $$all + 1`; \
157 case " $(XFAIL_TESTS) " in \
158 *" $$tst "*) \
159 xpass=`expr $$xpass + 1`; \
160 failed=`expr $$failed + 1`; \
161 echo "XPASS: $$tst"; \
162 ;; \
163 *) \
164 echo "PASS: $$tst"; \
165 ;; \
166 esac; \
167 elif test $$? -ne 77; then \
168 all=`expr $$all + 1`; \
169 case " $(XFAIL_TESTS) " in \
170 *" $$tst "*) \
171 xfail=`expr $$xfail + 1`; \
172 echo "XFAIL: $$tst"; \
173 ;; \
174 *) \
175 failed=`expr $$failed + 1`; \
176 echo "FAIL: $$tst"; \
177 ;; \
178 esac; \
179 fi; \
180 done; \
181 if test "$$failed" -eq 0; then \
182 if test "$$xfail" -eq 0; then \
183 banner="All $$all tests passed"; \
184 else \
185 banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
186 fi; \
187 else \
188 if test "$$xpass" -eq 0; then \
189 banner="$$failed of $$all tests failed"; \
190 else \
191 banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
192 fi; \
193 fi; \
194 dashes=`echo "$$banner" | sed s/./=/g`; \
195 echo "$$dashes"; \
196 echo "$$banner"; \
197 echo "$$dashes"; \
198 test "$$failed" -eq 0
199 info-am:
200 info: info-am
201 dvi-am:
202 dvi: dvi-am
203 check-am: all-am
204 $(MAKE) $(AM_MAKEFLAGS) check-TESTS
205 check: check-am
206 installcheck-am:
207 installcheck: installcheck-am
208 install-exec-am:
209 install-exec: install-exec-am
211 install-data-am:
212 install-data: install-data-am
214 install-am: all-am
215 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
216 install: install-am
217 uninstall-am:
218 uninstall: uninstall-am
219 all-am: Makefile
220 all-redirect: all-am
221 install-strip:
222 $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
223 installdirs:
226 mostlyclean-generic:
228 clean-generic:
230 distclean-generic:
231 -rm -f Makefile $(CONFIG_CLEAN_FILES)
232 -rm -f config.cache config.log stamp-h stamp-h[0-9]*
234 maintainer-clean-generic:
235 -rm -f Makefile.in
236 mostlyclean-am: mostlyclean-generic
238 mostlyclean: mostlyclean-am
240 clean-am: clean-generic mostlyclean-am
242 clean: clean-am
244 distclean-am: distclean-generic clean-am
246 distclean: distclean-am
248 maintainer-clean-am: maintainer-clean-generic distclean-am
249 @echo "This command is intended for maintainers to use;"
250 @echo "it deletes files that may require special tools to rebuild."
252 maintainer-clean: maintainer-clean-am
254 .PHONY: tags distdir check-TESTS info-am info dvi-am dvi check check-am \
255 installcheck-am installcheck install-exec-am install-exec \
256 install-data-am install-data install-am install uninstall-am uninstall \
257 all-redirect all-am all install-strip installdirs mostlyclean-generic \
258 distclean-generic clean-generic maintainer-clean-generic clean \
259 mostlyclean distclean maintainer-clean
262 # Tell versions [3.59,3.63) of GNU make to not export all variables.
263 # Otherwise a system limit (for SysV at least) may be exceeded.
264 .NOEXPORT: