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