blob: 09d27be426e90f23d3382e1731f7009e69cc38d5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# $OpenBSD: Makefile,v 1.8 2009/10/28 07:36:49 deraadt Exp $
PROG= gzip
SRCS= main.c gzopen.c
SRCS+= adler32.c crc32.c inflate.c inftrees.c zutil.c
COPTS+= -DSMALL -DDYNAMIC_CRC_TABLE -DNOBYFOUR -DNO_GZIP -DSLOW
.PATH: ${.CURDIR}/../../../usr.bin/compress
.PATH: ${.CURDIR}/../../../lib/libz
.include <bsd.prog.mk>
|