diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-09-05 04:46:36 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-09-05 04:46:36 +0000 |
commit | 2378d32bb8f4b89cafeaf11ef4edbc1ef3bf583f (patch) | |
tree | fcbb898be584fc113114361b11096739976805f6 /distrib | |
parent | d4d927905b23d313d6c74fe7fd875f18739146f6 (diff) |
add a null compressor from canacar@ that lets gzcat work with uncompressed
files.
also introduce SMALLness that removes null and Z compressors to save floppy
space.
ok deraadt@
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/gzip/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/special/gzip/Makefile b/distrib/special/gzip/Makefile index 4c81680d88a..7267526bcac 100644 --- a/distrib/special/gzip/Makefile +++ b/distrib/special/gzip/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.1 2003/06/22 22:25:23 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 2003/09/05 04:46:35 tedu Exp $ PROG= gzip -SRCS= main.c zopen.c gzopen.c +SRCS= main.c gzopen.c MAN= -COPTS+=-Os +COPTS+=-Os -DSMALL .PATH: ${.CURDIR}/../../../usr.bin/compress LDADD=-lz |