15 lines
210 B
Makefile
15 lines
210 B
Makefile
|
noinst_LTLIBRARIES = libarchivers.la
|
||
|
|
||
|
if BUILD_ZLIB
|
||
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/zlib114
|
||
|
else
|
||
|
INCLUDES = -I$(top_srcdir)
|
||
|
endif
|
||
|
|
||
|
libarchivers_la_SOURCES = \
|
||
|
dir.c \
|
||
|
grp.c \
|
||
|
zip.c \
|
||
|
unzip.c
|
||
|
|