4bb41ae2f2
cd ${KERNSRCDIR}/${KERNARCHDIR}/compile && ${PRINTOBJDIR} This is far simpler than the previous system, and more robust with objdirs built via BSDOBJDIR. The previous method of finding KERNOBJDIR when using BSDOBJDIR by referencing _SRC_TOP_OBJ_ from another directory was extremely fragile due to the depth first tree walk by <bsd.subdir.mk>, and the caching of _SRC_TOP_OBJ_ (with MAKEOVERRIDES) which would be empty on the *first* pass to create fresh objdirs. This change requires adding sys/arch/*/compile/Makefile to create the objdir in that directory, and descending into arch/*/compile from arch/*/Makefile. Remove the now-unnecessary .keep_me files whilst here. Per lengthy discussion with Andrew Brown.
33 lines
910 B
Makefile
33 lines
910 B
Makefile
# $NetBSD: Makefile,v 1.4 2003/01/06 17:40:54 lukem Exp $
|
|
|
|
# Makefile for x86_64 tags file and boot blocks
|
|
|
|
TX86_64= ${SYSDIR}/arch/x86_64/tags
|
|
SX86_64= ${SYSDIR}/arch/x86_64/x86_64/*.[ch] \
|
|
${SYSDIR}/arch/x86_64/include/*.h \
|
|
${SYSDIR}/arch/x86_64/isa/*.[ch] \
|
|
${SYSDIR}/arch/x86_64/pci/*.[ch]
|
|
AX86_64= ${SYSDIR}/arch/x86_64/x86_64/*.s ${SYSDIR}/arch/x86_64/isa/*.s
|
|
|
|
# Directories in which to place tags links
|
|
DX86_64= x86_64 isa include pci
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
tags:
|
|
rm -f ${TX86_64}
|
|
-echo ${SX86_64} ${COMM} | xargs ctags -wadtf ${TX86_64}
|
|
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AX86_64} | \
|
|
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
>> ${TX86_64}
|
|
sort -o ${TX86_64} ${TX86_64}
|
|
|
|
links:
|
|
-for i in ${DX86_64}; do \
|
|
(cd $$i && rm -f tags; ln -s ../tags tags); done
|
|
|
|
|
|
SUBDIR= compile include ../i386/include ../i386/stand
|
|
|
|
.include <bsd.subdir.mk>
|