Sync FreeBSD's bmake branch with Juniper's internal bmake branch.
Requested by: Simon Gerraty <sjg@juniper.net>
This commit is contained in:
parent
cf2de346b0
commit
9dd41e3647
23
Makefile
23
Makefile
@ -124,9 +124,9 @@ _MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
|
||||
.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
|
||||
(in make.conf(5)) or command-line variable.
|
||||
.endif
|
||||
MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}
|
||||
MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/${MAKE:T}.${MACHINE}
|
||||
BINMAKE= \
|
||||
`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
|
||||
`if [ -x ${MAKEPATH}/${MAKE:T} ]; then echo ${MAKEPATH}/${MAKE:T}; else echo ${MAKE}; fi` \
|
||||
-m ${.CURDIR}/share/mk
|
||||
_MAKE= PATH=${PATH} ${BINMAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
|
||||
|
||||
@ -216,7 +216,7 @@ ${TGTS}:
|
||||
.MAIN: all
|
||||
|
||||
STARTTIME!= LC_ALL=C date
|
||||
CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s
|
||||
CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s; echo
|
||||
.if !empty(CHECK_TIME)
|
||||
.error check your date/time: ${STARTTIME}
|
||||
.endif
|
||||
@ -284,7 +284,7 @@ upgrade_checks:
|
||||
PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
|
||||
PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
|
||||
then \
|
||||
(cd ${.CURDIR} && ${MAKE} make); \
|
||||
(cd ${.CURDIR} && ${MAKE} ${MAKE:T}); \
|
||||
fi
|
||||
|
||||
#
|
||||
@ -303,9 +303,20 @@ MMAKE= ${MMAKEENV} ${MAKE} \
|
||||
make: .PHONY
|
||||
@echo
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo ">>> Building an up-to-date make(1)"
|
||||
@echo ">>> Building an up-to-date ${MAKE:T}(1)"
|
||||
@echo "--------------------------------------------------------------"
|
||||
${_+_}@cd ${.CURDIR}/usr.bin/make; \
|
||||
${_+_}@cd ${.CURDIR}/usr.bin/${MAKE:T}; \
|
||||
${MMAKE} obj && \
|
||||
${MMAKE} depend && \
|
||||
${MMAKE} all && \
|
||||
${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
|
||||
|
||||
bmake: .PHONY
|
||||
@echo
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo ">>> Building an up-to-date bmake(1)"
|
||||
@echo "--------------------------------------------------------------"
|
||||
${_+_}@cd ${.CURDIR}/external/bsd/bmake/usr.bin/bmake; \
|
||||
${MMAKE} obj && \
|
||||
${MMAKE} depend && \
|
||||
${MMAKE} all && \
|
||||
|
@ -81,6 +81,8 @@ SUBDIR+=sys usr.bin usr.sbin
|
||||
.if ${MK_OFED} != "no"
|
||||
SUBDIR+=contrib/ofed
|
||||
.endif
|
||||
SUBDIR+=external/bsd
|
||||
|
||||
#
|
||||
# We must do etc/ last for install/distribute to work.
|
||||
#
|
||||
@ -240,6 +242,7 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \
|
||||
DESTDIR= \
|
||||
BOOTSTRAPPING=${OSRELDATE} \
|
||||
SSP_CFLAGS= \
|
||||
-DWITHOUT_META_MODE \
|
||||
-DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \
|
||||
-DNO_PIC -DNO_PROFILE -DNO_SHARED \
|
||||
-DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF
|
||||
@ -251,12 +254,14 @@ TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \
|
||||
DESTDIR= \
|
||||
BOOTSTRAPPING=${OSRELDATE} \
|
||||
SSP_CFLAGS= \
|
||||
-DWITHOUT_META_MODE \
|
||||
-DNO_LINT \
|
||||
-DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF
|
||||
|
||||
# cross-tools stage
|
||||
XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
|
||||
TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
|
||||
-DWITHOUT_META_MODE \
|
||||
-DWITHOUT_GDB
|
||||
|
||||
# world stage
|
||||
@ -1678,3 +1683,5 @@ _xi-links:
|
||||
xdev xdev-buil xdev-install:
|
||||
@echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
|
||||
.endif
|
||||
|
||||
.MAKE.MODE= normal
|
||||
|
19
bin/cat/Makefile.depend
Normal file
19
bin/cat/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/chflags/Makefile.depend
Normal file
19
bin/chflags/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/chio/Makefile.depend
Normal file
19
bin/chio/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/chmod/Makefile.depend
Normal file
19
bin/chmod/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/cp/Makefile.depend
Normal file
19
bin/cp/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
348
bin/csh/Makefile.depend
Normal file
348
bin/csh/Makefile.depend
Normal file
@ -0,0 +1,348 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/arpa \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libcrypt \
|
||||
lib/ncurses/ncurses \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
ed.chared.o: ed.defns.h
|
||||
ed.chared.o: iconv.h
|
||||
ed.chared.o: sh.err.h
|
||||
ed.chared.o: tc.const.h
|
||||
ed.chared.po: ed.defns.h
|
||||
ed.chared.po: iconv.h
|
||||
ed.chared.po: sh.err.h
|
||||
ed.chared.po: tc.const.h
|
||||
ed.defns.o: iconv.h
|
||||
ed.defns.o: sh.err.h
|
||||
ed.defns.o: tc.const.h
|
||||
ed.defns.po: iconv.h
|
||||
ed.defns.po: sh.err.h
|
||||
ed.defns.po: tc.const.h
|
||||
ed.init.o: ed.defns.h
|
||||
ed.init.o: iconv.h
|
||||
ed.init.o: sh.err.h
|
||||
ed.init.o: tc.const.h
|
||||
ed.init.po: ed.defns.h
|
||||
ed.init.po: iconv.h
|
||||
ed.init.po: sh.err.h
|
||||
ed.init.po: tc.const.h
|
||||
ed.inputl.o: ed.defns.h
|
||||
ed.inputl.o: iconv.h
|
||||
ed.inputl.o: sh.err.h
|
||||
ed.inputl.o: tc.const.h
|
||||
ed.inputl.po: ed.defns.h
|
||||
ed.inputl.po: iconv.h
|
||||
ed.inputl.po: sh.err.h
|
||||
ed.inputl.po: tc.const.h
|
||||
ed.refresh.o: iconv.h
|
||||
ed.refresh.o: sh.err.h
|
||||
ed.refresh.o: tc.const.h
|
||||
ed.refresh.po: iconv.h
|
||||
ed.refresh.po: sh.err.h
|
||||
ed.refresh.po: tc.const.h
|
||||
ed.screen.o: ed.defns.h
|
||||
ed.screen.o: iconv.h
|
||||
ed.screen.o: sh.err.h
|
||||
ed.screen.o: tc.const.h
|
||||
ed.screen.po: ed.defns.h
|
||||
ed.screen.po: iconv.h
|
||||
ed.screen.po: sh.err.h
|
||||
ed.screen.po: tc.const.h
|
||||
ed.term.o: iconv.h
|
||||
ed.term.o: sh.err.h
|
||||
ed.term.o: tc.const.h
|
||||
ed.term.po: iconv.h
|
||||
ed.term.po: sh.err.h
|
||||
ed.term.po: tc.const.h
|
||||
ed.xmap.o: ed.defns.h
|
||||
ed.xmap.o: iconv.h
|
||||
ed.xmap.o: sh.err.h
|
||||
ed.xmap.o: tc.const.h
|
||||
ed.xmap.po: ed.defns.h
|
||||
ed.xmap.po: iconv.h
|
||||
ed.xmap.po: sh.err.h
|
||||
ed.xmap.po: tc.const.h
|
||||
glob.o: iconv.h
|
||||
glob.o: sh.err.h
|
||||
glob.o: tc.const.h
|
||||
glob.po: iconv.h
|
||||
glob.po: sh.err.h
|
||||
glob.po: tc.const.h
|
||||
iconv_stub.o: iconv.h
|
||||
iconv_stub.po: iconv.h
|
||||
mi.termios.o: iconv.h
|
||||
mi.termios.o: sh.err.h
|
||||
mi.termios.o: tc.const.h
|
||||
mi.termios.po: iconv.h
|
||||
mi.termios.po: sh.err.h
|
||||
mi.termios.po: tc.const.h
|
||||
sh.char.o: iconv.h
|
||||
sh.char.o: sh.err.h
|
||||
sh.char.o: tc.const.h
|
||||
sh.char.po: iconv.h
|
||||
sh.char.po: sh.err.h
|
||||
sh.char.po: tc.const.h
|
||||
sh.dir.o: iconv.h
|
||||
sh.dir.o: sh.err.h
|
||||
sh.dir.o: tc.const.h
|
||||
sh.dir.po: iconv.h
|
||||
sh.dir.po: sh.err.h
|
||||
sh.dir.po: tc.const.h
|
||||
sh.dol.o: iconv.h
|
||||
sh.dol.o: sh.err.h
|
||||
sh.dol.o: tc.const.h
|
||||
sh.dol.po: iconv.h
|
||||
sh.dol.po: sh.err.h
|
||||
sh.dol.po: tc.const.h
|
||||
sh.err.o: iconv.h
|
||||
sh.err.o: sh.err.h
|
||||
sh.err.o: tc.const.h
|
||||
sh.err.po: iconv.h
|
||||
sh.err.po: sh.err.h
|
||||
sh.err.po: tc.const.h
|
||||
sh.exec.o: iconv.h
|
||||
sh.exec.o: sh.err.h
|
||||
sh.exec.o: tc.const.h
|
||||
sh.exec.po: iconv.h
|
||||
sh.exec.po: sh.err.h
|
||||
sh.exec.po: tc.const.h
|
||||
sh.exp.o: iconv.h
|
||||
sh.exp.o: sh.err.h
|
||||
sh.exp.o: tc.const.h
|
||||
sh.exp.po: iconv.h
|
||||
sh.exp.po: sh.err.h
|
||||
sh.exp.po: tc.const.h
|
||||
sh.file.o: iconv.h
|
||||
sh.file.o: sh.err.h
|
||||
sh.file.o: tc.const.h
|
||||
sh.file.po: iconv.h
|
||||
sh.file.po: sh.err.h
|
||||
sh.file.po: tc.const.h
|
||||
sh.func.o: iconv.h
|
||||
sh.func.o: sh.err.h
|
||||
sh.func.o: tc.const.h
|
||||
sh.func.po: iconv.h
|
||||
sh.func.po: sh.err.h
|
||||
sh.func.po: tc.const.h
|
||||
sh.glob.o: iconv.h
|
||||
sh.glob.o: sh.err.h
|
||||
sh.glob.o: tc.const.h
|
||||
sh.glob.po: iconv.h
|
||||
sh.glob.po: sh.err.h
|
||||
sh.glob.po: tc.const.h
|
||||
sh.hist.o: iconv.h
|
||||
sh.hist.o: sh.err.h
|
||||
sh.hist.o: tc.const.h
|
||||
sh.hist.po: iconv.h
|
||||
sh.hist.po: sh.err.h
|
||||
sh.hist.po: tc.const.h
|
||||
sh.init.o: iconv.h
|
||||
sh.init.o: sh.err.h
|
||||
sh.init.o: tc.const.h
|
||||
sh.init.po: iconv.h
|
||||
sh.init.po: sh.err.h
|
||||
sh.init.po: tc.const.h
|
||||
sh.lex.o: iconv.h
|
||||
sh.lex.o: sh.err.h
|
||||
sh.lex.o: tc.const.h
|
||||
sh.lex.po: iconv.h
|
||||
sh.lex.po: sh.err.h
|
||||
sh.lex.po: tc.const.h
|
||||
sh.misc.o: iconv.h
|
||||
sh.misc.o: sh.err.h
|
||||
sh.misc.o: tc.const.h
|
||||
sh.misc.po: iconv.h
|
||||
sh.misc.po: sh.err.h
|
||||
sh.misc.po: tc.const.h
|
||||
sh.o: iconv.h
|
||||
sh.o: sh.err.h
|
||||
sh.o: tc.const.h
|
||||
sh.parse.o: iconv.h
|
||||
sh.parse.o: sh.err.h
|
||||
sh.parse.o: tc.const.h
|
||||
sh.parse.po: iconv.h
|
||||
sh.parse.po: sh.err.h
|
||||
sh.parse.po: tc.const.h
|
||||
sh.po: iconv.h
|
||||
sh.po: sh.err.h
|
||||
sh.po: tc.const.h
|
||||
sh.print.o: iconv.h
|
||||
sh.print.o: sh.err.h
|
||||
sh.print.o: tc.const.h
|
||||
sh.print.po: iconv.h
|
||||
sh.print.po: sh.err.h
|
||||
sh.print.po: tc.const.h
|
||||
sh.proc.o: iconv.h
|
||||
sh.proc.o: sh.err.h
|
||||
sh.proc.o: tc.const.h
|
||||
sh.proc.po: iconv.h
|
||||
sh.proc.po: sh.err.h
|
||||
sh.proc.po: tc.const.h
|
||||
sh.sem.o: iconv.h
|
||||
sh.sem.o: sh.err.h
|
||||
sh.sem.o: tc.const.h
|
||||
sh.sem.po: iconv.h
|
||||
sh.sem.po: sh.err.h
|
||||
sh.sem.po: tc.const.h
|
||||
sh.set.o: iconv.h
|
||||
sh.set.o: sh.err.h
|
||||
sh.set.o: tc.const.h
|
||||
sh.set.po: iconv.h
|
||||
sh.set.po: sh.err.h
|
||||
sh.set.po: tc.const.h
|
||||
sh.time.o: iconv.h
|
||||
sh.time.o: sh.err.h
|
||||
sh.time.o: tc.const.h
|
||||
sh.time.po: iconv.h
|
||||
sh.time.po: sh.err.h
|
||||
sh.time.po: tc.const.h
|
||||
tc.alloc.o: iconv.h
|
||||
tc.alloc.o: sh.err.h
|
||||
tc.alloc.o: tc.const.h
|
||||
tc.alloc.po: iconv.h
|
||||
tc.alloc.po: sh.err.h
|
||||
tc.alloc.po: tc.const.h
|
||||
tc.bind.o: ed.defns.h
|
||||
tc.bind.o: iconv.h
|
||||
tc.bind.o: sh.err.h
|
||||
tc.bind.o: tc.const.h
|
||||
tc.bind.po: ed.defns.h
|
||||
tc.bind.po: iconv.h
|
||||
tc.bind.po: sh.err.h
|
||||
tc.bind.po: tc.const.h
|
||||
tc.const.o: iconv.h
|
||||
tc.const.o: sh.err.h
|
||||
tc.const.o: tc.const.h
|
||||
tc.const.po: iconv.h
|
||||
tc.const.po: sh.err.h
|
||||
tc.const.po: tc.const.h
|
||||
tc.defs.o: iconv.h
|
||||
tc.defs.o: sh.err.h
|
||||
tc.defs.o: tc.const.h
|
||||
tc.defs.o: tc.defs.c
|
||||
tc.defs.po: iconv.h
|
||||
tc.defs.po: sh.err.h
|
||||
tc.defs.po: tc.const.h
|
||||
tc.defs.po: tc.defs.c
|
||||
tc.disc.o: iconv.h
|
||||
tc.disc.o: sh.err.h
|
||||
tc.disc.o: tc.const.h
|
||||
tc.disc.po: iconv.h
|
||||
tc.disc.po: sh.err.h
|
||||
tc.disc.po: tc.const.h
|
||||
tc.func.o: ed.defns.h
|
||||
tc.func.o: iconv.h
|
||||
tc.func.o: sh.err.h
|
||||
tc.func.o: tc.const.h
|
||||
tc.func.po: ed.defns.h
|
||||
tc.func.po: iconv.h
|
||||
tc.func.po: sh.err.h
|
||||
tc.func.po: tc.const.h
|
||||
tc.nls.o: iconv.h
|
||||
tc.nls.o: sh.err.h
|
||||
tc.nls.o: tc.const.h
|
||||
tc.nls.po: iconv.h
|
||||
tc.nls.po: sh.err.h
|
||||
tc.nls.po: tc.const.h
|
||||
tc.os.o: ed.defns.h
|
||||
tc.os.o: iconv.h
|
||||
tc.os.o: sh.err.h
|
||||
tc.os.o: tc.const.h
|
||||
tc.os.po: ed.defns.h
|
||||
tc.os.po: iconv.h
|
||||
tc.os.po: sh.err.h
|
||||
tc.os.po: tc.const.h
|
||||
tc.printf.o: iconv.h
|
||||
tc.printf.o: sh.err.h
|
||||
tc.printf.o: tc.const.h
|
||||
tc.printf.po: iconv.h
|
||||
tc.printf.po: sh.err.h
|
||||
tc.printf.po: tc.const.h
|
||||
tc.prompt.o: iconv.h
|
||||
tc.prompt.o: sh.err.h
|
||||
tc.prompt.o: tc.const.h
|
||||
tc.prompt.po: iconv.h
|
||||
tc.prompt.po: sh.err.h
|
||||
tc.prompt.po: tc.const.h
|
||||
tc.sched.o: iconv.h
|
||||
tc.sched.o: sh.err.h
|
||||
tc.sched.o: tc.const.h
|
||||
tc.sched.po: iconv.h
|
||||
tc.sched.po: sh.err.h
|
||||
tc.sched.po: tc.const.h
|
||||
tc.sig.o: iconv.h
|
||||
tc.sig.o: sh.err.h
|
||||
tc.sig.o: tc.const.h
|
||||
tc.sig.po: iconv.h
|
||||
tc.sig.po: sh.err.h
|
||||
tc.sig.po: tc.const.h
|
||||
tc.str.o: iconv.h
|
||||
tc.str.o: sh.err.h
|
||||
tc.str.o: tc.const.h
|
||||
tc.str.po: iconv.h
|
||||
tc.str.po: sh.err.h
|
||||
tc.str.po: tc.const.h
|
||||
tc.vers.o: iconv.h
|
||||
tc.vers.o: sh.err.h
|
||||
tc.vers.o: tc.const.h
|
||||
tc.vers.po: iconv.h
|
||||
tc.vers.po: sh.err.h
|
||||
tc.vers.po: tc.const.h
|
||||
tc.who.o: iconv.h
|
||||
tc.who.o: sh.err.h
|
||||
tc.who.o: tc.const.h
|
||||
tc.who.po: iconv.h
|
||||
tc.who.po: sh.err.h
|
||||
tc.who.po: tc.const.h
|
||||
tw.color.o: iconv.h
|
||||
tw.color.o: sh.err.h
|
||||
tw.color.o: tc.const.h
|
||||
tw.color.po: iconv.h
|
||||
tw.color.po: sh.err.h
|
||||
tw.color.po: tc.const.h
|
||||
tw.comp.o: iconv.h
|
||||
tw.comp.o: sh.err.h
|
||||
tw.comp.o: tc.const.h
|
||||
tw.comp.po: iconv.h
|
||||
tw.comp.po: sh.err.h
|
||||
tw.comp.po: tc.const.h
|
||||
tw.help.o: iconv.h
|
||||
tw.help.o: sh.err.h
|
||||
tw.help.o: tc.const.h
|
||||
tw.help.po: iconv.h
|
||||
tw.help.po: sh.err.h
|
||||
tw.help.po: tc.const.h
|
||||
tw.init.o: iconv.h
|
||||
tw.init.o: sh.err.h
|
||||
tw.init.o: tc.const.h
|
||||
tw.init.po: iconv.h
|
||||
tw.init.po: sh.err.h
|
||||
tw.init.po: tc.const.h
|
||||
tw.parse.o: iconv.h
|
||||
tw.parse.o: sh.err.h
|
||||
tw.parse.o: tc.const.h
|
||||
tw.parse.po: iconv.h
|
||||
tw.parse.po: sh.err.h
|
||||
tw.parse.po: tc.const.h
|
||||
tw.spell.o: iconv.h
|
||||
tw.spell.o: sh.err.h
|
||||
tw.spell.o: tc.const.h
|
||||
tw.spell.po: iconv.h
|
||||
tw.spell.po: sh.err.h
|
||||
tw.spell.po: tc.const.h
|
||||
.endif
|
20
bin/date/Makefile.depend
Normal file
20
bin/date/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/protocols \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/dd/Makefile.depend
Normal file
19
bin/dd/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
20
bin/df/Makefile.depend
Normal file
20
bin/df/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libutil \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/domainname/Makefile.depend
Normal file
19
bin/domainname/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/echo/Makefile.depend
Normal file
19
bin/echo/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
20
bin/ed/Makefile.depend
Normal file
20
bin/ed/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
secure/lib/libcrypto \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
21
bin/expr/Makefile.depend
Normal file
21
bin/expr/Makefile.depend
Normal file
@ -0,0 +1,21 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
expr.o: expr.c
|
||||
expr.po: expr.c
|
||||
.endif
|
19
bin/getfacl/Makefile.depend
Normal file
19
bin/getfacl/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/hostname/Makefile.depend
Normal file
19
bin/hostname/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/kenv/Makefile.depend
Normal file
19
bin/kenv/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/kill/Makefile.depend
Normal file
19
bin/kill/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/ln/Makefile.depend
Normal file
19
bin/ln/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
21
bin/ls/Makefile.depend
Normal file
21
bin/ls/Makefile.depend
Normal file
@ -0,0 +1,21 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libutil \
|
||||
lib/ncurses/ncurses \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/mkdir/Makefile.depend
Normal file
19
bin/mkdir/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/mv/Makefile.depend
Normal file
19
bin/mv/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/pax/Makefile.depend
Normal file
19
bin/pax/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
20
bin/pkill/Makefile.depend
Normal file
20
bin/pkill/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libkvm \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
21
bin/ps/Makefile.depend
Normal file
21
bin/ps/Makefile.depend
Normal file
@ -0,0 +1,21 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libkvm \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/pwait/Makefile.depend
Normal file
19
bin/pwait/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/pwd/Makefile.depend
Normal file
19
bin/pwd/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/rcp/Makefile.depend
Normal file
19
bin/rcp/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
18
bin/realpath/Makefile.depend
Normal file
18
bin/realpath/Makefile.depend
Normal file
@ -0,0 +1,18 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/rm/Makefile.depend
Normal file
19
bin/rm/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
23
bin/rmail/Makefile.depend
Normal file
23
bin/rmail/Makefile.depend
Normal file
@ -0,0 +1,23 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libsm \
|
||||
lib/libutil \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
rmail.o: sm_os.h
|
||||
rmail.po: sm_os.h
|
||||
.endif
|
19
bin/rmdir/Makefile.depend
Normal file
19
bin/rmdir/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/setfacl/Makefile.depend
Normal file
19
bin/setfacl/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
115
bin/sh/Makefile.depend
Normal file
115
bin/sh/Makefile.depend
Normal file
@ -0,0 +1,115 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libedit \
|
||||
lib/ncurses/ncurses \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
alias.o: builtins.h
|
||||
alias.po: builtins.h
|
||||
arith_yylex.o: syntax.h
|
||||
arith_yylex.po: syntax.h
|
||||
builtins.o: builtins.c
|
||||
builtins.o: builtins.h
|
||||
builtins.po: builtins.c
|
||||
builtins.po: builtins.h
|
||||
cd.o: builtins.h
|
||||
cd.o: nodes.h
|
||||
cd.po: builtins.h
|
||||
cd.po: nodes.h
|
||||
echo.o: builtins.h
|
||||
echo.po: builtins.h
|
||||
error.o: nodes.h
|
||||
error.po: nodes.h
|
||||
eval.o: builtins.h
|
||||
eval.o: nodes.h
|
||||
eval.o: syntax.h
|
||||
eval.po: builtins.h
|
||||
eval.po: nodes.h
|
||||
eval.po: syntax.h
|
||||
exec.o: builtins.h
|
||||
exec.o: nodes.h
|
||||
exec.o: syntax.h
|
||||
exec.po: builtins.h
|
||||
exec.po: nodes.h
|
||||
exec.po: syntax.h
|
||||
expand.o: builtins.h
|
||||
expand.o: nodes.h
|
||||
expand.o: syntax.h
|
||||
expand.po: builtins.h
|
||||
expand.po: nodes.h
|
||||
expand.po: syntax.h
|
||||
histedit.o: builtins.h
|
||||
histedit.po: builtins.h
|
||||
init.o: init.c
|
||||
init.po: init.c
|
||||
input.o: syntax.h
|
||||
input.po: syntax.h
|
||||
jobs.o: builtins.h
|
||||
jobs.o: nodes.h
|
||||
jobs.o: syntax.h
|
||||
jobs.po: builtins.h
|
||||
jobs.po: nodes.h
|
||||
jobs.po: syntax.h
|
||||
kill.o: builtins.h
|
||||
kill.po: builtins.h
|
||||
main.o: builtins.h
|
||||
main.o: nodes.h
|
||||
main.po: builtins.h
|
||||
main.po: nodes.h
|
||||
mystring.o: syntax.h
|
||||
mystring.po: syntax.h
|
||||
nodes.o: nodes.c
|
||||
nodes.o: nodes.h
|
||||
nodes.po: nodes.c
|
||||
nodes.po: nodes.h
|
||||
options.o: builtins.h
|
||||
options.o: nodes.h
|
||||
options.po: builtins.h
|
||||
options.po: nodes.h
|
||||
output.o: syntax.h
|
||||
output.po: syntax.h
|
||||
parser.o: nodes.h
|
||||
parser.o: syntax.h
|
||||
parser.o: token.h
|
||||
parser.po: nodes.h
|
||||
parser.po: syntax.h
|
||||
parser.po: token.h
|
||||
printf.o: builtins.h
|
||||
printf.po: builtins.h
|
||||
redir.o: nodes.h
|
||||
redir.po: nodes.h
|
||||
show.o: nodes.h
|
||||
show.po: nodes.h
|
||||
syntax.o: syntax.c
|
||||
syntax.o: syntax.h
|
||||
syntax.po: syntax.c
|
||||
syntax.po: syntax.h
|
||||
test.o: builtins.h
|
||||
test.po: builtins.h
|
||||
trap.o: builtins.h
|
||||
trap.o: nodes.h
|
||||
trap.o: syntax.h
|
||||
trap.po: builtins.h
|
||||
trap.po: nodes.h
|
||||
trap.po: syntax.h
|
||||
var.o: builtins.h
|
||||
var.o: nodes.h
|
||||
var.o: syntax.h
|
||||
var.po: builtins.h
|
||||
var.po: nodes.h
|
||||
var.po: syntax.h
|
||||
.endif
|
19
bin/sleep/Makefile.depend
Normal file
19
bin/sleep/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/stty/Makefile.depend
Normal file
19
bin/stty/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
18
bin/sync/Makefile.depend
Normal file
18
bin/sync/Makefile.depend
Normal file
@ -0,0 +1,18 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
bin/test/Makefile.depend
Normal file
19
bin/test/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
18
bin/uuidgen/Makefile.depend
Normal file
18
bin/uuidgen/Makefile.depend
Normal file
@ -0,0 +1,18 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
17
cddl/lib/drti/Makefile.depend
Normal file
17
cddl/lib/drti/Makefile.depend
Normal file
@ -0,0 +1,17 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/libelf \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
17
cddl/lib/libavl/Makefile.depend
Normal file
17
cddl/lib/libavl/Makefile.depend
Normal file
@ -0,0 +1,17 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
cddl/lib/libctf/Makefile.depend
Normal file
19
cddl/lib/libctf/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libelf \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
47
cddl/lib/libdtrace/Makefile.depend
Normal file
47
cddl/lib/libdtrace/Makefile.depend
Normal file
@ -0,0 +1,47 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/arpa \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libelf \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
dt_cc.So: dt_grammar.h
|
||||
dt_cc.o: dt_grammar.h
|
||||
dt_cc.po: dt_grammar.h
|
||||
dt_cg.So: dt_grammar.h
|
||||
dt_cg.o: dt_grammar.h
|
||||
dt_cg.po: dt_grammar.h
|
||||
dt_errtags.So: dt_errtags.c
|
||||
dt_errtags.o: dt_errtags.c
|
||||
dt_errtags.po: dt_errtags.c
|
||||
dt_grammar.So: dt_grammar.c
|
||||
dt_grammar.o: dt_grammar.c
|
||||
dt_grammar.po: dt_grammar.c
|
||||
dt_lex.So: dt_grammar.h
|
||||
dt_lex.So: dt_lex.c
|
||||
dt_lex.o: dt_grammar.h
|
||||
dt_lex.o: dt_lex.c
|
||||
dt_lex.po: dt_grammar.h
|
||||
dt_lex.po: dt_lex.c
|
||||
dt_names.So: dt_names.c
|
||||
dt_names.o: dt_names.c
|
||||
dt_names.po: dt_names.c
|
||||
dt_parser.So: dt_grammar.h
|
||||
dt_parser.o: dt_grammar.h
|
||||
dt_parser.po: dt_grammar.h
|
||||
dt_xlator.So: dt_grammar.h
|
||||
dt_xlator.o: dt_grammar.h
|
||||
dt_xlator.po: dt_grammar.h
|
||||
.endif
|
18
cddl/lib/libnvpair/Makefile.depend
Normal file
18
cddl/lib/libnvpair/Makefile.depend
Normal file
@ -0,0 +1,18 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
17
cddl/lib/libumem/Makefile.depend
Normal file
17
cddl/lib/libumem/Makefile.depend
Normal file
@ -0,0 +1,17 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
18
cddl/lib/libuutil/Makefile.depend
Normal file
18
cddl/lib/libuutil/Makefile.depend
Normal file
@ -0,0 +1,18 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
22
cddl/lib/libzfs/Makefile.depend
Normal file
22
cddl/lib/libzfs/Makefile.depend
Normal file
@ -0,0 +1,22 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
cddl/lib/libumem \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libgeom \
|
||||
lib/libutil \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
cddl/lib/libzpool/Makefile.depend
Normal file
19
cddl/lib/libzpool/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
25
cddl/sbin/zfs/Makefile.depend
Normal file
25
cddl/sbin/zfs/Makefile.depend
Normal file
@ -0,0 +1,25 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
cddl/lib/libnvpair \
|
||||
cddl/lib/libumem \
|
||||
cddl/lib/libuutil \
|
||||
cddl/lib/libzfs \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libgeom \
|
||||
lib/libutil \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
26
cddl/sbin/zpool/Makefile.depend
Normal file
26
cddl/sbin/zpool/Makefile.depend
Normal file
@ -0,0 +1,26 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
cddl/lib/libavl \
|
||||
cddl/lib/libnvpair \
|
||||
cddl/lib/libumem \
|
||||
cddl/lib/libuutil \
|
||||
cddl/lib/libzfs \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libgeom \
|
||||
lib/libutil \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
21
cddl/usr.bin/ctfconvert/Makefile.depend
Normal file
21
cddl/usr.bin/ctfconvert/Makefile.depend
Normal file
@ -0,0 +1,21 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
cddl/lib/libctf \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libdwarf \
|
||||
lib/libelf \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
cddl/usr.bin/ctfdump/Makefile.depend
Normal file
19
cddl/usr.bin/ctfdump/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libelf \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
21
cddl/usr.bin/ctfmerge/Makefile.depend
Normal file
21
cddl/usr.bin/ctfmerge/Makefile.depend
Normal file
@ -0,0 +1,21 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
cddl/lib/libctf \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libdwarf \
|
||||
lib/libelf \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
cddl/usr.bin/sgsmsg/Makefile.depend
Normal file
19
cddl/usr.bin/sgsmsg/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libelf \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
25
cddl/usr.bin/zinject/Makefile.depend
Normal file
25
cddl/usr.bin/zinject/Makefile.depend
Normal file
@ -0,0 +1,25 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
cddl/lib/libnvpair \
|
||||
cddl/lib/libumem \
|
||||
cddl/lib/libuutil \
|
||||
cddl/lib/libzfs \
|
||||
cddl/lib/libzpool \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/libgeom \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
63
external/bsd/bmake/usr.bin/bmake/Makefile
vendored
63
external/bsd/bmake/usr.bin/bmake/Makefile
vendored
@ -1,5 +1,10 @@
|
||||
# This is a generated file, do NOT edit!
|
||||
# See contrib/bmake/bsd.after-import.mk
|
||||
# See external/bsd/bmake/dist/bsd.after-import.mk
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
SRCTOP?= ${.CURDIR:H:H:H:H:H}
|
||||
|
||||
|
||||
# look here first for config.h
|
||||
CFLAGS+= -I${.CURDIR}
|
||||
@ -7,13 +12,11 @@ CFLAGS+= -I${.CURDIR}
|
||||
# $NetBSD: Makefile,v 1.56 2012/05/30 21:54:23 sjg Exp $
|
||||
# @(#)Makefile 5.2 (Berkeley) 12/28/90
|
||||
|
||||
# $Id: Makefile.in,v 1.164 2012/06/20 22:44:26 sjg Exp $
|
||||
|
||||
# $FreeBSD$
|
||||
# $Id: Makefile.in,v 1.168 2012/07/05 04:10:23 sjg Exp $
|
||||
|
||||
PROG= bmake
|
||||
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
|
||||
make.c parse.c str.c suff.c targ.c trace.c var.c util.c
|
||||
make.c parse.c str.c suff.c targ.c trace.c var.c util.c
|
||||
SRCS+= strlist.c
|
||||
SRCS+= make_malloc.c
|
||||
SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
|
||||
@ -25,30 +28,36 @@ SRCS += lstPrev.c
|
||||
|
||||
# you can use this Makefile if you have an earlier version of bmake.
|
||||
prefix= /usr
|
||||
srcdir= ${.CURDIR}/../../dist
|
||||
srcdir= ${SRCTOP}/external/bsd/bmake/dist
|
||||
CC?= gcc
|
||||
|
||||
# Base version on src date
|
||||
MAKE_VERSION= 20120620
|
||||
MAKE_VERSION= 20120704
|
||||
DEFAULT_SYS_PATH = .../share/mk:/usr/share/mk
|
||||
|
||||
CPPFLAGS+=
|
||||
CFLAGS+= ${CPPFLAGS}
|
||||
CFLAGS+= -D_PATH_DEFSYSPATH=\"${DEFAULT_SYS_PATH}\"
|
||||
CFLAGS+= -I. -I${srcdir} -DHAVE_CONFIG_H ${XDEFS} -DMAKE_NATIVE
|
||||
CFLAGS+= ${CFLAGS_${.TARGET:T}}
|
||||
CFLAGS+= -I. -I${srcdir} -DHAVE_CONFIG_H ${XDEFS} -DMAKE_NATIVE
|
||||
CFLAGS+= ${CFLAGS_${.TARGET:T}}
|
||||
CFLAGS+= ${COPTS.${.ALLSRC:M*.c:T:u}}
|
||||
COPTS.main.c+= "-DMAKE_VERSION=\"${MAKE_VERSION}\""
|
||||
LDFLAGS=
|
||||
LIBOBJS= ${LIBOBJDIR}stresep$U.o
|
||||
LDADD=
|
||||
LDFLAGS=
|
||||
LIBOBJS= ${LIBOBJDIR}stresep$U.o
|
||||
LDADD=
|
||||
|
||||
.if !empty(LIBOBJS)
|
||||
SRCS+= ${LIBOBJS:T:.o=.c}
|
||||
.endif
|
||||
|
||||
USE_META ?= yes
|
||||
.if ${USE_META:tl} != "no"
|
||||
USE_META = yes
|
||||
.if ${USE_META} != "no"
|
||||
SRCS+= meta.c
|
||||
CPPFLAGS+= -DUSE_META
|
||||
COPTS.meta.c += -DHAVE_FILEMON_H
|
||||
FILEMON_H ?= /usr/include/dev/filemon/filemon.h
|
||||
.if exists(${FILEMON_H}) && ${FILEMON_H:T} == "filemon.h"
|
||||
COPTS.meta.c += -DHAVE_FILEMON_H -I${FILEMON_H:H}
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.PATH: ${srcdir}
|
||||
@ -56,11 +65,6 @@ COPTS.meta.c += -DHAVE_FILEMON_H
|
||||
|
||||
OS!= uname -s
|
||||
ARCH!= uname -p 2>/dev/null || uname -m
|
||||
MAKEVER!= ${MAKE} -f /dev/null -V MAKE_VERSION
|
||||
.if ${MAKEVER} < 1197001010
|
||||
# Bmake vs. FreeBSD's traditional make ('MAKE_VERSION' format: RYYYYMMDDX)
|
||||
IS_BMAKE= yes
|
||||
.endif
|
||||
|
||||
# list of OS's which are derrived from BSD4.4
|
||||
isBSD44= NetBSD FreeBSD OpenBSD DragonFly
|
||||
@ -75,9 +79,6 @@ WARNS=4
|
||||
SUBDIR= PSD.doc
|
||||
.endif
|
||||
.endif
|
||||
.if ${OS} == "FreeBSD"
|
||||
WARNS?= 6
|
||||
.endif
|
||||
|
||||
.if empty(isBSD44:M${OS})
|
||||
# XXX not sure if we still want this given that configure
|
||||
@ -93,8 +94,8 @@ SRCS+= sigcompat.c
|
||||
CFLAGS+= -DSIGNAL_FLAGS=SA_RESTART
|
||||
.endif
|
||||
.endif
|
||||
.if defined(.PARSEDIR)
|
||||
.if make(obj) || make(clean)
|
||||
.if defined(IS_BMAKE)
|
||||
SUBDIR+= unit-tests
|
||||
.endif
|
||||
.endif
|
||||
@ -144,9 +145,11 @@ _mfromdir=${srcdir}
|
||||
# sigh, FreeBSD at least includes bsd.subdir.mk via bsd.obj.mk
|
||||
# so the inclusion below, results in complaints about re-defined
|
||||
# targets. For NetBSD though we need to explicitly include it.
|
||||
#.if defined(SUBDIR) && !target(${SUBDIR:[1]})
|
||||
#.-include <bsd.subdir.mk>
|
||||
#.endif
|
||||
.if defined(.PARSEDIR)
|
||||
.if defined(SUBDIR) && !target(${SUBDIR:[1]})
|
||||
.sinclude <bsd.subdir.mk>
|
||||
.endif
|
||||
.endif
|
||||
|
||||
CPPFLAGS+= -DMAKE_NATIVE
|
||||
COPTS.var.c += -Wno-cast-qual
|
||||
@ -156,7 +159,7 @@ COPTS.var.c += -Wno-format-nonliteral
|
||||
|
||||
# Force these
|
||||
BINDIR= ${prefix}/bin
|
||||
MANDIR= ${prefix}/share/man
|
||||
MANDIR= ${prefix}/man
|
||||
|
||||
arch.o: config.h
|
||||
# make sure that MAKE_VERSION gets updated.
|
||||
@ -200,8 +203,8 @@ MANDIR= /usr/share/man
|
||||
CFLAGS+= ${COPTS.${.IMPSRC:T}}
|
||||
CLEANFILES+= bootstrap
|
||||
|
||||
after-import: ${.CURDIR}/../dist/bsd.after-import.mk
|
||||
cd ${.CURDIR} && ${.MAKE} -f ${.CURDIR}/../dist/bsd.after-import.mk
|
||||
after-import: ${SRCTOP}/external/bsd/bmake/dist/bsd.after-import.mk
|
||||
cd ${.CURDIR} && ${.MAKE} -f ${SRCTOP}/external/bsd/bmake/dist/bsd.after-import.mk
|
||||
|
||||
.sinclude "Makefile.inc"
|
||||
|
||||
|
19
external/bsd/bmake/usr.bin/bmake/Makefile.depend
vendored
Normal file
19
external/bsd/bmake/usr.bin/bmake/Makefile.depend
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
6
external/bsd/bmake/usr.bin/bmake/Makefile.inc
vendored
Normal file
6
external/bsd/bmake/usr.bin/bmake/Makefile.inc
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.if defined(.PARSEDIR)
|
||||
# make sure this is available to unit-tests/Makefile
|
||||
.export SRCTOP
|
||||
.endif
|
4
external/bsd/bmake/usr.bin/bmake/config.h
vendored
4
external/bsd/bmake/usr.bin/bmake/config.h
vendored
@ -229,7 +229,7 @@
|
||||
#define PACKAGE_NAME "bmake"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "bmake 20120606"
|
||||
#define PACKAGE_STRING "bmake 20120620"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "bmake"
|
||||
@ -238,7 +238,7 @@
|
||||
#define PACKAGE_URL ""
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "20120606"
|
||||
#define PACKAGE_VERSION "20120620"
|
||||
|
||||
/* Define as the return type of signal handlers (`int' or `void'). */
|
||||
#define RETSIGTYPE void
|
||||
|
@ -2,8 +2,6 @@
|
||||
#
|
||||
# $NetBSD: Makefile,v 1.34 2012/06/19 23:25:53 sjg Exp $
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Unit tests for make(1)
|
||||
# The main targets are:
|
||||
#
|
||||
@ -16,7 +14,7 @@
|
||||
# named makefile which should be added to SUBFILES to hook it in.
|
||||
#
|
||||
|
||||
srcdir= ${.CURDIR}/../../../dist/unit-tests
|
||||
srcdir= ${SRCTOP}/external/bsd/bmake/dist/unit-tests
|
||||
|
||||
.MAIN: all
|
||||
|
||||
@ -64,7 +62,7 @@ ${SUBFILES}:
|
||||
clean:
|
||||
rm -f *.out *.fail *.core
|
||||
|
||||
.-include <bsd.obj.mk>
|
||||
.sinclude <bsd.obj.mk>
|
||||
|
||||
TEST_MAKE?= ${.MAKE}
|
||||
TOOL_SED?= sed
|
||||
|
19
games/bcd/Makefile.depend
Normal file
19
games/bcd/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
20
games/caesar/Makefile.depend
Normal file
20
games/caesar/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
20
games/factor/Makefile.depend
Normal file
20
games/factor/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
secure/lib/libcrypto \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
14
games/fortune/datfiles/Makefile.depend
Normal file
14
games/fortune/datfiles/Makefile.depend
Normal file
@ -0,0 +1,14 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
games/fortune/fortune/Makefile.depend
Normal file
19
games/fortune/fortune/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
games/fortune/strfile/Makefile.depend
Normal file
19
games/fortune/strfile/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
games/fortune/unstr/Makefile.depend
Normal file
19
games/fortune/unstr/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
20
games/grdc/Makefile.depend
Normal file
20
games/grdc/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/ncurses/ncurses \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
games/morse/Makefile.depend
Normal file
19
games/morse/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
games/number/Makefile.depend
Normal file
19
games/number/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
20
games/pom/Makefile.depend
Normal file
20
games/pom/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
18
games/ppt/Makefile.depend
Normal file
18
games/ppt/Makefile.depend
Normal file
@ -0,0 +1,18 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
20
games/primes/Makefile.depend
Normal file
20
games/primes/Makefile.depend
Normal file
@ -0,0 +1,20 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
games/random/Makefile.depend
Normal file
19
games/random/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
46
gnu/lib/csu/Makefile.depend
Normal file
46
gnu/lib/csu/Makefile.depend
Normal file
@ -0,0 +1,46 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
crtbegin.o: options.h
|
||||
crtbegin.o: tconfig.h
|
||||
crtbegin.o: tm.h
|
||||
crtbegin.po: options.h
|
||||
crtbegin.po: tconfig.h
|
||||
crtbegin.po: tm.h
|
||||
crtbeginS.o: options.h
|
||||
crtbeginS.o: tconfig.h
|
||||
crtbeginS.o: tm.h
|
||||
crtbeginS.po: options.h
|
||||
crtbeginS.po: tconfig.h
|
||||
crtbeginS.po: tm.h
|
||||
crtbeginT.o: options.h
|
||||
crtbeginT.o: tconfig.h
|
||||
crtbeginT.o: tm.h
|
||||
crtbeginT.po: options.h
|
||||
crtbeginT.po: tconfig.h
|
||||
crtbeginT.po: tm.h
|
||||
crtend.o: options.h
|
||||
crtend.o: tconfig.h
|
||||
crtend.o: tm.h
|
||||
crtend.po: options.h
|
||||
crtend.po: tconfig.h
|
||||
crtend.po: tm.h
|
||||
crtendS.o: options.h
|
||||
crtendS.o: tconfig.h
|
||||
crtendS.o: tm.h
|
||||
crtendS.po: options.h
|
||||
crtendS.po: tconfig.h
|
||||
crtendS.po: tm.h
|
||||
.endif
|
17
gnu/lib/libdialog/Makefile.depend
Normal file
17
gnu/lib/libdialog/Makefile.depend
Normal file
@ -0,0 +1,17 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
281
gnu/lib/libgcc/Makefile.depend
Normal file
281
gnu/lib/libgcc/Makefile.depend
Normal file
@ -0,0 +1,281 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
__main.So: options.h
|
||||
__main.So: tconfig.h
|
||||
__main.So: tm.h
|
||||
_absvdi2.So: options.h
|
||||
_absvdi2.So: tconfig.h
|
||||
_absvdi2.So: tm.h
|
||||
_absvsi2.So: options.h
|
||||
_absvsi2.So: tconfig.h
|
||||
_absvsi2.So: tm.h
|
||||
_addvdi3.So: options.h
|
||||
_addvdi3.So: tconfig.h
|
||||
_addvdi3.So: tm.h
|
||||
_addvsi3.So: options.h
|
||||
_addvsi3.So: tconfig.h
|
||||
_addvsi3.So: tm.h
|
||||
_ashldi3.So: options.h
|
||||
_ashldi3.So: tconfig.h
|
||||
_ashldi3.So: tm.h
|
||||
_ashrdi3.So: options.h
|
||||
_ashrdi3.So: tconfig.h
|
||||
_ashrdi3.So: tm.h
|
||||
_clear_cache.So: options.h
|
||||
_clear_cache.So: tconfig.h
|
||||
_clear_cache.So: tm.h
|
||||
_clz.So: options.h
|
||||
_clz.So: tconfig.h
|
||||
_clz.So: tm.h
|
||||
_clzdi2.So: options.h
|
||||
_clzdi2.So: tconfig.h
|
||||
_clzdi2.So: tm.h
|
||||
_clzsi2.So: options.h
|
||||
_clzsi2.So: tconfig.h
|
||||
_clzsi2.So: tm.h
|
||||
_cmpdi2.So: options.h
|
||||
_cmpdi2.So: tconfig.h
|
||||
_cmpdi2.So: tm.h
|
||||
_ctors.So: options.h
|
||||
_ctors.So: tconfig.h
|
||||
_ctors.So: tm.h
|
||||
_ctzdi2.So: options.h
|
||||
_ctzdi2.So: tconfig.h
|
||||
_ctzdi2.So: tm.h
|
||||
_ctzsi2.So: options.h
|
||||
_ctzsi2.So: tconfig.h
|
||||
_ctzsi2.So: tm.h
|
||||
_divdc3.So: options.h
|
||||
_divdc3.So: tconfig.h
|
||||
_divdc3.So: tm.h
|
||||
_divdi3.So: options.h
|
||||
_divdi3.So: tconfig.h
|
||||
_divdi3.So: tm.h
|
||||
_divsc3.So: options.h
|
||||
_divsc3.So: tconfig.h
|
||||
_divsc3.So: tm.h
|
||||
_divtc3.So: options.h
|
||||
_divtc3.So: tconfig.h
|
||||
_divtc3.So: tm.h
|
||||
_divxc3.So: options.h
|
||||
_divxc3.So: tconfig.h
|
||||
_divxc3.So: tm.h
|
||||
_enable_execute_stack.So: options.h
|
||||
_enable_execute_stack.So: tconfig.h
|
||||
_enable_execute_stack.So: tm.h
|
||||
_ffsdi2.So: options.h
|
||||
_ffsdi2.So: tconfig.h
|
||||
_ffsdi2.So: tm.h
|
||||
_ffssi2.So: options.h
|
||||
_ffssi2.So: tconfig.h
|
||||
_ffssi2.So: tm.h
|
||||
_fixdfdi.So: options.h
|
||||
_fixdfdi.So: tconfig.h
|
||||
_fixdfdi.So: tm.h
|
||||
_fixsfdi.So: options.h
|
||||
_fixsfdi.So: tconfig.h
|
||||
_fixsfdi.So: tm.h
|
||||
_fixtfdi.So: options.h
|
||||
_fixtfdi.So: tconfig.h
|
||||
_fixtfdi.So: tm.h
|
||||
_fixunsdfdi.So: options.h
|
||||
_fixunsdfdi.So: tconfig.h
|
||||
_fixunsdfdi.So: tm.h
|
||||
_fixunsdfsi.So: options.h
|
||||
_fixunsdfsi.So: tconfig.h
|
||||
_fixunsdfsi.So: tm.h
|
||||
_fixunssfdi.So: options.h
|
||||
_fixunssfdi.So: tconfig.h
|
||||
_fixunssfdi.So: tm.h
|
||||
_fixunssfsi.So: options.h
|
||||
_fixunssfsi.So: tconfig.h
|
||||
_fixunssfsi.So: tm.h
|
||||
_fixunstfdi.So: options.h
|
||||
_fixunstfdi.So: tconfig.h
|
||||
_fixunstfdi.So: tm.h
|
||||
_fixunsxfdi.So: options.h
|
||||
_fixunsxfdi.So: tconfig.h
|
||||
_fixunsxfdi.So: tm.h
|
||||
_fixunsxfsi.So: options.h
|
||||
_fixunsxfsi.So: tconfig.h
|
||||
_fixunsxfsi.So: tm.h
|
||||
_fixxfdi.So: options.h
|
||||
_fixxfdi.So: tconfig.h
|
||||
_fixxfdi.So: tm.h
|
||||
_floatdidf.So: options.h
|
||||
_floatdidf.So: tconfig.h
|
||||
_floatdidf.So: tm.h
|
||||
_floatdisf.So: options.h
|
||||
_floatdisf.So: tconfig.h
|
||||
_floatdisf.So: tm.h
|
||||
_floatditf.So: options.h
|
||||
_floatditf.So: tconfig.h
|
||||
_floatditf.So: tm.h
|
||||
_floatdixf.So: options.h
|
||||
_floatdixf.So: tconfig.h
|
||||
_floatdixf.So: tm.h
|
||||
_floatundidf.So: options.h
|
||||
_floatundidf.So: tconfig.h
|
||||
_floatundidf.So: tm.h
|
||||
_floatundisf.So: options.h
|
||||
_floatundisf.So: tconfig.h
|
||||
_floatundisf.So: tm.h
|
||||
_floatunditf.So: options.h
|
||||
_floatunditf.So: tconfig.h
|
||||
_floatunditf.So: tm.h
|
||||
_floatundixf.So: options.h
|
||||
_floatundixf.So: tconfig.h
|
||||
_floatundixf.So: tm.h
|
||||
_lshrdi3.So: options.h
|
||||
_lshrdi3.So: tconfig.h
|
||||
_lshrdi3.So: tm.h
|
||||
_moddi3.So: options.h
|
||||
_moddi3.So: tconfig.h
|
||||
_moddi3.So: tm.h
|
||||
_muldc3.So: options.h
|
||||
_muldc3.So: tconfig.h
|
||||
_muldc3.So: tm.h
|
||||
_muldi3.So: options.h
|
||||
_muldi3.So: tconfig.h
|
||||
_muldi3.So: tm.h
|
||||
_mulsc3.So: options.h
|
||||
_mulsc3.So: tconfig.h
|
||||
_mulsc3.So: tm.h
|
||||
_multc3.So: options.h
|
||||
_multc3.So: tconfig.h
|
||||
_multc3.So: tm.h
|
||||
_mulvdi3.So: options.h
|
||||
_mulvdi3.So: tconfig.h
|
||||
_mulvdi3.So: tm.h
|
||||
_mulvsi3.So: options.h
|
||||
_mulvsi3.So: tconfig.h
|
||||
_mulvsi3.So: tm.h
|
||||
_mulxc3.So: options.h
|
||||
_mulxc3.So: tconfig.h
|
||||
_mulxc3.So: tm.h
|
||||
_negdi2.So: options.h
|
||||
_negdi2.So: tconfig.h
|
||||
_negdi2.So: tm.h
|
||||
_negvdi2.So: options.h
|
||||
_negvdi2.So: tconfig.h
|
||||
_negvdi2.So: tm.h
|
||||
_negvsi2.So: options.h
|
||||
_negvsi2.So: tconfig.h
|
||||
_negvsi2.So: tm.h
|
||||
_paritydi2.So: options.h
|
||||
_paritydi2.So: tconfig.h
|
||||
_paritydi2.So: tm.h
|
||||
_paritysi2.So: options.h
|
||||
_paritysi2.So: tconfig.h
|
||||
_paritysi2.So: tm.h
|
||||
_popcount_tab.So: options.h
|
||||
_popcount_tab.So: tconfig.h
|
||||
_popcount_tab.So: tm.h
|
||||
_popcountdi2.So: options.h
|
||||
_popcountdi2.So: tconfig.h
|
||||
_popcountdi2.So: tm.h
|
||||
_popcountsi2.So: options.h
|
||||
_popcountsi2.So: tconfig.h
|
||||
_popcountsi2.So: tm.h
|
||||
_powidf2.So: options.h
|
||||
_powidf2.So: tconfig.h
|
||||
_powidf2.So: tm.h
|
||||
_powisf2.So: options.h
|
||||
_powisf2.So: tconfig.h
|
||||
_powisf2.So: tm.h
|
||||
_powitf2.So: options.h
|
||||
_powitf2.So: tconfig.h
|
||||
_powitf2.So: tm.h
|
||||
_powixf2.So: options.h
|
||||
_powixf2.So: tconfig.h
|
||||
_powixf2.So: tm.h
|
||||
_subvdi3.So: options.h
|
||||
_subvdi3.So: tconfig.h
|
||||
_subvdi3.So: tm.h
|
||||
_subvsi3.So: options.h
|
||||
_subvsi3.So: tconfig.h
|
||||
_subvsi3.So: tm.h
|
||||
_trampoline.So: options.h
|
||||
_trampoline.So: tconfig.h
|
||||
_trampoline.So: tm.h
|
||||
_ucmpdi2.So: options.h
|
||||
_ucmpdi2.So: tconfig.h
|
||||
_ucmpdi2.So: tm.h
|
||||
_udiv_w_sdiv.So: options.h
|
||||
_udiv_w_sdiv.So: tconfig.h
|
||||
_udiv_w_sdiv.So: tm.h
|
||||
_udivdi3.So: options.h
|
||||
_udivdi3.So: tconfig.h
|
||||
_udivdi3.So: tm.h
|
||||
_udivmoddi4.So: options.h
|
||||
_udivmoddi4.So: tconfig.h
|
||||
_udivmoddi4.So: tm.h
|
||||
_umoddi3.So: options.h
|
||||
_umoddi3.So: tconfig.h
|
||||
_umoddi3.So: tm.h
|
||||
unwind-c.So: tconfig.h
|
||||
unwind-c.So: unwind.h
|
||||
unwind-c.o: tconfig.h
|
||||
unwind-c.o: unwind.h
|
||||
unwind-c.po: tconfig.h
|
||||
unwind-c.po: unwind.h
|
||||
unwind-dw2-fde-glibc.So: gthr-default.h
|
||||
unwind-dw2-fde-glibc.So: options.h
|
||||
unwind-dw2-fde-glibc.So: tconfig.h
|
||||
unwind-dw2-fde-glibc.So: tm.h
|
||||
unwind-dw2-fde-glibc.So: unwind.h
|
||||
unwind-dw2-fde-glibc.o: gthr-default.h
|
||||
unwind-dw2-fde-glibc.o: options.h
|
||||
unwind-dw2-fde-glibc.o: tconfig.h
|
||||
unwind-dw2-fde-glibc.o: tm.h
|
||||
unwind-dw2-fde-glibc.o: unwind.h
|
||||
unwind-dw2-fde-glibc.po: gthr-default.h
|
||||
unwind-dw2-fde-glibc.po: options.h
|
||||
unwind-dw2-fde-glibc.po: tconfig.h
|
||||
unwind-dw2-fde-glibc.po: tm.h
|
||||
unwind-dw2-fde-glibc.po: unwind.h
|
||||
unwind-dw2.So: gthr-default.h
|
||||
unwind-dw2.So: options.h
|
||||
unwind-dw2.So: tconfig.h
|
||||
unwind-dw2.So: tm.h
|
||||
unwind-dw2.So: unwind.h
|
||||
unwind-dw2.o: gthr-default.h
|
||||
unwind-dw2.o: options.h
|
||||
unwind-dw2.o: tconfig.h
|
||||
unwind-dw2.o: tm.h
|
||||
unwind-dw2.o: unwind.h
|
||||
unwind-dw2.po: gthr-default.h
|
||||
unwind-dw2.po: options.h
|
||||
unwind-dw2.po: tconfig.h
|
||||
unwind-dw2.po: tm.h
|
||||
unwind-dw2.po: unwind.h
|
||||
unwind-sjlj.So: gthr-default.h
|
||||
unwind-sjlj.So: options.h
|
||||
unwind-sjlj.So: tconfig.h
|
||||
unwind-sjlj.So: tm.h
|
||||
unwind-sjlj.So: unwind.h
|
||||
unwind-sjlj.o: gthr-default.h
|
||||
unwind-sjlj.o: options.h
|
||||
unwind-sjlj.o: tconfig.h
|
||||
unwind-sjlj.o: tm.h
|
||||
unwind-sjlj.o: unwind.h
|
||||
unwind-sjlj.po: gthr-default.h
|
||||
unwind-sjlj.po: options.h
|
||||
unwind-sjlj.po: tconfig.h
|
||||
unwind-sjlj.po: tm.h
|
||||
unwind-sjlj.po: unwind.h
|
||||
.endif
|
128
gnu/lib/libgcov/Makefile.depend
Normal file
128
gnu/lib/libgcov/Makefile.depend
Normal file
@ -0,0 +1,128 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
_gcov.o: gcov-iov.h
|
||||
_gcov.o: options.h
|
||||
_gcov.o: tconfig.h
|
||||
_gcov.o: tm.h
|
||||
_gcov.po: gcov-iov.h
|
||||
_gcov.po: options.h
|
||||
_gcov.po: tconfig.h
|
||||
_gcov.po: tm.h
|
||||
_gcov_execl.o: gcov-iov.h
|
||||
_gcov_execl.o: options.h
|
||||
_gcov_execl.o: tconfig.h
|
||||
_gcov_execl.o: tm.h
|
||||
_gcov_execl.po: gcov-iov.h
|
||||
_gcov_execl.po: options.h
|
||||
_gcov_execl.po: tconfig.h
|
||||
_gcov_execl.po: tm.h
|
||||
_gcov_execle.o: gcov-iov.h
|
||||
_gcov_execle.o: options.h
|
||||
_gcov_execle.o: tconfig.h
|
||||
_gcov_execle.o: tm.h
|
||||
_gcov_execle.po: gcov-iov.h
|
||||
_gcov_execle.po: options.h
|
||||
_gcov_execle.po: tconfig.h
|
||||
_gcov_execle.po: tm.h
|
||||
_gcov_execlp.o: gcov-iov.h
|
||||
_gcov_execlp.o: options.h
|
||||
_gcov_execlp.o: tconfig.h
|
||||
_gcov_execlp.o: tm.h
|
||||
_gcov_execlp.po: gcov-iov.h
|
||||
_gcov_execlp.po: options.h
|
||||
_gcov_execlp.po: tconfig.h
|
||||
_gcov_execlp.po: tm.h
|
||||
_gcov_execv.o: gcov-iov.h
|
||||
_gcov_execv.o: options.h
|
||||
_gcov_execv.o: tconfig.h
|
||||
_gcov_execv.o: tm.h
|
||||
_gcov_execv.po: gcov-iov.h
|
||||
_gcov_execv.po: options.h
|
||||
_gcov_execv.po: tconfig.h
|
||||
_gcov_execv.po: tm.h
|
||||
_gcov_execve.o: gcov-iov.h
|
||||
_gcov_execve.o: options.h
|
||||
_gcov_execve.o: tconfig.h
|
||||
_gcov_execve.o: tm.h
|
||||
_gcov_execve.po: gcov-iov.h
|
||||
_gcov_execve.po: options.h
|
||||
_gcov_execve.po: tconfig.h
|
||||
_gcov_execve.po: tm.h
|
||||
_gcov_execvp.o: gcov-iov.h
|
||||
_gcov_execvp.o: options.h
|
||||
_gcov_execvp.o: tconfig.h
|
||||
_gcov_execvp.o: tm.h
|
||||
_gcov_execvp.po: gcov-iov.h
|
||||
_gcov_execvp.po: options.h
|
||||
_gcov_execvp.po: tconfig.h
|
||||
_gcov_execvp.po: tm.h
|
||||
_gcov_fork.o: gcov-iov.h
|
||||
_gcov_fork.o: options.h
|
||||
_gcov_fork.o: tconfig.h
|
||||
_gcov_fork.o: tm.h
|
||||
_gcov_fork.po: gcov-iov.h
|
||||
_gcov_fork.po: options.h
|
||||
_gcov_fork.po: tconfig.h
|
||||
_gcov_fork.po: tm.h
|
||||
_gcov_interval_profiler.o: gcov-iov.h
|
||||
_gcov_interval_profiler.o: options.h
|
||||
_gcov_interval_profiler.o: tconfig.h
|
||||
_gcov_interval_profiler.o: tm.h
|
||||
_gcov_interval_profiler.po: gcov-iov.h
|
||||
_gcov_interval_profiler.po: options.h
|
||||
_gcov_interval_profiler.po: tconfig.h
|
||||
_gcov_interval_profiler.po: tm.h
|
||||
_gcov_merge_add.o: gcov-iov.h
|
||||
_gcov_merge_add.o: options.h
|
||||
_gcov_merge_add.o: tconfig.h
|
||||
_gcov_merge_add.o: tm.h
|
||||
_gcov_merge_add.po: gcov-iov.h
|
||||
_gcov_merge_add.po: options.h
|
||||
_gcov_merge_add.po: tconfig.h
|
||||
_gcov_merge_add.po: tm.h
|
||||
_gcov_merge_delta.o: gcov-iov.h
|
||||
_gcov_merge_delta.o: options.h
|
||||
_gcov_merge_delta.o: tconfig.h
|
||||
_gcov_merge_delta.o: tm.h
|
||||
_gcov_merge_delta.po: gcov-iov.h
|
||||
_gcov_merge_delta.po: options.h
|
||||
_gcov_merge_delta.po: tconfig.h
|
||||
_gcov_merge_delta.po: tm.h
|
||||
_gcov_merge_single.o: gcov-iov.h
|
||||
_gcov_merge_single.o: options.h
|
||||
_gcov_merge_single.o: tconfig.h
|
||||
_gcov_merge_single.o: tm.h
|
||||
_gcov_merge_single.po: gcov-iov.h
|
||||
_gcov_merge_single.po: options.h
|
||||
_gcov_merge_single.po: tconfig.h
|
||||
_gcov_merge_single.po: tm.h
|
||||
_gcov_one_value_profiler.o: gcov-iov.h
|
||||
_gcov_one_value_profiler.o: options.h
|
||||
_gcov_one_value_profiler.o: tconfig.h
|
||||
_gcov_one_value_profiler.o: tm.h
|
||||
_gcov_one_value_profiler.po: gcov-iov.h
|
||||
_gcov_one_value_profiler.po: options.h
|
||||
_gcov_one_value_profiler.po: tconfig.h
|
||||
_gcov_one_value_profiler.po: tm.h
|
||||
_gcov_pow2_profiler.o: gcov-iov.h
|
||||
_gcov_pow2_profiler.o: options.h
|
||||
_gcov_pow2_profiler.o: tconfig.h
|
||||
_gcov_pow2_profiler.o: tm.h
|
||||
_gcov_pow2_profiler.po: gcov-iov.h
|
||||
_gcov_pow2_profiler.po: options.h
|
||||
_gcov_pow2_profiler.po: tconfig.h
|
||||
_gcov_pow2_profiler.po: tm.h
|
||||
.endif
|
79
gnu/lib/libgomp/Makefile.depend
Normal file
79
gnu/lib/libgomp/Makefile.depend
Normal file
@ -0,0 +1,79 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
alloc.So: gstdint.h
|
||||
alloc.o: gstdint.h
|
||||
alloc.po: gstdint.h
|
||||
bar.So: gstdint.h
|
||||
bar.o: gstdint.h
|
||||
bar.po: gstdint.h
|
||||
barrier.So: gstdint.h
|
||||
barrier.o: gstdint.h
|
||||
barrier.po: gstdint.h
|
||||
critical.So: gstdint.h
|
||||
critical.o: gstdint.h
|
||||
critical.po: gstdint.h
|
||||
env.So: gstdint.h
|
||||
env.So: libgomp_f.h
|
||||
env.o: gstdint.h
|
||||
env.o: libgomp_f.h
|
||||
env.po: gstdint.h
|
||||
env.po: libgomp_f.h
|
||||
error.So: gstdint.h
|
||||
error.o: gstdint.h
|
||||
error.po: gstdint.h
|
||||
fortran.So: gstdint.h
|
||||
fortran.So: libgomp_f.h
|
||||
fortran.o: gstdint.h
|
||||
fortran.o: libgomp_f.h
|
||||
fortran.po: gstdint.h
|
||||
fortran.po: libgomp_f.h
|
||||
iter.So: gstdint.h
|
||||
iter.o: gstdint.h
|
||||
iter.po: gstdint.h
|
||||
lock.So: gstdint.h
|
||||
lock.o: gstdint.h
|
||||
lock.po: gstdint.h
|
||||
loop.So: gstdint.h
|
||||
loop.o: gstdint.h
|
||||
loop.po: gstdint.h
|
||||
ordered.So: gstdint.h
|
||||
ordered.o: gstdint.h
|
||||
ordered.po: gstdint.h
|
||||
parallel.So: gstdint.h
|
||||
parallel.o: gstdint.h
|
||||
parallel.po: gstdint.h
|
||||
proc.So: gstdint.h
|
||||
proc.o: gstdint.h
|
||||
proc.po: gstdint.h
|
||||
sections.So: gstdint.h
|
||||
sections.o: gstdint.h
|
||||
sections.po: gstdint.h
|
||||
sem.So: gstdint.h
|
||||
sem.o: gstdint.h
|
||||
sem.po: gstdint.h
|
||||
single.So: gstdint.h
|
||||
single.o: gstdint.h
|
||||
single.po: gstdint.h
|
||||
team.So: gstdint.h
|
||||
team.o: gstdint.h
|
||||
team.po: gstdint.h
|
||||
time.So: gstdint.h
|
||||
time.o: gstdint.h
|
||||
time.po: gstdint.h
|
||||
work.So: gstdint.h
|
||||
work.o: gstdint.h
|
||||
work.po: gstdint.h
|
||||
.endif
|
16
gnu/lib/libreadline/history/Makefile.depend
Normal file
16
gnu/lib/libreadline/history/Makefile.depend
Normal file
@ -0,0 +1,16 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
16
gnu/lib/libreadline/readline/Makefile.depend
Normal file
16
gnu/lib/libreadline/readline/Makefile.depend
Normal file
@ -0,0 +1,16 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
19
gnu/lib/libregex/Makefile.depend
Normal file
19
gnu/lib/libregex/Makefile.depend
Normal file
@ -0,0 +1,19 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
gnuregex.So: gnuregex.c
|
||||
gnuregex.o: gnuregex.c
|
||||
gnuregex.po: gnuregex.c
|
||||
.endif
|
16
gnu/lib/libssp/Makefile.depend
Normal file
16
gnu/lib/libssp/Makefile.depend
Normal file
@ -0,0 +1,16 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
14
gnu/lib/libssp/libssp_nonshared/Makefile.depend
Normal file
14
gnu/lib/libssp/libssp_nonshared/Makefile.depend
Normal file
@ -0,0 +1,14 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
65
gnu/lib/libstdc++/Makefile.depend
Normal file
65
gnu/lib/libstdc++/Makefile.depend
Normal file
@ -0,0 +1,65 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
atomicity.So: atomicity.cc
|
||||
atomicity.o: atomicity.cc
|
||||
atomicity.po: atomicity.cc
|
||||
eh_alloc.So: unwind.h
|
||||
eh_alloc.o: unwind.h
|
||||
eh_alloc.po: unwind.h
|
||||
eh_arm.So: unwind.h
|
||||
eh_arm.o: unwind.h
|
||||
eh_arm.po: unwind.h
|
||||
eh_aux_runtime.So: unwind.h
|
||||
eh_aux_runtime.o: unwind.h
|
||||
eh_aux_runtime.po: unwind.h
|
||||
eh_call.So: unwind.h
|
||||
eh_call.o: unwind.h
|
||||
eh_call.po: unwind.h
|
||||
eh_catch.So: unwind.h
|
||||
eh_catch.o: unwind.h
|
||||
eh_catch.po: unwind.h
|
||||
eh_exception.So: unwind.h
|
||||
eh_exception.o: unwind.h
|
||||
eh_exception.po: unwind.h
|
||||
eh_globals.So: unwind.h
|
||||
eh_globals.o: unwind.h
|
||||
eh_globals.po: unwind.h
|
||||
eh_personality.So: unwind.h
|
||||
eh_personality.o: unwind.h
|
||||
eh_personality.po: unwind.h
|
||||
eh_term_handler.So: unwind.h
|
||||
eh_term_handler.o: unwind.h
|
||||
eh_term_handler.po: unwind.h
|
||||
eh_terminate.So: unwind.h
|
||||
eh_terminate.o: unwind.h
|
||||
eh_terminate.po: unwind.h
|
||||
eh_throw.So: unwind.h
|
||||
eh_throw.o: unwind.h
|
||||
eh_throw.po: unwind.h
|
||||
eh_type.So: unwind.h
|
||||
eh_type.o: unwind.h
|
||||
eh_type.po: unwind.h
|
||||
eh_unex_handler.So: unwind.h
|
||||
eh_unex_handler.o: unwind.h
|
||||
eh_unex_handler.po: unwind.h
|
||||
pure.So: unwind.h
|
||||
pure.o: unwind.h
|
||||
pure.po: unwind.h
|
||||
vec.So: unwind.h
|
||||
vec.o: unwind.h
|
||||
vec.po: unwind.h
|
||||
.endif
|
61
gnu/lib/libsupc++/Makefile.depend
Normal file
61
gnu/lib/libsupc++/Makefile.depend
Normal file
@ -0,0 +1,61 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
eh_alloc.So: unwind.h
|
||||
eh_alloc.o: unwind.h
|
||||
eh_alloc.po: unwind.h
|
||||
eh_arm.So: unwind.h
|
||||
eh_arm.o: unwind.h
|
||||
eh_arm.po: unwind.h
|
||||
eh_aux_runtime.So: unwind.h
|
||||
eh_aux_runtime.o: unwind.h
|
||||
eh_aux_runtime.po: unwind.h
|
||||
eh_call.So: unwind.h
|
||||
eh_call.o: unwind.h
|
||||
eh_call.po: unwind.h
|
||||
eh_catch.So: unwind.h
|
||||
eh_catch.o: unwind.h
|
||||
eh_catch.po: unwind.h
|
||||
eh_exception.So: unwind.h
|
||||
eh_exception.o: unwind.h
|
||||
eh_exception.po: unwind.h
|
||||
eh_globals.So: unwind.h
|
||||
eh_globals.o: unwind.h
|
||||
eh_globals.po: unwind.h
|
||||
eh_personality.So: unwind.h
|
||||
eh_personality.o: unwind.h
|
||||
eh_personality.po: unwind.h
|
||||
eh_term_handler.So: unwind.h
|
||||
eh_term_handler.o: unwind.h
|
||||
eh_term_handler.po: unwind.h
|
||||
eh_terminate.So: unwind.h
|
||||
eh_terminate.o: unwind.h
|
||||
eh_terminate.po: unwind.h
|
||||
eh_throw.So: unwind.h
|
||||
eh_throw.o: unwind.h
|
||||
eh_throw.po: unwind.h
|
||||
eh_type.So: unwind.h
|
||||
eh_type.o: unwind.h
|
||||
eh_type.po: unwind.h
|
||||
eh_unex_handler.So: unwind.h
|
||||
eh_unex_handler.o: unwind.h
|
||||
eh_unex_handler.po: unwind.h
|
||||
pure.So: unwind.h
|
||||
pure.o: unwind.h
|
||||
pure.po: unwind.h
|
||||
vec.So: unwind.h
|
||||
vec.o: unwind.h
|
||||
vec.po: unwind.h
|
||||
.endif
|
22
gnu/usr.bin/binutils/addr2line/Makefile.depend
Normal file
22
gnu/usr.bin/binutils/addr2line/Makefile.depend
Normal file
@ -0,0 +1,22 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libbinutils \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
21
gnu/usr.bin/binutils/ar/Makefile.depend
Normal file
21
gnu/usr.bin/binutils/ar/Makefile.depend
Normal file
@ -0,0 +1,21 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libbinutils \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
21
gnu/usr.bin/binutils/as/Makefile.depend
Normal file
21
gnu/usr.bin/binutils/as/Makefile.depend
Normal file
@ -0,0 +1,21 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
gnu/usr.bin/binutils/libopcodes \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
50
gnu/usr.bin/binutils/ld/Makefile.depend
Normal file
50
gnu/usr.bin/binutils/ld/Makefile.depend
Normal file
@ -0,0 +1,50 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
eelf_i386_fbsd.o: eelf_i386_fbsd.c
|
||||
eelf_i386_fbsd.o: ldgram.h
|
||||
eelf_i386_fbsd.po: eelf_i386_fbsd.c
|
||||
eelf_i386_fbsd.po: ldgram.h
|
||||
ldctor.o: ldgram.h
|
||||
ldctor.po: ldgram.h
|
||||
ldemul.o: ldemul-list.h
|
||||
ldemul.po: ldemul-list.h
|
||||
ldexp.o: ldgram.h
|
||||
ldexp.po: ldgram.h
|
||||
ldfile.o: ldgram.h
|
||||
ldfile.po: ldgram.h
|
||||
ldgram.o: ldgram.c
|
||||
ldgram.po: ldgram.c
|
||||
ldlang.o: ldgram.h
|
||||
ldlang.po: ldgram.h
|
||||
ldlex.o: ldgram.h
|
||||
ldlex.o: ldlex.c
|
||||
ldlex.po: ldgram.h
|
||||
ldlex.po: ldlex.c
|
||||
ldmain.o: ldgram.h
|
||||
ldmain.po: ldgram.h
|
||||
ldmisc.o: ldgram.h
|
||||
ldmisc.po: ldgram.h
|
||||
ldwrite.o: ldgram.h
|
||||
ldwrite.po: ldgram.h
|
||||
lexsup.o: ldgram.h
|
||||
lexsup.po: ldgram.h
|
||||
mri.o: ldgram.h
|
||||
mri.po: ldgram.h
|
||||
.endif
|
104
gnu/usr.bin/binutils/libbfd/Makefile.depend
Normal file
104
gnu/usr.bin/binutils/libbfd/Makefile.depend
Normal file
@ -0,0 +1,104 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
archive.o: config.h
|
||||
archive.po: config.h
|
||||
archive64.o: config.h
|
||||
archive64.po: config.h
|
||||
archures.o: config.h
|
||||
archures.po: config.h
|
||||
bfd.o: bfdver.h
|
||||
bfd.o: config.h
|
||||
bfd.po: bfdver.h
|
||||
bfd.po: config.h
|
||||
bfdio.o: config.h
|
||||
bfdio.po: config.h
|
||||
bfdwin.o: config.h
|
||||
bfdwin.po: config.h
|
||||
binary.o: config.h
|
||||
binary.po: config.h
|
||||
cache.o: config.h
|
||||
cache.po: config.h
|
||||
coffgen.o: config.h
|
||||
coffgen.po: config.h
|
||||
cofflink.o: config.h
|
||||
cofflink.po: config.h
|
||||
corefile.o: config.h
|
||||
corefile.po: config.h
|
||||
cpu-i386.o: config.h
|
||||
cpu-i386.po: config.h
|
||||
dwarf1.o: config.h
|
||||
dwarf1.po: config.h
|
||||
dwarf2.o: config.h
|
||||
dwarf2.po: config.h
|
||||
efi-app-ia32.o: config.h
|
||||
efi-app-ia32.po: config.h
|
||||
elf-attrs.o: config.h
|
||||
elf-attrs.po: config.h
|
||||
elf-eh-frame.o: config.h
|
||||
elf-eh-frame.po: config.h
|
||||
elf-strtab.o: config.h
|
||||
elf-strtab.po: config.h
|
||||
elf-vxworks.o: config.h
|
||||
elf-vxworks.po: config.h
|
||||
elf.o: config.h
|
||||
elf.po: config.h
|
||||
elf32-i386.o: config.h
|
||||
elf32-i386.o: elf32-target.h
|
||||
elf32-i386.po: config.h
|
||||
elf32-i386.po: elf32-target.h
|
||||
elf32.o: config.h
|
||||
elf32.po: config.h
|
||||
elflink.o: config.h
|
||||
elflink.po: config.h
|
||||
format.o: config.h
|
||||
format.po: config.h
|
||||
hash.o: config.h
|
||||
hash.po: config.h
|
||||
ihex.o: config.h
|
||||
ihex.po: config.h
|
||||
init.o: config.h
|
||||
init.po: config.h
|
||||
libbfd.o: config.h
|
||||
libbfd.po: config.h
|
||||
linker.o: config.h
|
||||
linker.po: config.h
|
||||
merge.o: config.h
|
||||
merge.po: config.h
|
||||
opncls.o: config.h
|
||||
opncls.po: config.h
|
||||
peigen.o: config.h
|
||||
peigen.o: peigen.c
|
||||
peigen.po: config.h
|
||||
peigen.po: peigen.c
|
||||
reloc.o: config.h
|
||||
reloc.po: config.h
|
||||
section.o: config.h
|
||||
section.po: config.h
|
||||
simple.o: config.h
|
||||
simple.po: config.h
|
||||
srec.o: config.h
|
||||
srec.po: config.h
|
||||
stabs.o: config.h
|
||||
stabs.po: config.h
|
||||
syms.o: config.h
|
||||
syms.po: config.h
|
||||
targets.o: config.h
|
||||
targets.o: targmatch.h
|
||||
targets.po: config.h
|
||||
targets.po: targmatch.h
|
||||
tekhex.o: config.h
|
||||
tekhex.po: config.h
|
||||
.endif
|
23
gnu/usr.bin/binutils/libbinutils/Makefile.depend
Normal file
23
gnu/usr.bin/binutils/libbinutils/Makefile.depend
Normal file
@ -0,0 +1,23 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
arlex.o: arlex.c
|
||||
arlex.o: arparse.h
|
||||
arlex.po: arlex.c
|
||||
arlex.po: arparse.h
|
||||
arparse.o: arparse.c
|
||||
arparse.po: arparse.c
|
||||
.endif
|
17
gnu/usr.bin/binutils/libiberty/Makefile.depend
Normal file
17
gnu/usr.bin/binutils/libiberty/Makefile.depend
Normal file
@ -0,0 +1,17 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/msun \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
16
gnu/usr.bin/binutils/libopcodes/Makefile.depend
Normal file
16
gnu/usr.bin/binutils/libopcodes/Makefile.depend
Normal file
@ -0,0 +1,16 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
include \
|
||||
include/xlocale \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
22
gnu/usr.bin/binutils/nm/Makefile.depend
Normal file
22
gnu/usr.bin/binutils/nm/Makefile.depend
Normal file
@ -0,0 +1,22 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libbinutils \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
22
gnu/usr.bin/binutils/objcopy/Makefile.depend
Normal file
22
gnu/usr.bin/binutils/objcopy/Makefile.depend
Normal file
@ -0,0 +1,22 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libbinutils \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
23
gnu/usr.bin/binutils/objdump/Makefile.depend
Normal file
23
gnu/usr.bin/binutils/objdump/Makefile.depend
Normal file
@ -0,0 +1,23 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libbinutils \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
gnu/usr.bin/binutils/libopcodes \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
21
gnu/usr.bin/binutils/ranlib/Makefile.depend
Normal file
21
gnu/usr.bin/binutils/ranlib/Makefile.depend
Normal file
@ -0,0 +1,21 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libbinutils \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
22
gnu/usr.bin/binutils/readelf/Makefile.depend
Normal file
22
gnu/usr.bin/binutils/readelf/Makefile.depend
Normal file
@ -0,0 +1,22 @@
|
||||
# Autogenerated - do NOT edit!
|
||||
|
||||
DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,}
|
||||
|
||||
DEP_MACHINE := ${.PARSEFILE:E}
|
||||
|
||||
DIRDEPS = \
|
||||
gnu/lib/libgcc \
|
||||
gnu/usr.bin/binutils/libbfd \
|
||||
gnu/usr.bin/binutils/libbinutils \
|
||||
gnu/usr.bin/binutils/libiberty \
|
||||
include \
|
||||
include/xlocale \
|
||||
lib/${CSU_DIR} \
|
||||
lib/libc \
|
||||
|
||||
|
||||
.include <dirdeps.mk>
|
||||
|
||||
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
|
||||
# local dependencies - needed for -jN in clean tree
|
||||
.endif
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user