Source-Changes-HG archive

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

[src/trunk]: src/sys/conf prefix ${.TARGET} with "${.CURDIR:T}/" in various _...



details:   https://anonhg.NetBSD.org/src/rev/965ec15800c6
branches:  trunk
changeset: 555845:965ec15800c6
user:      lukem <lukem%NetBSD.org@localhost>
date:      Mon Dec 01 01:12:58 2003 +0000

description:
prefix ${.TARGET} with "${.CURDIR:T}/" in various _MKSHMSG macros;
per similar change to <bsd.own.mk>

diffstat:

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

diffs (37 lines):

diff -r 3d5e0d318569 -r 965ec15800c6 sys/conf/Makefile.kern.inc
--- a/sys/conf/Makefile.kern.inc        Mon Dec 01 01:11:57 2003 +0000
+++ b/sys/conf/Makefile.kern.inc        Mon Dec 01 01:12:58 2003 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.kern.inc,v 1.49 2003/11/25 09:15:50 pk Exp $
+#      $NetBSD: Makefile.kern.inc,v 1.50 2003/12/01 01:12:58 lukem 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?=     @${_MKSHMSG} "compile ${.TARGET}"; \
+NORMAL_C?=     @${_MKSHMSG} "compile ${.CURDIR:T}/${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<; \
                ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
-NOPROF_C?=     @${_MKSHMSG} "compile ${.TARGET}"; \
+NOPROF_C?=     @${_MKSHMSG} "compile ${.CURDIR:T}/${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${CFLAGS} ${CPPFLAGS} -c $<; \
                ${CC} ${CFLAGS} ${CPPFLAGS} -c $<
-NORMAL_S?=     @${_MKSHMSG} "compile ${.TARGET}"; \
+NORMAL_S?=     @${_MKSHMSG} "compile ${.CURDIR:T}/${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${AFLAGS} ${CPPFLAGS} -c $<; \
                ${CC} ${AFLAGS} ${CPPFLAGS} -c $<
@@ -168,7 +168,7 @@
 SYSTEM_OBJ?=   ${MD_OBJS} ${MI_OBJS} ${OBJS} ${LIBCOMPAT} ${LIBKERN}
 SYSTEM_DEP?=   Makefile ${SYSTEM_OBJ} .gdbinit
 SYSTEM_LD_HEAD?=@rm -f $@
-SYSTEM_LD?=    @${_MKSHMSG} "   link  ${.TARGET}"; \
+SYSTEM_LD?=    @${_MKSHMSG} "   link  ${.CURDIR:T}/${.TARGET}"; \
                ${_MKSHECHO}\
                ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' '$${EXTRA_OBJ}' vers.o; \
                ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} ${EXTRA_OBJ} vers.o



Home | Main Index | Thread Index | Old Index