Merging upstream version 0.16.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
cf7dc90711
commit
e896ecf9fe
20 changed files with 854 additions and 662 deletions
31
Makefile.in
31
Makefile.in
|
@ -8,8 +8,9 @@ LIBS = -llz -lpthread
|
|||
SHELL = /bin/sh
|
||||
CAN_RUN_INSTALLINFO = $(SHELL) -c "install-info --version" > /dev/null 2>&1
|
||||
|
||||
objs = arg_parser.o lzip_index.o create.o create_lz.o delete.o delete_lz.o \
|
||||
exclude.o extended.o extract.o list_lz.o main.o
|
||||
objs = arg_parser.o lzip_index.o common.o common_decode.o create.o \
|
||||
create_lz.o delete.o delete_lz.o exclude.o extended.o extract.o \
|
||||
list_lz.o main.o
|
||||
|
||||
|
||||
.PHONY : all install install-bin install-info install-man \
|
||||
|
@ -29,18 +30,20 @@ main.o : main.cc
|
|||
%.o : %.cc
|
||||
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $<
|
||||
|
||||
$(objs) : Makefile
|
||||
arg_parser.o : arg_parser.h
|
||||
create.o : arg_parser.h tarlz.h
|
||||
create_lz.o : arg_parser.h tarlz.h
|
||||
delete.o : arg_parser.h lzip_index.h tarlz.h
|
||||
delete_lz.o : arg_parser.h lzip_index.h tarlz.h
|
||||
exclude.o : tarlz.h
|
||||
extended.o : tarlz.h
|
||||
extract.o : arg_parser.h lzip_index.h tarlz.h
|
||||
list_lz.o : arg_parser.h lzip_index.h tarlz.h
|
||||
lzip_index.o : lzip_index.h tarlz.h
|
||||
main.o : arg_parser.h tarlz.h
|
||||
$(objs) : Makefile
|
||||
arg_parser.o : arg_parser.h
|
||||
common.o : tarlz.h
|
||||
common_decode.o : arg_parser.h tarlz.h
|
||||
create.o : arg_parser.h tarlz.h
|
||||
create_lz.o : arg_parser.h tarlz.h
|
||||
delete.o : arg_parser.h lzip_index.h tarlz.h
|
||||
delete_lz.o : arg_parser.h lzip_index.h tarlz.h
|
||||
exclude.o : tarlz.h
|
||||
extended.o : tarlz.h
|
||||
extract.o : arg_parser.h lzip_index.h tarlz.h
|
||||
list_lz.o : arg_parser.h lzip_index.h tarlz.h
|
||||
lzip_index.o : lzip_index.h tarlz.h
|
||||
main.o : arg_parser.h tarlz.h
|
||||
|
||||
|
||||
doc : info man
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue