f0d1225734
arm64 is the only currently supported architecture that has ${MACHINE_CPUARCH} set to a different value (aarch64) than ${MACHINE} (arm64), as described in arch(7). However, there is no source directory associated with arm64 that has a name set to ${MACHINE_CPUARCH}. Remove the dead code that adds a directory with a name set to ${MACHINE_CPUARCH} to a list of directories indexed with cscope. This change allows to use the cscope target on arm64. Discussed with: jhb Reviewed by: imp jhb Approved by: oshogbo (mentor) Differential Revision: https://reviews.freebsd.org/D36402
70 lines
2.1 KiB
Makefile
70 lines
2.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
# Directories to include in cscope name file and TAGS.
|
|
CSCOPEDIRS= bsm cam cddl compat conf contrib crypto ddb dev fs gdb \
|
|
geom gnu isa kern libkern modules net net80211 \
|
|
netgraph netinet netinet6 netipsec netpfil \
|
|
netsmb nfs nfsclient nfsserver nlm ofed opencrypto \
|
|
rpc security sys ufs vm xdr xen ${CSCOPE_ARCHDIR}
|
|
.if !defined(CSCOPE_ARCHDIR)
|
|
.if defined(ALL_ARCH)
|
|
CSCOPE_ARCHDIR = amd64 arm arm64 i386 powerpc riscv x86
|
|
.else
|
|
CSCOPE_ARCHDIR = ${MACHINE}
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
CSCOPE_ARCHDIR += x86
|
|
.endif
|
|
.endif
|
|
.endif
|
|
|
|
HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
|
|
|
|
# You need the devel/cscope port for this.
|
|
cscope: cscope.out
|
|
cscope.out: ${.CURDIR}/cscope.files
|
|
cd ${.CURDIR}; cscope -k -buq -p4 -v
|
|
|
|
${.CURDIR}/cscope.files: .PHONY
|
|
cd ${.CURDIR}; \
|
|
find ${CSCOPEDIRS} -name "*.[chSsly]" -a -type f > ${.TARGET}
|
|
|
|
cscope-clean:
|
|
cd ${.CURDIR}; \
|
|
rm -f cscope.files cscope.out cscope.in.out cscope.po.out
|
|
|
|
#
|
|
# Installs SCM hooks to update the cscope database every time the source tree
|
|
# is updated.
|
|
# cscope understands incremental updates, so it's considerably faster when only
|
|
# a few files have changed.
|
|
#
|
|
HG_DIR=${.CURDIR}/../.hg
|
|
HG_HOOK=if [ \$$HG_ERROR -eq 0 ]; then cd sys && make -m ../share/mk cscope; fi
|
|
cscope-hook:
|
|
@if [ -d ${HG_DIR} ]; then \
|
|
if [ "`grep hooks ${HG_DIR}/hgrc`" = "" ]; then \
|
|
echo "[hooks]" >> ${HG_DIR}/hgrc; \
|
|
echo "update = ${HG_HOOK}" >> ${HG_DIR}/hgrc; \
|
|
echo "Hook installed in ${HG_DIR}/hgrc"; \
|
|
else \
|
|
echo "Mercurial update hook already exists."; \
|
|
fi; \
|
|
fi
|
|
|
|
# You need the devel/global and one of editor/emacs* ports for that.
|
|
TAGS ${.CURDIR}/TAGS: ${.CURDIR}/cscope.files
|
|
rm -f ${.CURDIR}/TAGS
|
|
cd ${.CURDIR}; xargs etags -a < ${.CURDIR}/cscope.files
|
|
|
|
.if !(make(cscope) || make(cscope-clean) || make(cscope-hook) || make(TAGS))
|
|
.include <src.opts.mk>
|
|
|
|
# Loadable kernel modules
|
|
|
|
.if defined(MODULES_WITH_WORLD)
|
|
SUBDIR+=modules
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|
|
.endif
|