diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-04 23:35:34 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-04 23:35:34 +0000 |
commit | a3d50b0f16e80c9ab3afdabc9bff3bac248a711e (patch) | |
tree | 3fdcfb9040c8e428f79b92336f5dfa22ca7ee4a2 /sys/lib/libz | |
parent | 524fbdde37c1f9f4447e049b98046e014e00d518 (diff) |
Change clean/depend targets to allow inclusion of Makefile.inc
where there is already a depend: target.
Diffstat (limited to 'sys/lib/libz')
-rw-r--r-- | sys/lib/libz/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libz/Makefile.inc b/sys/lib/libz/Makefile.inc index e7e9ff05b37..574d8464f55 100644 --- a/sys/lib/libz/Makefile.inc +++ b/sys/lib/libz/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.3 1997/04/03 13:01:40 briggs Exp $ +# $OpenBSD: Makefile.inc,v 1.4 1997/05/04 23:35:33 millert Exp $ # $NetBSD: Makefile.inc,v 1.2 1997/01/23 22:29:09 cgd Exp $ # # Configuration variables (default values are below): @@ -52,7 +52,7 @@ ${ZLIB_PROF}: .NOTMAIN __always_make_zlib @${ZMAKE} libz.po .endif -clean:: .NOTMAIN cleanzlib +clean: .NOTMAIN cleanzlib cleanzlib: .NOTMAIN __always_make_zlib @echo cleaning the z library objects @${ZMAKE} clean @@ -62,7 +62,7 @@ cleandirzlib: .NOTMAIN __always_make_zlib @echo cleandiring the z library objects @${ZMAKE} cleandir -depend:: .NOTMAIN dependzlib +depend: .NOTMAIN dependzlib dependzlib: .NOTMAIN __always_make_zlib @echo depending the z library objects @${ZMAKE} depend |