Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/conf NORMAL_C, NOPROF_C, NORMAL_S: put `@' in front of the...



details:   https://anonhg.NetBSD.org/src/rev/94aca06488e9
branches:  trunk
changeset: 555688:94aca06488e9
user:      pk <pk%NetBSD.org@localhost>
date:      Tue Nov 25 08:52:40 2003 +0000

description:
NORMAL_C,NOPROF_C,NORMAL_S: put `@' in front of these to get saner output.
Also we can't use _MKTARGET_COMPILE here. For now, just hard-code the message.

diffstat:

 sys/conf/Makefile.kern.inc |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r 1146f7cf2e86 -r 94aca06488e9 sys/conf/Makefile.kern.inc
--- a/sys/conf/Makefile.kern.inc        Tue Nov 25 07:47:29 2003 +0000
+++ b/sys/conf/Makefile.kern.inc        Tue Nov 25 08:52:40 2003 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.kern.inc,v 1.47 2003/11/25 07:47:29 pk Exp $
+#      $NetBSD: Makefile.kern.inc,v 1.48 2003/11/25 08:52:40 pk Exp $
 #
 # This file contains common `MI' targets and definitions and it is included
 # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -90,15 +90,15 @@
 
 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
 # NOPROF and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
-NORMAL_C?=     ${_MKTARGET_COMPILE}; \
+NORMAL_C?=     @${_MKSHMSG} "compile ${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<; \
                ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
-NOPROF_C?=     ${_MKTARGET_COMPILE}; \
+NOPROF_C?=     @${_MKSHMSG} "compile ${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${CFLAGS} ${CPPFLAGS} -c $<; \
                ${CC} ${CFLAGS} ${CPPFLAGS} -c $<
-NORMAL_S?=     ${_MKTARGET_COMPILE}; \
+NORMAL_S?=     @${_MKSHMSG} "compile ${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${AFLAGS} ${CPPFLAGS} -c $<; \
                ${CC} ${AFLAGS} ${CPPFLAGS} -c $<



Home | Main Index | Thread Index | Old Index