2011-02-26 14:17:29 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
|
Makefile.in \
|
|
|
|
|
aclocal.m4 \
|
|
|
|
|
config.guess \
|
|
|
|
|
config.h.in \
|
|
|
|
|
config.h.in~ \
|
|
|
|
|
config.sub \
|
|
|
|
|
configure \
|
|
|
|
|
depcomp \
|
|
|
|
|
install-sh \
|
|
|
|
|
ltconfig \
|
|
|
|
|
ltmain.sh \
|
|
|
|
|
missing \
|
|
|
|
|
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
|
|
|
|
|
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \
|
|
|
|
|
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \
|
|
|
|
|
m4/libtool.m4 \
|
|
|
|
|
m4/lt~obsolete.m4 \
|
|
|
|
|
m4/ltoptions.m4 \
|
|
|
|
|
m4/ltsugar.m4 \
|
|
|
|
|
m4/ltversion.m4
|
|
|
|
|
|
2011-03-08 03:06:24 +01:00
|
|
|
SUBDIRS = lzma man doc
|
2011-02-26 14:17:29 +01:00
|
|
|
|
2011-08-12 08:42:57 +02:00
|
|
|
AM_CFLAGS = -I. -I lzma/C -DNDEBUG
|
|
|
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
2011-02-26 14:17:29 +01:00
|
|
|
|
2011-09-17 09:46:55 +02:00
|
|
|
lrztardir = $(bindir)
|
2011-02-26 14:17:29 +01:00
|
|
|
lrztar_SCRIPTS = lrztar
|
|
|
|
|
|
2011-08-12 08:42:57 +02:00
|
|
|
noinst_LTLIBRARIES = libtmplrzip.la
|
|
|
|
|
libtmplrzip_la_SOURCES = \
|
2011-03-08 23:06:37 +01:00
|
|
|
lrzip_private.h \
|
2011-09-18 01:34:54 +02:00
|
|
|
liblrzip_private.h \
|
2011-03-08 22:32:14 +01:00
|
|
|
lrzip.c \
|
2012-07-07 13:39:40 +02:00
|
|
|
lrzip_core.h \
|
2011-03-08 03:06:24 +01:00
|
|
|
rzip.h \
|
2011-02-26 14:17:29 +01:00
|
|
|
rzip.c \
|
|
|
|
|
runzip.c \
|
2011-03-08 23:06:37 +01:00
|
|
|
runzip.h \
|
2011-02-26 14:17:29 +01:00
|
|
|
stream.c \
|
2011-03-08 23:06:37 +01:00
|
|
|
stream.h \
|
2011-02-26 14:17:29 +01:00
|
|
|
util.c \
|
2011-03-08 23:06:37 +01:00
|
|
|
util.h \
|
2011-03-08 03:06:24 +01:00
|
|
|
md5.c \
|
2011-03-15 10:22:26 +01:00
|
|
|
md5.h \
|
|
|
|
|
aes.c \
|
|
|
|
|
aes.h \
|
|
|
|
|
sha4.c \
|
2012-03-15 22:59:04 +01:00
|
|
|
sha4.h \
|
|
|
|
|
libzpaq/libzpaq.cpp \
|
|
|
|
|
libzpaq/libzpaq.h
|
2012-03-16 13:04:20 +01:00
|
|
|
|
2011-08-12 08:42:57 +02:00
|
|
|
libtmplrzip_la_LIBADD = lzma/C/liblzma.la
|
|
|
|
|
|
2011-03-15 10:22:26 +01:00
|
|
|
|
2011-08-12 08:42:57 +02:00
|
|
|
lib_LTLIBRARIES = liblrzip.la
|
|
|
|
|
liblrzip_la_SOURCES = \
|
2012-03-07 01:58:10 +01:00
|
|
|
liblrzip.c \
|
|
|
|
|
liblrzip_private.h
|
2011-08-12 08:42:57 +02:00
|
|
|
nodist_EXTRA_liblrzip_la_SOURCES = dummy.cxx
|
|
|
|
|
liblrzip_la_LIBADD = libtmplrzip.la
|
2011-03-15 10:22:26 +01:00
|
|
|
|
2011-08-12 08:42:57 +02:00
|
|
|
bin_PROGRAMS = lrzip
|
|
|
|
|
lrzip_SOURCES = \
|
|
|
|
|
main.c
|
|
|
|
|
nodist_EXTRA_lrzip_SOURCES = dummyy.cxx
|
|
|
|
|
|
|
|
|
|
lrzip_LDADD = libtmplrzip.la
|
2011-03-22 23:43:17 +01:00
|
|
|
if STATIC
|
|
|
|
|
lrzip_LDFLAGS = -all-static
|
|
|
|
|
endif
|
2011-02-26 14:17:29 +01:00
|
|
|
|
2011-08-13 09:43:33 +02:00
|
|
|
noinst_PROGRAMS = decompress_demo liblrzip_demo
|
2011-08-12 08:42:57 +02:00
|
|
|
decompress_demo_SOURCES = decompress_demo.c
|
|
|
|
|
decompress_demo_LDADD = liblrzip.la
|
|
|
|
|
|
2011-08-13 09:43:33 +02:00
|
|
|
liblrzip_demo_SOURCES = liblrzip_demo.c
|
|
|
|
|
liblrzip_demo_LDADD = liblrzip.la
|
|
|
|
|
|
2011-02-26 14:17:29 +01:00
|
|
|
dist_doc_DATA = \
|
|
|
|
|
AUTHORS \
|
|
|
|
|
BUGS \
|
|
|
|
|
ChangeLog \
|
|
|
|
|
COPYING \
|
2014-05-30 14:29:03 +02:00
|
|
|
README.md \
|
2011-02-26 14:17:29 +01:00
|
|
|
README-NOT-BACKWARD-COMPATIBLE \
|
|
|
|
|
TODO \
|
|
|
|
|
WHATS-NEW
|
|
|
|
|
|
2011-11-24 00:30:07 +01:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
|
pkgconfig_DATA = lrzip.pc
|
|
|
|
|
|
2012-03-15 01:16:57 +01:00
|
|
|
lrzip_HEADERS = Lrzip.h
|
|
|
|
|
lrzipdir = $(includedir)
|
|
|
|
|
|
2011-03-08 03:06:24 +01:00
|
|
|
EXTRA_DIST = \
|
2011-11-24 00:30:07 +01:00
|
|
|
lrzip.pc.in \
|
2011-03-08 03:06:24 +01:00
|
|
|
lrztar \
|
|
|
|
|
description-pak \
|
|
|
|
|
autogen.sh \
|
|
|
|
|
INSTALL \
|
|
|
|
|
$(dist_doc_DATA)
|
2011-03-23 22:45:59 +01:00
|
|
|
|
|
|
|
|
install-exec-hook:
|
2011-09-17 09:46:55 +02:00
|
|
|
$(LN_S) -f lrzip$(EXEEXT) $(DESTDIR)$(bindir)/lrunzip$(EXEEXT)
|
|
|
|
|
$(LN_S) -f lrzip$(EXEEXT) $(DESTDIR)$(bindir)/lrzcat$(EXEEXT)
|
|
|
|
|
$(LN_S) -f lrztar$(EXEEXT) $(DESTDIR)$(bindir)/lrzuntar$(EXEEXT)
|
2015-03-13 03:02:54 +01:00
|
|
|
$(LN_S) -f lrz$(EXEEXT) $(DESTDIR)$(bindir)/lrz$(EXEEXT)
|
2011-03-23 22:45:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
uninstall-local:
|
2011-09-17 09:46:55 +02:00
|
|
|
rm -f $(bindir)/lrunzip
|
|
|
|
|
rm -f $(bindir)/lrzcat
|
|
|
|
|
rm -f $(bindir)/lrzuntar
|
2015-03-13 03:02:54 +01:00
|
|
|
rm -f $(bindir)/lrz
|
2012-03-07 01:57:22 +01:00
|
|
|
|
|
|
|
|
.PHONY: doc
|
|
|
|
|
|
|
|
|
|
# Documentation
|
|
|
|
|
|
|
|
|
|
doc: all
|
|
|
|
|
@echo "entering doc/"
|
|
|
|
|
$(MAKE) -C doc doc
|
|
|
|
|
|