NetBSD/distrib/utils/x_gzip/Makefile
mrg 79e6177746 delete these old sources. use usr.bin/gzip sources but disable a lot of
stuff: bz2 support, compress support, many non-required options.

now x_gzip supports "gzip -l" so sysinst should work for these platforms.

gzip will grow slightly - 400 or so bytes on x86 - but this is a small
price to pay for working -l support...
2004-03-28 04:10:43 +00:00

17 lines
325 B
Makefile

# $NetBSD: Makefile,v 1.7 2004/03/28 04:10:43 mrg Exp $
# Build a tiny limited gzip (i.e. for tiny boot media)
SRCDIR= ${.CURDIR}/../../../usr.bin/gzip
PROG= gzip
NOMAN= # defined
CPPFLAGS+= -DSMALL -DNO_BZIP2_SUPPORT -DNO_COMPRESS_SUPPORT
DPADD= ${LIBZ}
LDADD= -lz
.include <bsd.prog.mk>
.PATH: ${SRCDIR}