30 lines
444 B
Makefile
30 lines
444 B
Makefile
if WITH_SHIPPED_ZLIB
|
|
noinst_LTLIBRARIES = libzlib.la
|
|
endif
|
|
|
|
libzlib_la_SOURCES = \
|
|
adler32.c \
|
|
compress.c \
|
|
crc32.c \
|
|
deflate.c \
|
|
gzio.c \
|
|
infback.c \
|
|
inffast.c \
|
|
inflate.c \
|
|
inftrees.c \
|
|
trees.c \
|
|
uncompr.c \
|
|
zutil.c
|
|
|
|
noinst_HEADERS = \
|
|
crc32.h \
|
|
deflate.h \
|
|
inffast.h \
|
|
inffixed.h \
|
|
inflate.h \
|
|
inftrees.h \
|
|
trees.h \
|
|
zconf.h \
|
|
zlib.h \
|
|
zutil.h
|