diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-01-09 05:52:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-01-09 05:53:03 +0000 |
commit | 882d8d8da4a8b4a332458c4f01b03d81c2c08c78 (patch) | |
tree | d7acd130c7201183b14adfa8e095e79eb1f49bbe /Makefile.in | |
parent | Releasing debian version 0.21-3. (diff) | |
download | tarlz-882d8d8da4a8b4a332458c4f01b03d81c2c08c78.tar.xz tarlz-882d8d8da4a8b4a332458c4f01b03d81c2c08c78.zip |
Merging upstream version 0.22.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 6a10c03..7506a17 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,6 @@ INSTALL = install INSTALL_PROGRAM = $(INSTALL) -m 755 INSTALL_DATA = $(INSTALL) -m 644 INSTALL_DIR = $(INSTALL) -d -m 755 -LIBS = -llz -lpthread SHELL = /bin/sh CAN_RUN_INSTALLINFO = $(SHELL) -c "install-info --version" > /dev/null 2>&1 @@ -22,7 +21,7 @@ objs = arg_parser.o lzip_index.o archive_reader.o common.o common_decode.o \ all : $(progname) $(progname) : $(objs) - $(CXX) $(LDFLAGS) $(CXXFLAGS) -o $@ $(objs) $(LIBS) + $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(objs) $(LIBS) main.o : main.cc $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $< |