a6589ab760
dirdeps.mk and meta.autodep.mk will now look for Makefile.depend.options to handle optional dependencies, the work is all done by dirdeps-options.mk Also update to latest meta.stage.mk and gendirdeps.mk Reviewed by: bdrewery Differential Revision: https://reviews.freebsd.org/D15701
26 lines
570 B
Makefile
26 lines
570 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${.MAKE.DEPENDFILE:M*.${MACHINE}} == ""
|
|
# by default only MACHINE0 does updates
|
|
UPDATE_DEPENDFILE_MACHINE?= ${MACHINE0:U${MACHINE}}
|
|
.if ${MACHINE} != ${UPDATE_DEPENDFILE_MACHINE}
|
|
UPDATE_DEPENDFILE= no
|
|
.endif
|
|
.endif
|
|
|
|
CFLAGS+= ${CFLAGS_LAST}
|
|
CXXFLAGS+= ${CXXFLAGS_LAST}
|
|
LDFLAGS+= ${LDFLAGS_LAST}
|
|
|
|
CLEANFILES+= .depend
|
|
|
|
# handy for debugging
|
|
.SUFFIXES: .S .c .cc .cpp .cpp-out
|
|
|
|
|
|
.S.cpp-out .c.cpp-out: .NOMETA
|
|
@${CC} -E ${CFLAGS} ${.IMPSRC} | grep -v '^[[:space:]]*$$'
|
|
|
|
.cc.cpp-out: .NOMETA
|
|
@${CXX} -E ${CXXFLAGS} ${.IMPSRC} | grep -v '^[[:space:]]*$$'
|