1 # Makefile.in generated by automake 1.6a from Makefile.am.
4 # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
5 # Free Software Foundation, Inc.
6 # This Makefile.in is free software; the Free Software Foundation
7 # gives unlimited permission to copy and/or distribute it,
8 # with or without modifications, as long as this notice is preserved.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
18 top_srcdir = @top_srcdir@
20 pkgdatadir = $(datadir)/@PACKAGE@
21 pkglibdir = $(libdir)/@PACKAGE@
22 pkgincludedir = $(includedir)/@PACKAGE@
25 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
27 install_sh_DATA = $(install_sh) -c -m 644
28 install_sh_PROGRAM = $(install_sh) -c
29 install_sh_SCRIPT = $(install_sh) -c
30 INSTALL_HEADER = $(INSTALL_DATA)
31 transform = $(program_transform_name)
41 AMDEP_FALSE = @AMDEP_FALSE@
42 AMDEP_TRUE = @AMDEP_TRUE@
45 AUTOHEADER = @AUTOHEADER@
49 CCDEPMODE = @CCDEPMODE@
61 FESETROUND_LIBM = @FESETROUND_LIBM@
62 GETLOADAVG_LIBS = @GETLOADAVG_LIBS@
65 GNU_PACKAGE = @GNU_PACKAGE@
67 INSTALL_DATA = @INSTALL_DATA@
68 INSTALL_PROGRAM = @INSTALL_PROGRAM@
69 INSTALL_SCRIPT = @INSTALL_SCRIPT@
70 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
72 KMEM_GROUP = @KMEM_GROUP@
77 LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
78 LIB_CRYPT = @LIB_CRYPT@
79 LIB_NANOSLEEP = @LIB_NANOSLEEP@
80 LTLIBICONV = @LTLIBICONV@
81 LTLIBINTL = @LTLIBINTL@
82 LTLIBOBJS = @LTLIBOBJS@
85 MKINSTALLDIRS = @MKINSTALLDIRS@
88 NEED_SETGID = @NEED_SETGID@
90 OPTIONAL_BIN_PROGS = @OPTIONAL_BIN_PROGS@
91 OPTIONAL_BIN_ZCRIPTS = @OPTIONAL_BIN_ZCRIPTS@
93 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
94 PACKAGE_NAME = @PACKAGE_NAME@
95 PACKAGE_STRING = @PACKAGE_STRING@
96 PACKAGE_TARNAME = @PACKAGE_TARNAME@
97 PACKAGE_VERSION = @PACKAGE_VERSION@
98 PATH_SEPARATOR = @PATH_SEPARATOR@
103 SEQ_LIBM = @SEQ_LIBM@
104 SET_MAKE = @SET_MAKE@
106 SQRT_LIBM = @SQRT_LIBM@
111 XGETTEXT = @XGETTEXT@
113 ac_ct_CC = @ac_ct_CC@
114 ac_ct_RANLIB = @ac_ct_RANLIB@
115 ac_ct_STRIP = @ac_ct_STRIP@
116 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
117 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
118 am__include = @am__include@
119 am__quote = @am__quote@
122 build_alias = @build_alias@
123 build_cpu = @build_cpu@
124 build_os = @build_os@
125 build_vendor = @build_vendor@
127 exec_prefix = @exec_prefix@
129 host_alias = @host_alias@
130 host_cpu = @host_cpu@
132 host_vendor = @host_vendor@
133 includedir = @includedir@
135 install_sh = @install_sh@
137 libexecdir = @libexecdir@
138 localstatedir = @localstatedir@
140 oldincludedir = @oldincludedir@
142 program_transform_name = @program_transform_name@
144 sharedstatedir = @sharedstatedir@
145 sysconfdir = @sysconfdir@
146 target_alias = @target_alias@
148 EXTRA_DIST = $(TESTS)
150 TESTS_ENVIRONMENT = \
151 top_srcdir=$(top_srcdir) \
154 PATH=`pwd`/../../src:$$PATH \
160 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
161 CONFIG_HEADER = $(top_builddir)/config.h
164 DIST_COMMON = Makefile.am Makefile.in
168 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
169 cd $(top_srcdir) && \
170 $(AUTOMAKE) --gnits tests/ls-2/Makefile
171 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
172 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
181 check-TESTS: $(TESTS)
182 @failed=0; all=0; xfail=0; xpass=0; skip=0; \
183 srcdir=$(srcdir); export srcdir; \
185 if test -n "$$list"; then \
186 for tst in $$list; do \
187 if test -f ./$$tst; then dir=./; \
188 elif test -f $$tst; then dir=; \
189 else dir="$(srcdir)/"; fi; \
190 if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
191 all=`expr $$all + 1`; \
192 case " $(XFAIL_TESTS) " in \
194 xpass=`expr $$xpass + 1`; \
195 failed=`expr $$failed + 1`; \
196 echo "XPASS: $$tst"; \
199 echo "PASS: $$tst"; \
202 elif test $$? -ne 77; then \
203 all=`expr $$all + 1`; \
204 case " $(XFAIL_TESTS) " in \
206 xfail=`expr $$xfail + 1`; \
207 echo "XFAIL: $$tst"; \
210 failed=`expr $$failed + 1`; \
211 echo "FAIL: $$tst"; \
215 skip=`expr $$skip + 1`; \
216 echo "SKIP: $$tst"; \
219 if test "$$failed" -eq 0; then \
220 if test "$$xfail" -eq 0; then \
221 banner="All $$all tests passed"; \
223 banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
226 if test "$$xpass" -eq 0; then \
227 banner="$$failed of $$all tests failed"; \
229 banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
234 if test "$$skip" -ne 0; then \
235 skipped="($$skip tests were not run)"; \
236 test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \
237 dashes="$$skipped"; \
240 if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
241 report="Please report to $(PACKAGE_BUGREPORT)"; \
242 test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \
245 dashes=`echo "$$dashes" | sed s/./=/g`; \
248 test -n "$$skipped" && echo "$$skipped"; \
249 test -n "$$report" && echo "$$report"; \
251 test "$$failed" -eq 0; \
253 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
256 distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
258 distdir: $(DISTFILES)
259 @list='$(DISTFILES)'; for file in $$list; do \
260 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
261 dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
262 if test "$$dir" != "$$file" && test "$$dir" != "."; then \
264 $(mkinstalldirs) "$(distdir)$$dir"; \
268 if test -d $$d/$$file; then \
269 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
270 cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
272 cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
274 test -f $(distdir)/$$file \
275 || cp -p $$d/$$file $(distdir)/$$file \
280 $(MAKE) $(AM_MAKEFLAGS) check-TESTS
287 install-exec: install-exec-am
288 install-data: install-data-am
289 uninstall: uninstall-am
292 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
294 installcheck: installcheck-am
296 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
297 INSTALL_STRIP_FLAG=-s \
298 `test -z '$(STRIP)' || \
299 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
305 -rm -f Makefile $(CONFIG_CLEAN_FILES)
307 maintainer-clean-generic:
308 @echo "This command is intended for maintainers to use"
309 @echo "it deletes files that may require special tools to rebuild."
312 clean-am: clean-generic mostlyclean-am
314 distclean: distclean-am
316 distclean-am: clean-am distclean-generic
330 install-info: install-info-am
336 maintainer-clean: maintainer-clean-am
338 maintainer-clean-am: distclean-am maintainer-clean-generic
340 mostlyclean: mostlyclean-am
342 mostlyclean-am: mostlyclean-generic
352 uninstall-am: uninstall-info-am
354 .PHONY: all all-am check check-TESTS check-am clean clean-generic \
355 distclean distclean-generic distdir dvi dvi-am info info-am \
356 install install-am install-data install-data-am install-exec \
357 install-exec-am install-info install-info-am install-man \
358 install-strip installcheck installcheck-am installdirs \
359 maintainer-clean maintainer-clean-generic mostlyclean \
360 mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
363 # Tell versions [3.59,3.63) of GNU make to not export all variables.
364 # Otherwise a system limit (for SysV at least) may be exceeded.