diff options
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/Makefile | 4 | ||||
-rw-r--r-- | distrib/special/gzip/Makefile | 12 |
2 files changed, 14 insertions, 2 deletions
diff --git a/distrib/special/Makefile b/distrib/special/Makefile index cc7621ab03b..98fa116dcd0 100644 --- a/distrib/special/Makefile +++ b/distrib/special/Makefile @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile,v 1.9 2003/04/25 20:54:44 deraadt Exp $ +# $OpenBSD: Makefile,v 1.10 2003/06/22 22:25:21 deraadt Exp $ -SUBDIR= ftp pppd rsh dhclient init dmesg grep kbd less more +SUBDIR= ftp pppd rsh dhclient init dmesg grep kbd less more gzip .include <bsd.subdir.mk> 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> |