[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
avfs 1.1.4-2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 3,756 kB
  • sloc: ansic: 30,979; sh: 6,276; perl: 1,916; makefile: 348
file content (33 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (7)
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
30
31
32
33
AM_CFLAGS = -I$(top_srcdir)/include @ZLIB_CFLAGS@ @CPPFLAGS@

if !USE_SYSTEM_ZLIB

noinst_LTLIBRARIES = libzlib.la

endif

libzlib_la_LDFLAGS = -module
libzlib_la_SOURCES = adler32.c   \
	crc32.c	    \
	deflate.c   \
	infblock.c  \
	infcodes.c  \
	inffast.c   \
	inflate.c   \
	inftrees.c  \
	infutil.c   \
	trees.c	    \
	zutil.c

noinst_HEADERS = \
	deflate.h \
	infblock.h \
	infcodes.h \
	inffast.h \
	inffixed.h \
	inftrees.h \
	infutil.h \
	trees.h \
	zconf.h \
	zlib.h \
	zutil.h