xref: /freebsd/lib/libz/Makefile (revision 74bf4e164ba5851606a27d4feff27717452583e5)
1#
2# $FreeBSD$
3#
4
5MAINTAINER=peter@FreeBSD.org
6
7LIB=		z
8SHLIBDIR?=	/lib
9MAN=		zlib.3
10
11#CFLAGS+=	-DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
12#CFLAGS+=	-g -DDEBUG
13#CFLAGS+=	-Wall -Wwrite-strings -Wpointer-arith -Wconversion \
14#		-Wstrict-prototypes -Wmissing-prototypes
15
16CFLAGS+=	-DHAS_snprintf -DHAS_vsnprintf
17
18CLEANFILES+=	example.o example foo.gz minigzip.o minigzip
19
20SRCS = adler32.c compress.c crc32.c gzio.c uncompr.c deflate.c trees.c \
21       zutil.c inflate.c inftrees.c inffast.c zopen.c infback.c
22INCS=		zconf.h zlib.h
23
24minigzip:	all minigzip.o
25	$(CC) -o minigzip minigzip.o -L. -lz
26
27example:	all example.o
28	$(CC) -o example example.o -L. -lz
29
30test: example minigzip
31	(export LD_LIBRARY_PATH=. ; ./example )
32	(export LD_LIBRARY_PATH=. ; \
33		echo hello world | ./minigzip | ./minigzip -d )
34
35.include <bsd.lib.mk>
36