Skip to content

Latest commit

 

History

History
29 lines (27 loc) · 392 Bytes

Makefile.am

File metadata and controls

29 lines (27 loc) · 392 Bytes
 
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
X = adler32.c \
compress.c \
crc32.c \
crc32.h \
deflate.c \
deflate.h \
gzio.c \
infback.c \
inffast.c \
inffast.h \
inffixed.h \
inflate.c \
inflate.h \
inftrees.c \
inftrees.h \
trees.c \
trees.h \
uncompr.c \
zconf.h \
zlib.h \
zutil.c \
zutil.h
if BUILD_ZLIB
noinst_LTLIBRARIES = libz.la
libz_la_SOURCES = $(X)
endif
EXTRA_DIST = $(X)