diff options
author | rgrimes <rgrimes@FreeBSD.org> | 2000-01-14 07:57:47 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 2000-01-14 07:57:47 +0000 |
commit | c127d0e61e914c6951d98986385ccb730b115cf9 (patch) | |
tree | e0bf2775a4898eda7838b05b1a539892d8ea781c /lib/libz | |
parent | 2801ff847ca9459d227f155a4dedd395b7d35a30 (diff) | |
download | FreeBSD-src-c127d0e61e914c6951d98986385ccb730b115cf9.zip FreeBSD-src-c127d0e61e914c6951d98986385ccb730b115cf9.tar.gz |
Replace beforeinstall target with new variables used by .mk system.
Reviewed by: marcel, and make world
Diffstat (limited to 'lib/libz')
-rw-r--r-- | lib/libz/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libz/Makefile b/lib/libz/Makefile index 250e005..abb4b19 100644 --- a/lib/libz/Makefile +++ b/lib/libz/Makefile @@ -16,12 +16,7 @@ CLEANFILES+= example.o example foo.gz minigzip.o minigzip SRCS = adler32.c compress.c crc32.c gzio.c uncompr.c deflate.c trees.c \ zutil.c inflate.c infblock.c inftrees.c infcodes.c infutil.c inffast.c - -beforeinstall: -.for hdr in zconf.h zlib.h - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/${hdr} \ - ${DESTDIR}/usr/include -.endfor +INCS= zconf.h zlib.h minigzip: all minigzip.o $(CC) -o minigzip minigzip.o -L. -lz |