diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:19:36 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:19:36 +0000 |
commit | 87a770d4123c1323068a5b3f01c805e715ea3024 (patch) | |
tree | 0cad244c41481b67718f1fe42b67f7cb4a223398 /Makefile.in | |
parent | Adding upstream version 0.9~rc1. (diff) | |
download | zutils-87a770d4123c1323068a5b3f01c805e715ea3024.tar.xz zutils-87a770d4123c1323068a5b3f01c805e715ea3024.zip |
Adding upstream version 0.9~rc2.upstream/0.9_rc2
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 2fc8ccb..cb987ca 100644 --- a/Makefile.in +++ b/Makefile.in @@ -26,7 +26,7 @@ $(progname)_profiled : $(objs) $(CXX) $(LDFLAGS) -pg -o $@ $(objs) zcat : zcat.in - cat $(VPATH)/zcat.in > zcat + cat $(VPATH)/zcat.in > $@ chmod a+x zcat zcmp : $(zcmp_objs) @@ -36,19 +36,19 @@ zdiff : $(zdiff_objs) $(CXX) $(LDFLAGS) -o $@ $(zdiff_objs) zegrep : zegrep.in - cat $(VPATH)/zegrep.in > zegrep + cat $(VPATH)/zegrep.in > $@ chmod a+x zegrep zfgrep : zfgrep.in - cat $(VPATH)/zfgrep.in > zfgrep + cat $(VPATH)/zfgrep.in > $@ chmod a+x zfgrep zgrep : zgrep.in - cat $(VPATH)/zgrep.in > zgrep + cat $(VPATH)/zgrep.in > $@ chmod a+x zgrep ztest : ztest.in - cat $(VPATH)/ztest.in > ztest + cat $(VPATH)/ztest.in > $@ chmod a+x ztest main.o : main.cc @@ -175,6 +175,7 @@ dist : doc $(DISTNAME)/doc/$(pkgname).texinfo \ $(DISTNAME)/testsuite/check.sh \ $(DISTNAME)/testsuite/test.txt \ + $(DISTNAME)/testsuite/test.txt.tar \ $(DISTNAME)/*.h \ $(DISTNAME)/*.cc \ $(DISTNAME)/z*.in |