-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
109 lines (91 loc) · 1.89 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
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).tar.xz \
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.lrz \
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \
m4/libtool.m4 \
m4/lt~obsolete.m4 \
m4/ltoptions.m4 \
m4/ltsugar.m4 \
m4/ltversion.m4
SUBDIRS = lzma man doc
AM_CFLAGS = -I. -I lzma/C -DNDEBUG
AM_CXXFLAGS = $(AM_CFLAGS)
lrztardir = $(bindir)
lrztar_SCRIPTS = lrztar
noinst_LTLIBRARIES = libtmplrzip.la
libtmplrzip_la_SOURCES = \
lrzip_private.h \
lrzip.c \
lrzip_core.h \
rzip.h \
rzip.c \
runzip.c \
runzip.h \
stream.c \
stream.h \
util.c \
util.h \
md5.c \
md5.h \
aes.c \
aes.h \
sha4.c \
sha4.h \
libzpaq/libzpaq.cpp \
libzpaq/libzpaq.h
libtmplrzip_la_LIBADD = lzma/C/liblzma.la
bin_PROGRAMS = lrzip
lrzip_SOURCES = \
main.c
nodist_EXTRA_lrzip_SOURCES = dummyy.cxx
lrzip_LDADD = libtmplrzip.la
if STATIC
lrzip_LDFLAGS = -all-static
endif
dist_doc_DATA = \
AUTHORS \
BUGS \
ChangeLog \
COPYING \
README.md \
README-NOT-BACKWARD-COMPATIBLE \
TODO \
WHATS-NEW
noinst_HEADERS = Lrzip.h
lrzipdir = $(includedir)
EXTRA_DIST = \
lrztar \
description-pak \
autogen.sh \
INSTALL \
$(dist_doc_DATA)
install-exec-hook:
$(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)
$(LN_S) -f lrzip$(EXEEXT) $(DESTDIR)$(bindir)/lrz$(EXEEXT)
uninstall-local:
rm -f $(bindir)/lrunzip
rm -f $(bindir)/lrzcat
rm -f $(bindir)/lrzuntar
rm -f $(bindir)/lrz
.PHONY: doc
# Documentation
doc: all
@echo "entering doc/"
$(MAKE) -C doc doc