In kernel lib build, print message when things not only start bug also end.

This commit is contained in:
uebayasi 2015-09-06 15:34:55 +00:00
parent c009404037
commit dd204a345e
11 changed files with 63 additions and 11 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.2 2002/05/05 10:02:17 bjh21 Exp $ # $NetBSD: Makefile.inc,v 1.3 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -33,21 +33,25 @@ RISCOSMAKE= \
${RISCOSLIB}: .NOTMAIN .MAKE __always_make_riscoslib ${RISCOSLIB}: .NOTMAIN .MAKE __always_make_riscoslib
@echo making sure the riscos library is up to date... @echo making sure the riscos library is up to date...
@${RISCOSMAKE} libriscos.a @${RISCOSMAKE} libriscos.a
@echo done
clean: .NOTMAIN cleanriscoslib clean: .NOTMAIN cleanriscoslib
cleanriscoslib: .NOTMAIN cleanriscoslib: .NOTMAIN
@echo cleaning the riscos library objects @echo cleaning the riscos library objects
@if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} clean; fi @if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} clean; fi
@echo done
cleandir distclean: .NOTMAIN cleandirriscoslib cleandir distclean: .NOTMAIN cleandirriscoslib
cleandirriscoslib: .NOTMAIN cleandirriscoslib: .NOTMAIN
@echo cleandiring the riscos library objects @echo cleandiring the riscos library objects
@if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} cleandir; fi @if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} cleandir; fi
@echo done
depend: .NOTMAIN dependriscoslib depend: .NOTMAIN dependriscoslib
dependriscoslib: .NOTMAIN .MAKE __always_make_riscoslib dependriscoslib: .NOTMAIN .MAKE __always_make_riscoslib
@echo depending the riscos library objects @echo depending the riscos library objects
@${RISCOSMAKE} depend @${RISCOSMAKE} depend
@echo done
__always_make_riscoslib: .NOTMAIN __always_make_riscoslib: .NOTMAIN
@mkdir -p ${RISCOSDST} @mkdir -p ${RISCOSDST}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.1 2002/12/28 23:57:38 reinoud Exp $ # $NetBSD: Makefile.inc,v 1.2 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -33,21 +33,25 @@ RISCOSMAKE= \
${RISCOSLIB}: .NOTMAIN .MAKE __always_make_riscoslib ${RISCOSLIB}: .NOTMAIN .MAKE __always_make_riscoslib
@echo making sure the riscos library is up to date... @echo making sure the riscos library is up to date...
@${RISCOSMAKE} libriscos.a @${RISCOSMAKE} libriscos.a
@echo done
clean: .NOTMAIN cleanriscoslib clean: .NOTMAIN cleanriscoslib
cleanriscoslib: .NOTMAIN cleanriscoslib: .NOTMAIN
@echo cleaning the riscos library objects @echo cleaning the riscos library objects
@if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} clean; fi @if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} clean; fi
@echo done
cleandir distclean: .NOTMAIN cleandirriscoslib cleandir distclean: .NOTMAIN cleandirriscoslib
cleandirriscoslib: .NOTMAIN cleandirriscoslib: .NOTMAIN
@echo cleandiring the riscos library objects @echo cleandiring the riscos library objects
@if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} cleandir; fi @if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} cleandir; fi
@echo done
depend: .NOTMAIN dependriscoslib depend: .NOTMAIN dependriscoslib
dependriscoslib: .NOTMAIN .MAKE __always_make_riscoslib dependriscoslib: .NOTMAIN .MAKE __always_make_riscoslib
@echo depending the riscos library objects @echo depending the riscos library objects
@${RISCOSMAKE} depend @${RISCOSMAKE} depend
@echo done
__always_make_riscoslib: .NOTMAIN __always_make_riscoslib: .NOTMAIN
@mkdir -p ${RISCOSDST} @mkdir -p ${RISCOSDST}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.6 2015/09/06 02:22:50 uebayasi Exp $ # $NetBSD: Makefile.inc,v 1.7 2015/09/06 15:34:55 uebayasi Exp $
# $OpenBSD: Makefile.inc,v 1.4 2001/03/29 03:58:17 mickey Exp $ # $OpenBSD: Makefile.inc,v 1.4 2001/03/29 03:58:17 mickey Exp $
# #
@ -26,20 +26,24 @@ SPMATHMAKE= \
${SPMATH}: .NOTMAIN .MAKE __always_make_spmath ${SPMATH}: .NOTMAIN .MAKE __always_make_spmath
@echo making sure the spmath library is up to date... @echo making sure the spmath library is up to date...
@${SPMATHMAKE} spmath.o @${SPMATHMAKE} spmath.o
@echo done
${SPMATH_PROF}: .NOTMAIN .MAKE __always_make_spmath ${SPMATH_PROF}: .NOTMAIN .MAKE __always_make_spmath
@echo making sure the profiled spmath library is up to date... @echo making sure the profiled spmath library is up to date...
@${SPMATHMAKE} spmath.po @${SPMATHMAKE} spmath.po
@echo done
__CLEANSPMATH: .NOTMAIN .MAKE __always_make_spmath __CLEANSPMATH: .NOTMAIN .MAKE __always_make_spmath
@echo cleaning the spmath library objects @echo cleaning the spmath library objects
@${SPMATHMAKE} clean @${SPMATHMAKE} clean
@echo done
clean: __CLEANSPMATH clean: __CLEANSPMATH
__DEPENDSPMATH: .NOTMAIN .MAKE __always_make_spmath assym.h __DEPENDSPMATH: .NOTMAIN .MAKE __always_make_spmath assym.h
@echo depending the spmath library objects @echo depending the spmath library objects
@${SPMATHMAKE} depend @${SPMATHMAKE} depend
@echo done
depend: __DEPENDSPMATH depend: __DEPENDSPMATH

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.14 2011/05/26 12:56:30 joerg Exp $ # $NetBSD: Makefile.inc,v 1.15 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -35,21 +35,25 @@ I386MAKE= \
${I386LIB}: .NOTMAIN __always_make_i386lib ${I386LIB}: .NOTMAIN __always_make_i386lib
@echo making sure the i386 library is up to date... @echo making sure the i386 library is up to date...
@${I386MAKE} libi386.a @${I386MAKE} libi386.a
@echo done
clean: .NOTMAIN cleani386lib clean: .NOTMAIN cleani386lib
cleani386lib: .NOTMAIN cleani386lib: .NOTMAIN
@echo cleaning the i386 library objects @echo cleaning the i386 library objects
@if [ -d "${I386DST}" ]; then ${I386MAKE} clean; fi @if [ -d "${I386DST}" ]; then ${I386MAKE} clean; fi
@echo done
cleandir distclean: .NOTMAIN cleandiri386lib cleandir distclean: .NOTMAIN cleandiri386lib
cleandiri386lib: .NOTMAIN cleandiri386lib: .NOTMAIN
@echo cleandiring the i386 library objects @echo cleandiring the i386 library objects
@if [ -d "${I386DST}" ]; then ${I386MAKE} cleandir; fi @if [ -d "${I386DST}" ]; then ${I386MAKE} cleandir; fi
@echo done
dependall depend: .NOTMAIN dependi386lib dependall depend: .NOTMAIN dependi386lib
dependi386lib: .NOTMAIN __always_make_i386lib dependi386lib: .NOTMAIN __always_make_i386lib
@echo depending the i386 library objects @echo depending the i386 library objects
@${I386MAKE} depend @${I386MAKE} depend
@echo done
__always_make_i386lib: .NOTMAIN __always_make_i386lib: .NOTMAIN
@mkdir -p ${I386DST} @mkdir -p ${I386DST}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.2 2009/07/20 04:59:03 kiyohara Exp $ # $NetBSD: Makefile.inc,v 1.3 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -33,22 +33,26 @@ EFIMAKE= \
${EFILIB}: .NOTMAIN __always_make_efilib ${EFILIB}: .NOTMAIN __always_make_efilib
@echo making sure the efi library is up to date... @echo making sure the efi library is up to date...
@${EFIMAKE} libefi.a @${EFIMAKE} libefi.a
@echo done
clean: .NOTMAIN cleanefilib clean: .NOTMAIN cleanefilib
cleanefilib: .NOTMAIN cleanefilib: .NOTMAIN
@echo cleaning the efi library objects @echo cleaning the efi library objects
@if [ -d "${EFIDST}" ]; then ${EFIMAKE} clean; fi @if [ -d "${EFIDST}" ]; then ${EFIMAKE} clean; fi
@echo done
cleandir distclean: .NOTMAIN cleandirefilib cleandir distclean: .NOTMAIN cleandirefilib
cleandirefilib: .NOTMAIN cleandirefilib: .NOTMAIN
@echo cleandiring the efi library objects @echo cleandiring the efi library objects
@if [ -d "${EFIDST}" ]; then ${EFIMAKE} cleandir; fi @if [ -d "${EFIDST}" ]; then ${EFIMAKE} cleandir; fi
-rm -rf efi -rm -rf efi
@echo done
dependall depend: .NOTMAIN dependefilib dependall depend: .NOTMAIN dependefilib
dependefilib: .NOTMAIN __always_make_efilib dependefilib: .NOTMAIN __always_make_efilib
@echo depending the efi library objects @echo depending the efi library objects
@${EFIMAKE} depend @${EFIMAKE} depend
@echo done
__always_make_efilib: .NOTMAIN __always_make_efilib: .NOTMAIN
@mkdir -p ${EFIDST} @mkdir -p ${EFIDST}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.18 2015/09/06 02:17:30 uebayasi Exp $ # $NetBSD: Makefile.inc,v 1.19 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -44,15 +44,18 @@ FPSPMAKE= \
${FPSP}: .NOTMAIN __always_make_fpsp ${FPSP}: .NOTMAIN __always_make_fpsp
@echo making sure the 68040 FPSP is up to date... @echo making sure the 68040 FPSP is up to date...
@${FPSPMAKE} fpsp.o @${FPSPMAKE} fpsp.o
@echo done
${FPSPLIB_PROF}: .NOTMAIN __always_make_fpsp ${FPSPLIB_PROF}: .NOTMAIN __always_make_fpsp
@echo making sure the profiled 68040 FPSP is up to date... @echo making sure the profiled 68040 FPSP is up to date...
@${FPSPMAKE} fpsp.po @${FPSPMAKE} fpsp.po
@echo done
clean: .NOTMAIN cleanfpsp clean: .NOTMAIN cleanfpsp
cleanfpsp: .NOTMAIN __always_make_fpsp cleanfpsp: .NOTMAIN __always_make_fpsp
@echo cleaning the 68040 FPSP objects @echo cleaning the 68040 FPSP objects
@${FPSPMAKE} clean @${FPSPMAKE} clean
@echo done
cleandir distclean: .NOTMAIN cleandirfpsp cleandir distclean: .NOTMAIN cleandirfpsp
cleandirfpsp: .NOTMAIN __always_make_fpsp cleandirfpsp: .NOTMAIN __always_make_fpsp
@ -62,11 +65,13 @@ cleandirfpsp: .NOTMAIN __always_make_fpsp
# would tend to violate the principle of least surprise! # would tend to violate the principle of least surprise!
@echo cleandiring the 68040 FPSP objects @echo cleandiring the 68040 FPSP objects
@${FPSPMAKE} clean @${FPSPMAKE} clean
@echo done
#depend: .NOTMAIN dependfpsp #depend: .NOTMAIN dependfpsp
#dependfpsp: .NOTMAIN __always_make_fpsp #dependfpsp: .NOTMAIN __always_make_fpsp
# @echo depending the 68040 FPSP objects # @echo depending the 68040 FPSP objects
# @${FPSPMAKE} depend # @${FPSPMAKE} depend
# @echo done
# #
__always_make_fpsp: .NOTMAIN __always_make_fpsp: .NOTMAIN

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.20 2009/12/14 00:47:10 matt Exp $ # $NetBSD: Makefile.inc,v 1.21 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -55,6 +55,7 @@ ${COMPATLIB}: .NOTMAIN .MAKE __always_make_compatlib
.else .else
@${COMPATMAKE} libcompat.o @${COMPATMAKE} libcompat.o
.endif .endif
@echo done
${COMPATLIB_PROF}: .NOTMAIN .MAKE __always_make_compatlib ${COMPATLIB_PROF}: .NOTMAIN .MAKE __always_make_compatlib
@echo making sure the profiled compat library is up to date... @echo making sure the profiled compat library is up to date...
@ -63,25 +64,30 @@ ${COMPATLIB_PROF}: .NOTMAIN .MAKE __always_make_compatlib
.else .else
@${COMPATMAKE} libcompat.po @${COMPATMAKE} libcompat.po
.endif .endif
@echo done
${COMPATLIBLN}: .NOTMAIN .MAKE __always_make_compatlib ${COMPATLIBLN}: .NOTMAIN .MAKE __always_make_compatlib
@echo making sure the compat lint library is up to date... @echo making sure the compat lint library is up to date...
@${COMPATMAKE} ${LIBCOMPATLNBN} @${COMPATMAKE} ${LIBCOMPATLNBN}
@echo done
clean: .NOTMAIN cleancompatlib clean: .NOTMAIN cleancompatlib
cleancompatlib: .NOTMAIN .MAKE __always_make_compatlib cleancompatlib: .NOTMAIN .MAKE __always_make_compatlib
@echo cleaning the compat library objects @echo cleaning the compat library objects
@${COMPATMAKE} clean @${COMPATMAKE} clean
@echo done
cleandir distclean: .NOTMAIN cleandircompatlib cleandir distclean: .NOTMAIN cleandircompatlib
cleandircompatlib: .NOTMAIN .MAKE __always_make_compatlib cleandircompatlib: .NOTMAIN .MAKE __always_make_compatlib
@echo cleandiring the compat library objects @echo cleandiring the compat library objects
@${COMPATMAKE} cleandir @${COMPATMAKE} cleandir
@echo done
depend: .NOTMAIN dependcompatlib depend: .NOTMAIN dependcompatlib
dependcompatlib: .NOTMAIN .MAKE __always_make_compatlib dependcompatlib: .NOTMAIN .MAKE __always_make_compatlib
@echo depending the compat library objects @echo depending the compat library objects
@${COMPATMAKE} depend @${COMPATMAKE} depend
@echo done
__always_make_compatlib: .NOTMAIN __always_make_compatlib: .NOTMAIN
@mkdir -p ${COMPATDST} @mkdir -p ${COMPATDST}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.1 2014/04/28 19:09:29 jakllsch Exp $ # $NetBSD: Makefile.inc,v 1.2 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -56,6 +56,7 @@ ${GNUEFILIB}: .NOTMAIN .MAKE __always_make_gnuefilib
.else .else
@${GNUEFIMAKE} libgnuefi.o @${GNUEFIMAKE} libgnuefi.o
.endif .endif
@echo done
${GNUEFILIB_PROF}: .NOTMAIN .MAKE __always_make_gnuefilib ${GNUEFILIB_PROF}: .NOTMAIN .MAKE __always_make_gnuefilib
@echo making sure the profiled gnuefi library is up to date... @echo making sure the profiled gnuefi library is up to date...
@ -64,21 +65,25 @@ ${GNUEFILIB_PROF}: .NOTMAIN .MAKE __always_make_gnuefilib
.else .else
@${GNUEFIMAKE} libgnuefi.po @${GNUEFIMAKE} libgnuefi.po
.endif .endif
@echo done
clean: .NOTMAIN cleangnuefilib clean: .NOTMAIN cleangnuefilib
cleangnuefilib: .NOTMAIN cleangnuefilib: .NOTMAIN
@echo cleaning the gnuefi library objects @echo cleaning the gnuefi library objects
@if [ -d "${GNUEFIDST}" ]; then ${GNUEFIMAKE} clean; fi @if [ -d "${GNUEFIDST}" ]; then ${GNUEFIMAKE} clean; fi
@echo done
cleandir distclean: .NOTMAIN cleandirgnuefilib cleandir distclean: .NOTMAIN cleandirgnuefilib
cleandirgnuefilib: .NOTMAIN cleandirgnuefilib: .NOTMAIN
@echo cleandiring the gnuefi library objects @echo cleandiring the gnuefi library objects
@if [ -d "${GNUEFIDST}" ]; then ${GNUEFIMAKE} cleandir; fi @if [ -d "${GNUEFIDST}" ]; then ${GNUEFIMAKE} cleandir; fi
@echo done
dependall depend: .NOTMAIN dependgnuefilib dependall depend: .NOTMAIN dependgnuefilib
dependgnuefilib: .NOTMAIN .MAKE __always_make_gnuefilib dependgnuefilib: .NOTMAIN .MAKE __always_make_gnuefilib
@echo depending the gnuefi library objects @echo depending the gnuefi library objects
@${GNUEFIMAKE} depend @${GNUEFIMAKE} depend
@echo done
__always_make_gnuefilib: .NOTMAIN __always_make_gnuefilib: .NOTMAIN
@mkdir -p ${GNUEFIDST} @mkdir -p ${GNUEFIDST}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.42 2012/12/12 15:10:27 matt Exp $ # $NetBSD: Makefile.inc,v 1.43 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -58,6 +58,7 @@ ${KERNLIB}: .NOTMAIN .MAKE __always_make_kernlib
.else .else
@${KERNMAKE} libkern.o @${KERNMAKE} libkern.o
.endif .endif
@echo done
${KERNLIB_PROF}: .NOTMAIN .MAKE __always_make_kernlib ${KERNLIB_PROF}: .NOTMAIN .MAKE __always_make_kernlib
@echo making sure the profiled kern library is up to date... @echo making sure the profiled kern library is up to date...
@ -66,25 +67,30 @@ ${KERNLIB_PROF}: .NOTMAIN .MAKE __always_make_kernlib
.else .else
@${KERNMAKE} libkern.po @${KERNMAKE} libkern.po
.endif .endif
@echo done
${KERNLIBLN}: .NOTMAIN .MAKE __always_make_kernlib ${KERNLIBLN}: .NOTMAIN .MAKE __always_make_kernlib
@echo making sure the kern lint library is up to date... @echo making sure the kern lint library is up to date...
@${KERNMAKE} ${LIBKERNLNBN} @${KERNMAKE} ${LIBKERNLNBN}
@echo done
clean: .NOTMAIN cleankernlib clean: .NOTMAIN cleankernlib
cleankernlib: .NOTMAIN cleankernlib: .NOTMAIN
@echo cleaning the kern library objects @echo cleaning the kern library objects
@if [ -d "${KERNDST}" ]; then ${KERNMAKE} clean; fi @if [ -d "${KERNDST}" ]; then ${KERNMAKE} clean; fi
@echo done
cleandir distclean: .NOTMAIN cleandirkernlib cleandir distclean: .NOTMAIN cleandirkernlib
cleandirkernlib: .NOTMAIN cleandirkernlib: .NOTMAIN
@echo cleandiring the kern library objects @echo cleandiring the kern library objects
@if [ -d "${KERNDST}" ]; then ${KERNMAKE} cleandir; fi @if [ -d "${KERNDST}" ]; then ${KERNMAKE} cleandir; fi
@echo done
dependall depend: .NOTMAIN dependkernlib dependall depend: .NOTMAIN dependkernlib
dependkernlib: .NOTMAIN .MAKE __always_make_kernlib dependkernlib: .NOTMAIN .MAKE __always_make_kernlib
@echo depending the kern library objects @echo depending the kern library objects
@${KERNMAKE} depend @${KERNMAKE} depend
@echo done
__always_make_kernlib: .NOTMAIN __always_make_kernlib: .NOTMAIN
@(mkdir -p ${KERNDST}) @(mkdir -p ${KERNDST})

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.21 2012/12/12 15:12:11 matt Exp $ # $NetBSD: Makefile.inc,v 1.22 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -56,6 +56,7 @@ ${SALIB}: .NOTMAIN .MAKE __always_make_salib
.else .else
@${SAMAKE} libsa.o @${SAMAKE} libsa.o
.endif .endif
@echo done
${SALIB_PROF}: .NOTMAIN .MAKE __always_make_salib ${SALIB_PROF}: .NOTMAIN .MAKE __always_make_salib
@echo making sure the profiled sa library is up to date... @echo making sure the profiled sa library is up to date...
@ -64,21 +65,25 @@ ${SALIB_PROF}: .NOTMAIN .MAKE __always_make_salib
.else .else
@${SAMAKE} libsa.po @${SAMAKE} libsa.po
.endif .endif
@echo done
clean: .NOTMAIN cleansalib clean: .NOTMAIN cleansalib
cleansalib: .NOTMAIN cleansalib: .NOTMAIN
@echo cleaning the sa library objects @echo cleaning the sa library objects
@if [ -d "${SADST}" ]; then ${SAMAKE} clean; fi @if [ -d "${SADST}" ]; then ${SAMAKE} clean; fi
@echo done
cleandir distclean: .NOTMAIN cleandirsalib cleandir distclean: .NOTMAIN cleandirsalib
cleandirsalib: .NOTMAIN cleandirsalib: .NOTMAIN
@echo cleandiring the sa library objects @echo cleandiring the sa library objects
@if [ -d "${SADST}" ]; then ${SAMAKE} cleandir; fi @if [ -d "${SADST}" ]; then ${SAMAKE} cleandir; fi
@echo done
dependall depend: .NOTMAIN dependsalib dependall depend: .NOTMAIN dependsalib
dependsalib: .NOTMAIN .MAKE __always_make_salib dependsalib: .NOTMAIN .MAKE __always_make_salib
@echo depending the sa library objects @echo depending the sa library objects
@${SAMAKE} depend @${SAMAKE} depend
@echo done
__always_make_salib: .NOTMAIN __always_make_salib: .NOTMAIN
@mkdir -p ${SADST} @mkdir -p ${SADST}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.14 2012/12/12 15:12:11 matt Exp $ # $NetBSD: Makefile.inc,v 1.15 2015/09/06 15:34:55 uebayasi Exp $
# #
# Configuration variables (default values are below): # Configuration variables (default values are below):
# #
@ -52,6 +52,7 @@ ${ZLIB}: .NOTMAIN .MAKE __always_make_zlib
.else .else
@${ZMAKE} libz.o @${ZMAKE} libz.o
.endif .endif
@echo done
${ZLIB_PROF}: .NOTMAIN .MAKE __always_make_zlib ${ZLIB_PROF}: .NOTMAIN .MAKE __always_make_zlib
@echo making sure the profiled z library is up to date... @echo making sure the profiled z library is up to date...
@ -60,21 +61,25 @@ ${ZLIB_PROF}: .NOTMAIN .MAKE __always_make_zlib
.else .else
@${ZMAKE} libz.po @${ZMAKE} libz.po
.endif .endif
@echo done
clean: .NOTMAIN cleanzlib clean: .NOTMAIN cleanzlib
cleanzlib: .NOTMAIN cleanzlib: .NOTMAIN
@echo cleaning the z library objects @echo cleaning the z library objects
@if [ -d "${ZDST}" ]; then ${ZMAKE} clean; fi @if [ -d "${ZDST}" ]; then ${ZMAKE} clean; fi
@echo done
cleandir distclean: .NOTMAIN cleandirzlib cleandir distclean: .NOTMAIN cleandirzlib
cleandirzlib: .NOTMAIN cleandirzlib: .NOTMAIN
@echo cleandiring the z library objects @echo cleandiring the z library objects
@if [ -d "${ZDST}" ]; then ${ZMAKE} cleandir; fi @if [ -d "${ZDST}" ]; then ${ZMAKE} cleandir; fi
@echo done
dependall depend: .NOTMAIN dependzlib dependall depend: .NOTMAIN dependzlib
dependzlib: .NOTMAIN .MAKE __always_make_zlib dependzlib: .NOTMAIN .MAKE __always_make_zlib
@echo depending the z library objects @echo depending the z library objects
@${ZMAKE} depend @${ZMAKE} depend
@echo done
__always_make_zlib: .NOTMAIN __always_make_zlib: .NOTMAIN
@mkdir -p ${ZDST} @mkdir -p ${ZDST}