1#
2
3AM_LDFLAGS  = $(AM_LT_LDFLAGS)
4
5noinst_LIBRARIES = libvgz.a
6
7libvgz_a_CFLAGS = -D_LARGEFILE64_SOURCE=1 -DZLIB_CONST \
8	$(libvgz_extra_cflags) @SAN_CFLAGS@
9
10libvgz_a_SOURCES = \
11	adler32.c \
12	crc32.c \
13	crc32.h \
14	deflate.c \
15	deflate.h \
16	gzguts.h \
17	inffast.c \
18	inffast.h \
19	inffixed.h \
20	inflate.c \
21	inflate.h \
22	inftrees.c \
23	inftrees.h \
24	trees.c \
25	trees.h \
26	zconf.h \
27	vgz.h \
28	zutil.c \
29	zutil.h
30