Source-Changes-HG archive

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

[src/trunk]: src/sys/conf More build ordering.



details:   https://anonhg.NetBSD.org/src/rev/8b8f07f9caaf
branches:  trunk
changeset: 340459:8b8f07f9caaf
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Sun Sep 06 15:20:59 2015 +0000

description:
More build ordering.

diffstat:

 sys/conf/Makefile.kern.inc |  6 +++---
 sys/conf/ldscript.mk       |  4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (42 lines):

diff -r d78094238e0c -r 8b8f07f9caaf sys/conf/Makefile.kern.inc
--- a/sys/conf/Makefile.kern.inc        Sun Sep 06 14:35:01 2015 +0000
+++ b/sys/conf/Makefile.kern.inc        Sun Sep 06 15:20:59 2015 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.kern.inc,v 1.242 2015/09/06 14:35:01 uebayasi Exp $
+#      $NetBSD: Makefile.kern.inc,v 1.243 2015/09/06 15:20:59 uebayasi Exp $
 #
 # This file contains common `MI' targets and definitions and it is included
 # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -203,7 +203,7 @@
 
 SYSTEM_LIB=    ${MD_LIBS} ${SYSLIBCOMPAT} ${LIBKERN}
 SYSTEM_OBJ?=   ${_MD_OBJS} ${OBJS} ${SYSTEM_LIB}
-SYSTEM_DEP+=   Makefile ${SYSTEM_OBJ}
+SYSTEM_DEP+=   Makefile ${SYSTEM_OBJ:O}
 .if defined(CTFMERGE)
 SYSTEM_CTFMERGE= ${CTFMERGE} ${CTFMFLAGS} -o ${.TARGET} ${SYSTEM_OBJ} ${EXTRA_OBJ} vers.o
 .else
@@ -381,7 +381,7 @@
 .endfor
 .endif # !___USE_SUFFIX_RULES___
 
-.depend: ${DEPS}
+.depend: ${DEPS:O}
        ${_MKTARGET_CREATE}
        echo "${.ALLSRC}" | ${MKDEP} -D
 .endif
diff -r d78094238e0c -r 8b8f07f9caaf sys/conf/ldscript.mk
--- a/sys/conf/ldscript.mk      Sun Sep 06 14:35:01 2015 +0000
+++ b/sys/conf/ldscript.mk      Sun Sep 06 15:20:59 2015 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: ldscript.mk,v 1.1 2015/09/06 06:41:14 uebayasi Exp $
+# $NetBSD: ldscript.mk,v 1.2 2015/09/06 15:20:59 uebayasi Exp $
 
 # Give MD generated ldscript dependency on ${SYSTEM_OBJ}
 .if defined(KERNLDSCRIPT)
 .if target(${KERNLDSCRIPT})
-${KERNLDSCRIPT}: ${SYSTEM_OBJ}
+${KERNLDSCRIPT}: ${SYSTEM_OBJ:O}
 .endif
 .endif
 



Home | Main Index | Thread Index | Old Index