Makefile revision 1.15
11.15Stv# $NetBSD: Makefile,v 1.15 2001/12/12 00:51:06 tv Exp $ 21.1Sgwr 31.15StvLIB= z 41.15StvNOMAN= # defined 51.6Sgwr 61.13SgarbledSRCS= adler32.c compress.c crc32.c deflate.c gzio.c infblock.c \ 71.11Stron infcodes.c inffast.c inflate.c inftrees.c infutil.c trees.c uncompr.c \ 81.15Stv zutil.c gzio_compat.c 91.1Sgwr 101.15StvCPPFLAGS+= -I${.CURDIR} 111.15StvCLEANFILES+= minigzip 121.1Sgwr 131.15StvINCS= zconf.h zlib.h 141.15StvINCSDIR= /usr/include 151.1Sgwr 161.1Sgwr.include <bsd.lib.mk> 171.1Sgwr 181.1Sgwrtest: minigzip 191.1Sgwr echo hello world | ./minigzip | ./minigzip -d 201.1Sgwr 211.1Sgwr# Note: CFLAGS ommitted by intention! 221.1Sgwr# This is to verify that zlib.h works standalone. 231.15Stvminigzip: minigzip.c libz.a 241.15Stv ${CC} -o minigzip ${.CURDIR}/minigzip.c libz.a 25