diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:27:21 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:27:21 +0000 |
commit | 0a1a75fc04f29f4418273baa7dcb33c7751e0e4c (patch) | |
tree | 18bb9637a53581deb829286d70069b58c06ed125 /Makefile.in | |
parent | Adding upstream version 0.6. (diff) | |
download | plzip-0a1a75fc04f29f4418273baa7dcb33c7751e0e4c.tar.xz plzip-0a1a75fc04f29f4418273baa7dcb33c7751e0e4c.zip |
Adding upstream version 0.7.upstream/0.7
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in index ca6b899..02f9cd8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -17,10 +17,10 @@ objs = arg_parser.o compress.o decompress.o main.o all : $(progname) $(progname) : $(objs) - $(CXX) $(LDFLAGS) -o $(progname) $(objs) $(LIBS) + $(CXX) $(LDFLAGS) -o $@ $^ $(LIBS) $(progname)_profiled : $(objs) - $(CXX) $(LDFLAGS) -pg -o $(progname)_profiled $(objs) $(LIBS) + $(CXX) $(LDFLAGS) -pg -o $@ $^ $(LIBS) main.o : main.cc $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $< @@ -44,14 +44,14 @@ $(VPATH)/doc/$(pkgname).info : $(VPATH)/doc/$(pkgname).texinfo man : $(VPATH)/doc/$(progname).1 $(VPATH)/doc/$(progname).1 : $(progname) - help2man -n 'data compressor based on the LZMA algorithm' \ - -o $(VPATH)/doc/$(progname).1 ./$(progname) + help2man -n 'reduces the size of files' \ + -o $@ ./$(progname) Makefile : $(VPATH)/configure $(VPATH)/Makefile.in ./config.status check : all - @$(VPATH)/testsuite/check.sh $(VPATH)/testsuite + @$(VPATH)/testsuite/check.sh $(VPATH)/testsuite $(pkgversion) install : all install-info install-man if [ ! -d "$(DESTDIR)$(bindir)" ] ; then $(INSTALL_DIR) "$(DESTDIR)$(bindir)" ; fi @@ -94,8 +94,8 @@ dist : doc $(DISTNAME)/doc/$(pkgname).info \ $(DISTNAME)/doc/$(pkgname).texinfo \ $(DISTNAME)/testsuite/check.sh \ - $(DISTNAME)/testsuite/test1 \ - $(DISTNAME)/testsuite/test1.lz \ + $(DISTNAME)/testsuite/test.txt \ + $(DISTNAME)/testsuite/test_v[01].lz \ $(DISTNAME)/*.h \ $(DISTNAME)/*.cc rm -f $(DISTNAME) |