diff options
author | Jim Meyering <jim@meyering.net> | 1999-11-22 09:16:27 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-11-22 09:16:27 +0000 |
commit | 5a7847d20fe615a4141b757ae05dc98b4eaf67c9 (patch) | |
tree | a6f1b00278037720a70d7f2cc1ec24271d2e5058 /tests/join | |
parent | 94129d72a578864900217d978089b266db391d50 (diff) | |
download | coreutils-5a7847d20fe615a4141b757ae05dc98b4eaf67c9.tar.xz |
.
Diffstat (limited to 'tests/join')
-rw-r--r-- | tests/join/Makefile.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/join/Makefile.in b/tests/join/Makefile.in index 7f54ed98b..70cf2b781 100644 --- a/tests/join/Makefile.in +++ b/tests/join/Makefile.in @@ -59,16 +59,14 @@ PRE_UNINSTALL = : POST_UNINSTALL = : host_alias = @host_alias@ host_triplet = @host@ -AMDEP = @AMDEP@ AMTAR = @AMTAR@ +AMTARFLAGS = @AMTARFLAGS@ +AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CPP = @CPP@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ DATADIRNAME = @DATADIRNAME@ -DEPDIR = @DEPDIR@ GENCAT = @GENCAT@ GETCONF = @GETCONF@ GMOFILES = @GMOFILES@ @@ -96,6 +94,7 @@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ YACC = @YACC@ +install_sh = @install_sh@ l = @l@ @@ -132,6 +131,7 @@ mk_script = $(srcdir)/../mk-script MAINTAINERCLEANFILES = $x-tests $(maint_gen) CLEANFILES = $(run_gen) +subdir = tests/join mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../../config.h CONFIG_CLEAN_FILES = @@ -147,9 +147,9 @@ GZIP_ENV = --best all: all-redirect .SUFFIXES: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) - cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/join/Makefile + cd $(top_srcdir) && $(AUTOMAKE) --gnits --include-deps tests/join/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status @@ -159,19 +159,18 @@ TAGS: distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) -subdir = tests/join - distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pR $$d/$$file $(distdir); \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ || cp -p $$d/$$file $(distdir)/$$file || :; \ fi; \ done + check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; \ srcdir=$(srcdir); export srcdir; \ @@ -260,6 +259,7 @@ distclean-generic: -rm -f config.cache config.log stamp-h stamp-h[0-9]* maintainer-clean-generic: + -rm -f Makefile.in -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) mostlyclean-am: mostlyclean-generic |