1
noinst_LTLIBRARIES = libarchivers.la
2
3
if BUILD_ZLIB
4
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/zlib114
5
else
6
INCLUDES = -I$(top_srcdir)
7
endif
8
9
libarchivers_la_SOURCES = \
10
dir.c \
11
grp.c \
12
zip.c \
13
unzip.c \
14
unzip.h
15