Stop ordering dependencies alphabetically.

This commit is contained in:
uebayasi 2014-11-15 12:56:28 +00:00
parent 104daad189
commit 2bdcfe8a70

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.kern.inc,v 1.182 2014/11/15 08:20:42 uebayasi Exp $ # $NetBSD: Makefile.kern.inc,v 1.183 2014/11/15 12:56:28 uebayasi Exp $
# #
# This file contains common `MI' targets and definitions and it is included # This file contains common `MI' targets and definitions and it is included
# at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}. # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@ -228,7 +228,7 @@ SYSTEM_OBJ?= ${MD_OBJS} ${MI_OBJS} ${OBJS} ${SYSLIBCOMPAT} ${LIBKERN}
.else .else
SYSTEM_OBJ?= ${MD_OBJS} ${MI_OBJS} ${OBJS:O} ${SYSLIBCOMPAT} ${LIBKERN} SYSTEM_OBJ?= ${MD_OBJS} ${MI_OBJS} ${OBJS:O} ${SYSLIBCOMPAT} ${LIBKERN}
.endif .endif
SYSTEM_DEP+= Makefile ${SYSTEM_OBJ:O} .gdbinit SYSTEM_DEP+= Makefile ${SYSTEM_OBJ} .gdbinit
.if defined(KERNLDSCRIPT) .if defined(KERNLDSCRIPT)
SYSTEM_DEP+= ${KERNLDSCRIPT} SYSTEM_DEP+= ${KERNLDSCRIPT}
.endif .endif
@ -377,7 +377,7 @@ MKDEP_CFLAGS?= ${CFLAGS}
SSRCS=${MD_SFILES} ${SFILES} SSRCS=${MD_SFILES} ${SFILES}
CSRCS=${MD_CFILES} ${MI_CFILES} ${CFILES} CSRCS=${MD_CFILES} ${MI_CFILES} ${CFILES}
SRCS=${SSRCS} ${CSRCS} SRCS=${SSRCS} ${CSRCS}
DEPS= ${SRCS:T:O:u:R:S/$/.d/g} DEPS= ${SRCS:T:u:R:S/$/.d/g}
.for _s in ${SSRCS} .for _s in ${SSRCS}
.if !target(${_s:T:R}.d) .if !target(${_s:T:R}.d)