Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys In kernel lib build, print message when things not only ...
details: https://anonhg.NetBSD.org/src/rev/38fcaf9e1346
branches: trunk
changeset: 340460:38fcaf9e1346
user: uebayasi <uebayasi%NetBSD.org@localhost>
date: Sun Sep 06 15:34:55 2015 +0000
description:
In kernel lib build, print message when things not only start bug also end.
diffstat:
sys/arch/acorn26/stand/lib/Makefile.inc | 6 +++++-
sys/arch/acorn32/stand/lib/Makefile.inc | 6 +++++-
sys/arch/hppa/spmath/Makefile.inc | 6 +++++-
sys/arch/i386/stand/lib/Makefile.inc | 6 +++++-
sys/arch/ia64/stand/efi/libefi/Makefile.inc | 6 +++++-
sys/arch/m68k/fpsp/Makefile.inc | 7 ++++++-
sys/compat/common/Makefile.inc | 8 +++++++-
sys/lib/libgnuefi/Makefile.inc | 7 ++++++-
sys/lib/libkern/Makefile.inc | 8 +++++++-
sys/lib/libsa/Makefile.inc | 7 ++++++-
sys/lib/libz/Makefile.inc | 7 ++++++-
11 files changed, 63 insertions(+), 11 deletions(-)
diffs (truncated from 442 to 300 lines):
diff -r 8b8f07f9caaf -r 38fcaf9e1346 sys/arch/acorn26/stand/lib/Makefile.inc
--- a/sys/arch/acorn26/stand/lib/Makefile.inc Sun Sep 06 15:20:59 2015 +0000
+++ b/sys/arch/acorn26/stand/lib/Makefile.inc Sun Sep 06 15:34:55 2015 +0000
@@ -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 @@
${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}
diff -r 8b8f07f9caaf -r 38fcaf9e1346 sys/arch/acorn32/stand/lib/Makefile.inc
--- a/sys/arch/acorn32/stand/lib/Makefile.inc Sun Sep 06 15:20:59 2015 +0000
+++ b/sys/arch/acorn32/stand/lib/Makefile.inc Sun Sep 06 15:34:55 2015 +0000
@@ -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 @@
${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}
diff -r 8b8f07f9caaf -r 38fcaf9e1346 sys/arch/hppa/spmath/Makefile.inc
--- a/sys/arch/hppa/spmath/Makefile.inc Sun Sep 06 15:20:59 2015 +0000
+++ b/sys/arch/hppa/spmath/Makefile.inc Sun Sep 06 15:34:55 2015 +0000
@@ -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 @@
${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
diff -r 8b8f07f9caaf -r 38fcaf9e1346 sys/arch/i386/stand/lib/Makefile.inc
--- a/sys/arch/i386/stand/lib/Makefile.inc Sun Sep 06 15:20:59 2015 +0000
+++ b/sys/arch/i386/stand/lib/Makefile.inc Sun Sep 06 15:34:55 2015 +0000
@@ -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 @@
${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}
diff -r 8b8f07f9caaf -r 38fcaf9e1346 sys/arch/ia64/stand/efi/libefi/Makefile.inc
--- a/sys/arch/ia64/stand/efi/libefi/Makefile.inc Sun Sep 06 15:20:59 2015 +0000
+++ b/sys/arch/ia64/stand/efi/libefi/Makefile.inc Sun Sep 06 15:34:55 2015 +0000
@@ -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 @@
${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}
diff -r 8b8f07f9caaf -r 38fcaf9e1346 sys/arch/m68k/fpsp/Makefile.inc
--- a/sys/arch/m68k/fpsp/Makefile.inc Sun Sep 06 15:20:59 2015 +0000
+++ b/sys/arch/m68k/fpsp/Makefile.inc Sun Sep 06 15:34:55 2015 +0000
@@ -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 @@
${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 @@
# 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
diff -r 8b8f07f9caaf -r 38fcaf9e1346 sys/compat/common/Makefile.inc
--- a/sys/compat/common/Makefile.inc Sun Sep 06 15:20:59 2015 +0000
+++ b/sys/compat/common/Makefile.inc Sun Sep 06 15:34:55 2015 +0000
@@ -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 @@
.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 @@
.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}
diff -r 8b8f07f9caaf -r 38fcaf9e1346 sys/lib/libgnuefi/Makefile.inc
--- a/sys/lib/libgnuefi/Makefile.inc Sun Sep 06 15:20:59 2015 +0000
+++ b/sys/lib/libgnuefi/Makefile.inc Sun Sep 06 15:34:55 2015 +0000
@@ -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 @@
.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 @@
.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
Home |
Main Index |
Thread Index |
Old Index