In kernel lib build, print message when things not only start bug also end.
This commit is contained in:
parent
c009404037
commit
dd204a345e
|
@ -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):
|
||||
#
|
||||
|
@ -33,21 +33,25 @@ RISCOSMAKE= \
|
|||
${RISCOSLIB}: .NOTMAIN .MAKE __always_make_riscoslib
|
||||
@echo making sure the riscos library is up to date...
|
||||
@${RISCOSMAKE} libriscos.a
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleanriscoslib
|
||||
cleanriscoslib: .NOTMAIN
|
||||
@echo cleaning the riscos library objects
|
||||
@if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} clean; fi
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandirriscoslib
|
||||
cleandirriscoslib: .NOTMAIN
|
||||
@echo cleandiring the riscos library objects
|
||||
@if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} cleandir; fi
|
||||
@echo done
|
||||
|
||||
depend: .NOTMAIN dependriscoslib
|
||||
dependriscoslib: .NOTMAIN .MAKE __always_make_riscoslib
|
||||
@echo depending the riscos library objects
|
||||
@${RISCOSMAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_riscoslib: .NOTMAIN
|
||||
@mkdir -p ${RISCOSDST}
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -33,21 +33,25 @@ RISCOSMAKE= \
|
|||
${RISCOSLIB}: .NOTMAIN .MAKE __always_make_riscoslib
|
||||
@echo making sure the riscos library is up to date...
|
||||
@${RISCOSMAKE} libriscos.a
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleanriscoslib
|
||||
cleanriscoslib: .NOTMAIN
|
||||
@echo cleaning the riscos library objects
|
||||
@if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} clean; fi
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandirriscoslib
|
||||
cleandirriscoslib: .NOTMAIN
|
||||
@echo cleandiring the riscos library objects
|
||||
@if [ -d "${RISCOSDST}" ]; then ${RISCOSMAKE} cleandir; fi
|
||||
@echo done
|
||||
|
||||
depend: .NOTMAIN dependriscoslib
|
||||
dependriscoslib: .NOTMAIN .MAKE __always_make_riscoslib
|
||||
@echo depending the riscos library objects
|
||||
@${RISCOSMAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_riscoslib: .NOTMAIN
|
||||
@mkdir -p ${RISCOSDST}
|
||||
|
|
|
@ -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 $
|
||||
#
|
||||
|
@ -26,20 +26,24 @@ SPMATHMAKE= \
|
|||
${SPMATH}: .NOTMAIN .MAKE __always_make_spmath
|
||||
@echo making sure the spmath library is up to date...
|
||||
@${SPMATHMAKE} spmath.o
|
||||
@echo done
|
||||
|
||||
${SPMATH_PROF}: .NOTMAIN .MAKE __always_make_spmath
|
||||
@echo making sure the profiled spmath library is up to date...
|
||||
@${SPMATHMAKE} spmath.po
|
||||
@echo done
|
||||
|
||||
__CLEANSPMATH: .NOTMAIN .MAKE __always_make_spmath
|
||||
@echo cleaning the spmath library objects
|
||||
@${SPMATHMAKE} clean
|
||||
@echo done
|
||||
|
||||
clean: __CLEANSPMATH
|
||||
|
||||
__DEPENDSPMATH: .NOTMAIN .MAKE __always_make_spmath assym.h
|
||||
@echo depending the spmath library objects
|
||||
@${SPMATHMAKE} depend
|
||||
@echo done
|
||||
|
||||
depend: __DEPENDSPMATH
|
||||
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -35,21 +35,25 @@ I386MAKE= \
|
|||
${I386LIB}: .NOTMAIN __always_make_i386lib
|
||||
@echo making sure the i386 library is up to date...
|
||||
@${I386MAKE} libi386.a
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleani386lib
|
||||
cleani386lib: .NOTMAIN
|
||||
@echo cleaning the i386 library objects
|
||||
@if [ -d "${I386DST}" ]; then ${I386MAKE} clean; fi
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandiri386lib
|
||||
cleandiri386lib: .NOTMAIN
|
||||
@echo cleandiring the i386 library objects
|
||||
@if [ -d "${I386DST}" ]; then ${I386MAKE} cleandir; fi
|
||||
@echo done
|
||||
|
||||
dependall depend: .NOTMAIN dependi386lib
|
||||
dependi386lib: .NOTMAIN __always_make_i386lib
|
||||
@echo depending the i386 library objects
|
||||
@${I386MAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_i386lib: .NOTMAIN
|
||||
@mkdir -p ${I386DST}
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -33,22 +33,26 @@ EFIMAKE= \
|
|||
${EFILIB}: .NOTMAIN __always_make_efilib
|
||||
@echo making sure the efi library is up to date...
|
||||
@${EFIMAKE} libefi.a
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleanefilib
|
||||
cleanefilib: .NOTMAIN
|
||||
@echo cleaning the efi library objects
|
||||
@if [ -d "${EFIDST}" ]; then ${EFIMAKE} clean; fi
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandirefilib
|
||||
cleandirefilib: .NOTMAIN
|
||||
@echo cleandiring the efi library objects
|
||||
@if [ -d "${EFIDST}" ]; then ${EFIMAKE} cleandir; fi
|
||||
-rm -rf efi
|
||||
@echo done
|
||||
|
||||
dependall depend: .NOTMAIN dependefilib
|
||||
dependefilib: .NOTMAIN __always_make_efilib
|
||||
@echo depending the efi library objects
|
||||
@${EFIMAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_efilib: .NOTMAIN
|
||||
@mkdir -p ${EFIDST}
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -44,15 +44,18 @@ FPSPMAKE= \
|
|||
${FPSP}: .NOTMAIN __always_make_fpsp
|
||||
@echo making sure the 68040 FPSP is up to date...
|
||||
@${FPSPMAKE} fpsp.o
|
||||
@echo done
|
||||
|
||||
${FPSPLIB_PROF}: .NOTMAIN __always_make_fpsp
|
||||
@echo making sure the profiled 68040 FPSP is up to date...
|
||||
@${FPSPMAKE} fpsp.po
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleanfpsp
|
||||
cleanfpsp: .NOTMAIN __always_make_fpsp
|
||||
@echo cleaning the 68040 FPSP objects
|
||||
@${FPSPMAKE} clean
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandirfpsp
|
||||
cleandirfpsp: .NOTMAIN __always_make_fpsp
|
||||
|
@ -62,11 +65,13 @@ cleandirfpsp: .NOTMAIN __always_make_fpsp
|
|||
# would tend to violate the principle of least surprise!
|
||||
@echo cleandiring the 68040 FPSP objects
|
||||
@${FPSPMAKE} clean
|
||||
@echo done
|
||||
|
||||
#depend: .NOTMAIN dependfpsp
|
||||
#dependfpsp: .NOTMAIN __always_make_fpsp
|
||||
# @echo depending the 68040 FPSP objects
|
||||
# @${FPSPMAKE} depend
|
||||
# @echo done
|
||||
#
|
||||
|
||||
__always_make_fpsp: .NOTMAIN
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -55,6 +55,7 @@ ${COMPATLIB}: .NOTMAIN .MAKE __always_make_compatlib
|
|||
.else
|
||||
@${COMPATMAKE} libcompat.o
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
${COMPATLIB_PROF}: .NOTMAIN .MAKE __always_make_compatlib
|
||||
@echo making sure the profiled compat library is up to date...
|
||||
|
@ -63,25 +64,30 @@ ${COMPATLIB_PROF}: .NOTMAIN .MAKE __always_make_compatlib
|
|||
.else
|
||||
@${COMPATMAKE} libcompat.po
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
${COMPATLIBLN}: .NOTMAIN .MAKE __always_make_compatlib
|
||||
@echo making sure the compat lint library is up to date...
|
||||
@${COMPATMAKE} ${LIBCOMPATLNBN}
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleancompatlib
|
||||
cleancompatlib: .NOTMAIN .MAKE __always_make_compatlib
|
||||
@echo cleaning the compat library objects
|
||||
@${COMPATMAKE} clean
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandircompatlib
|
||||
cleandircompatlib: .NOTMAIN .MAKE __always_make_compatlib
|
||||
@echo cleandiring the compat library objects
|
||||
@${COMPATMAKE} cleandir
|
||||
@echo done
|
||||
|
||||
depend: .NOTMAIN dependcompatlib
|
||||
dependcompatlib: .NOTMAIN .MAKE __always_make_compatlib
|
||||
@echo depending the compat library objects
|
||||
@${COMPATMAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_compatlib: .NOTMAIN
|
||||
@mkdir -p ${COMPATDST}
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -56,6 +56,7 @@ ${GNUEFILIB}: .NOTMAIN .MAKE __always_make_gnuefilib
|
|||
.else
|
||||
@${GNUEFIMAKE} libgnuefi.o
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
${GNUEFILIB_PROF}: .NOTMAIN .MAKE __always_make_gnuefilib
|
||||
@echo making sure the profiled gnuefi library is up to date...
|
||||
|
@ -64,21 +65,25 @@ ${GNUEFILIB_PROF}: .NOTMAIN .MAKE __always_make_gnuefilib
|
|||
.else
|
||||
@${GNUEFIMAKE} libgnuefi.po
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleangnuefilib
|
||||
cleangnuefilib: .NOTMAIN
|
||||
@echo cleaning the gnuefi library objects
|
||||
@if [ -d "${GNUEFIDST}" ]; then ${GNUEFIMAKE} clean; fi
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandirgnuefilib
|
||||
cleandirgnuefilib: .NOTMAIN
|
||||
@echo cleandiring the gnuefi library objects
|
||||
@if [ -d "${GNUEFIDST}" ]; then ${GNUEFIMAKE} cleandir; fi
|
||||
@echo done
|
||||
|
||||
dependall depend: .NOTMAIN dependgnuefilib
|
||||
dependgnuefilib: .NOTMAIN .MAKE __always_make_gnuefilib
|
||||
@echo depending the gnuefi library objects
|
||||
@${GNUEFIMAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_gnuefilib: .NOTMAIN
|
||||
@mkdir -p ${GNUEFIDST}
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -58,6 +58,7 @@ ${KERNLIB}: .NOTMAIN .MAKE __always_make_kernlib
|
|||
.else
|
||||
@${KERNMAKE} libkern.o
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
${KERNLIB_PROF}: .NOTMAIN .MAKE __always_make_kernlib
|
||||
@echo making sure the profiled kern library is up to date...
|
||||
|
@ -66,25 +67,30 @@ ${KERNLIB_PROF}: .NOTMAIN .MAKE __always_make_kernlib
|
|||
.else
|
||||
@${KERNMAKE} libkern.po
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
${KERNLIBLN}: .NOTMAIN .MAKE __always_make_kernlib
|
||||
@echo making sure the kern lint library is up to date...
|
||||
@${KERNMAKE} ${LIBKERNLNBN}
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleankernlib
|
||||
cleankernlib: .NOTMAIN
|
||||
@echo cleaning the kern library objects
|
||||
@if [ -d "${KERNDST}" ]; then ${KERNMAKE} clean; fi
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandirkernlib
|
||||
cleandirkernlib: .NOTMAIN
|
||||
@echo cleandiring the kern library objects
|
||||
@if [ -d "${KERNDST}" ]; then ${KERNMAKE} cleandir; fi
|
||||
@echo done
|
||||
|
||||
dependall depend: .NOTMAIN dependkernlib
|
||||
dependkernlib: .NOTMAIN .MAKE __always_make_kernlib
|
||||
@echo depending the kern library objects
|
||||
@${KERNMAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_kernlib: .NOTMAIN
|
||||
@(mkdir -p ${KERNDST})
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -56,6 +56,7 @@ ${SALIB}: .NOTMAIN .MAKE __always_make_salib
|
|||
.else
|
||||
@${SAMAKE} libsa.o
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
${SALIB_PROF}: .NOTMAIN .MAKE __always_make_salib
|
||||
@echo making sure the profiled sa library is up to date...
|
||||
|
@ -64,21 +65,25 @@ ${SALIB_PROF}: .NOTMAIN .MAKE __always_make_salib
|
|||
.else
|
||||
@${SAMAKE} libsa.po
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleansalib
|
||||
cleansalib: .NOTMAIN
|
||||
@echo cleaning the sa library objects
|
||||
@if [ -d "${SADST}" ]; then ${SAMAKE} clean; fi
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandirsalib
|
||||
cleandirsalib: .NOTMAIN
|
||||
@echo cleandiring the sa library objects
|
||||
@if [ -d "${SADST}" ]; then ${SAMAKE} cleandir; fi
|
||||
@echo done
|
||||
|
||||
dependall depend: .NOTMAIN dependsalib
|
||||
dependsalib: .NOTMAIN .MAKE __always_make_salib
|
||||
@echo depending the sa library objects
|
||||
@${SAMAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_salib: .NOTMAIN
|
||||
@mkdir -p ${SADST}
|
||||
|
|
|
@ -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):
|
||||
#
|
||||
|
@ -52,6 +52,7 @@ ${ZLIB}: .NOTMAIN .MAKE __always_make_zlib
|
|||
.else
|
||||
@${ZMAKE} libz.o
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
${ZLIB_PROF}: .NOTMAIN .MAKE __always_make_zlib
|
||||
@echo making sure the profiled z library is up to date...
|
||||
|
@ -60,21 +61,25 @@ ${ZLIB_PROF}: .NOTMAIN .MAKE __always_make_zlib
|
|||
.else
|
||||
@${ZMAKE} libz.po
|
||||
.endif
|
||||
@echo done
|
||||
|
||||
clean: .NOTMAIN cleanzlib
|
||||
cleanzlib: .NOTMAIN
|
||||
@echo cleaning the z library objects
|
||||
@if [ -d "${ZDST}" ]; then ${ZMAKE} clean; fi
|
||||
@echo done
|
||||
|
||||
cleandir distclean: .NOTMAIN cleandirzlib
|
||||
cleandirzlib: .NOTMAIN
|
||||
@echo cleandiring the z library objects
|
||||
@if [ -d "${ZDST}" ]; then ${ZMAKE} cleandir; fi
|
||||
@echo done
|
||||
|
||||
dependall depend: .NOTMAIN dependzlib
|
||||
dependzlib: .NOTMAIN .MAKE __always_make_zlib
|
||||
@echo depending the z library objects
|
||||
@${ZMAKE} depend
|
||||
@echo done
|
||||
|
||||
__always_make_zlib: .NOTMAIN
|
||||
@mkdir -p ${ZDST}
|
||||
|
|
Loading…
Reference in New Issue