blob: 80cd34a6ad7004c6cb6524cf61e8b49849bdd006 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $OpenBSD: Makefile,v 1.7 2003/12/17 19:37:59 henning Exp $
PROG= gzip
SRCS= main.c gzopen.c
SRCS+= adler32.c crc32.c inflate.c inftrees.c zutil.c
MAN=
COPTS+=-Os -DSMALL -DDYNAMIC_CRC_TABLE -DNOBYFOUR -DNO_GZIP -DSLOW
.PATH: ${.CURDIR}/../../../usr.bin/compress
.PATH: ${.CURDIR}/../../../lib/libz
.include <bsd.prog.mk>
|