diff options
author | Mike Smith <msmith@FreeBSD.org> | 1997-12-13 09:57:48 +0000 |
---|---|---|
committer | Mike Smith <msmith@FreeBSD.org> | 1997-12-13 09:57:48 +0000 |
commit | 85e55f7ab8473307fb16c5bce8c2e933a317215b (patch) | |
tree | df27a083a710c03b265426fd3bf083ae9582601c /usr.bin/minigzip/Makefile | |
parent | 749f6a2934ad92f025ed6708003ff7c94d010ce0 (diff) |
This framework builds the 'minigzip' sample program supplied with
libz. It is a non-GPL-polluted minimal implementation of the 'gzip'
command, yielding a 12k executable (vs ~100k for gzip).
Notes
Notes:
svn path=/cvs2svn/branches/MSMITH/; revision=31695
Diffstat (limited to 'usr.bin/minigzip/Makefile')
-rw-r--r-- | usr.bin/minigzip/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/usr.bin/minigzip/Makefile b/usr.bin/minigzip/Makefile new file mode 100644 index 000000000000..58263e05476b --- /dev/null +++ b/usr.bin/minigzip/Makefile @@ -0,0 +1,8 @@ +# $Id$ + +PROG= minigzip +LDADD+= -lz +DPADD+= ${LIBZ} +.PATH: ../../lib/libz + +.include <bsd.prog.mk> |