diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-22 22:25:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-22 22:25:24 +0000 |
commit | 5b194c77da35e8ce7b48ff29e6752c2e14e19c8b (patch) | |
tree | bdbaae6a5819a20734c943dd53d1b83099598a9c /distrib/special/gzip | |
parent | d28d31171f886d3ffc0eeeed110ee7110e77a94b (diff) |
special/gzip is smart enough to grovel in usr.bin/compress for what it
needs. This is better than putting a compress link on each media; saves
us a few bytes
Diffstat (limited to 'distrib/special/gzip')
-rw-r--r-- | distrib/special/gzip/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/distrib/special/gzip/Makefile b/distrib/special/gzip/Makefile new file mode 100644 index 00000000000..4c81680d88a --- /dev/null +++ b/distrib/special/gzip/Makefile @@ -0,0 +1,12 @@ +# $OpenBSD: Makefile,v 1.1 2003/06/22 22:25:23 deraadt Exp $ + +PROG= gzip +SRCS= main.c zopen.c gzopen.c +MAN= +COPTS+=-Os +.PATH: ${.CURDIR}/../../../usr.bin/compress + +LDADD=-lz +DPADD=${LIBZ} + +.include <bsd.prog.mk> |