1# 2# $Id: Makefile,v 1.8 1998/04/17 07:26:51 phk Exp $ 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 19 20beforeinstall: 21.for hdr in zconf.h zlib.h 22 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/${hdr} \ 23 ${DESTDIR}/usr/include 24.endfor 25 26minigzip: all minigzip.o 27 $(CC) -o minigzip minigzip.o -L. -lz 28 29example: all example.o 30 $(CC) -o example example.o -L. -lz 31 32test: example minigzip 33 (export LD_LIBRARY_PATH=. ; ./example ) 34 (export LD_LIBRARY_PATH=. ; \ 35 echo hello world | ./minigzip | ./minigzip -d ) 36 37.include <bsd.lib.mk> 38