freebsd-dev/lib/libz/Makefile

33 lines
776 B
Makefile
Raw Normal View History

1996-08-18 17:59:48 +00:00
#
1999-08-28 00:22:10 +00:00
# $FreeBSD$
1996-08-18 17:59:48 +00:00
#
MAINTAINER=peter@FreeBSD.org
LIB= z
1998-02-28 10:41:01 +00:00
MAN3= zlib.3
1996-08-18 17:59:48 +00:00
#CFLAGS+= -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
#CFLAGS+= -g -DDEBUG
#CFLAGS+= -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
# -Wstrict-prototypes -Wmissing-prototypes
CLEANFILES+= example.o example foo.gz minigzip.o minigzip
1996-08-18 17:59:48 +00:00
SRCS = adler32.c compress.c crc32.c gzio.c uncompr.c deflate.c trees.c \
zutil.c inflate.c infblock.c inftrees.c infcodes.c infutil.c inffast.c
INCS= zconf.h zlib.h
1996-08-18 17:59:48 +00:00
minigzip: all minigzip.o
$(CC) -o minigzip minigzip.o -L. -lz
example: all example.o
$(CC) -o example example.o -L. -lz
test: example minigzip
(export LD_LIBRARY_PATH=. ; ./example )
(export LD_LIBRARY_PATH=. ; \
echo hello world | ./minigzip | ./minigzip -d )
.include <bsd.lib.mk>