1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1994-05-28 04:10:32 +00:00
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2000-03-19 11:42:34 +00:00
|
|
|
# The boot loader
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_BOOT} != "no"
|
2003-06-26 03:52:48 +00:00
|
|
|
SUBDIR= boot
|
2004-05-16 00:19:12 +00:00
|
|
|
.endif
|
1998-11-03 06:50:58 +00:00
|
|
|
|
2005-03-05 00:56:15 +00:00
|
|
|
# Directories to include in cscope name file and TAGS.
|
2008-07-20 09:16:00 +00:00
|
|
|
CSCOPEDIRS= boot bsm cam cddl compat conf contrib crypto ddb dev fs gdb \
|
|
|
|
geom gnu isa kern libkern modules net net80211 netatalk \
|
2007-07-05 08:55:14 +00:00
|
|
|
netgraph netinet netinet6 netipsec netipx netnatm netncp \
|
2009-05-22 12:35:12 +00:00
|
|
|
netsmb nfs nfsclient nfsserver nlm opencrypto \
|
2009-02-15 18:19:24 +00:00
|
|
|
pci rpc security sys ufs vm xdr ${CSCOPE_ARCHDIR}
|
2008-07-10 16:03:24 +00:00
|
|
|
.if defined(ALL_ARCH)
|
2008-07-20 09:16:00 +00:00
|
|
|
CSCOPE_ARCHDIR ?= amd64 arm i386 ia64 mips pc98 powerpc sparc64 sun4v
|
2008-07-10 16:03:24 +00:00
|
|
|
.else
|
|
|
|
CSCOPE_ARCHDIR ?= ${MACHINE}
|
|
|
|
.endif
|
2005-03-05 00:56:15 +00:00
|
|
|
|
2004-01-17 03:28:27 +00:00
|
|
|
# Loadable kernel modules
|
2005-03-05 00:56:15 +00:00
|
|
|
|
2000-06-17 10:51:56 +00:00
|
|
|
.if defined(MODULES_WITH_WORLD)
|
|
|
|
SUBDIR+=modules
|
|
|
|
.endif
|
|
|
|
|
1997-07-13 07:36:20 +00:00
|
|
|
HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
|
|
|
|
|
2007-07-05 08:55:14 +00:00
|
|
|
# You need the devel/cscope port for this.
|
2008-05-21 07:56:10 +00:00
|
|
|
cscope: cscope.out
|
|
|
|
cscope.out: ${.CURDIR}/cscope.files
|
|
|
|
cd ${.CURDIR}; cscope -k -buq -p4
|
2005-03-05 00:56:15 +00:00
|
|
|
|
2008-05-21 07:56:10 +00:00
|
|
|
${.CURDIR}/cscope.files: .PHONY
|
|
|
|
cd ${.CURDIR}; \
|
|
|
|
find ${CSCOPEDIRS} -name "*.[chSs]" -a -type f > ${.TARGET}
|
|
|
|
|
|
|
|
cscope-clean:
|
|
|
|
rm -f cscope.files cscope.out cscope.in.out cscope.po.out
|
2005-03-05 00:56:15 +00:00
|
|
|
|
2007-07-05 08:55:14 +00:00
|
|
|
# You need the devel/global and one of editor/emacs* ports for that.
|
2008-05-21 07:56:10 +00:00
|
|
|
TAGS ${.CURDIR}/TAGS: ${.CURDIR}/cscope.files
|
2005-03-05 00:56:15 +00:00
|
|
|
rm -f ${.CURDIR}/TAGS
|
2008-05-21 07:56:10 +00:00
|
|
|
cd ${.CURDIR}; xargs etags -a < ${.CURDIR}/cscope.files
|
2005-03-05 00:56:15 +00:00
|
|
|
|
2008-08-08 18:00:33 +00:00
|
|
|
# You need the textproc/glimpse ports for this.
|
|
|
|
glimpse:
|
2008-08-15 14:11:30 +00:00
|
|
|
.if !exists(${.CURDIR}/.glimpse_exclude)
|
|
|
|
echo .svn > ${.CURDIR}/.glimpse_exclude
|
|
|
|
echo /compile/ >> ${.CURDIR}/.glimpse_exclude
|
|
|
|
.endif
|
2008-08-08 18:00:33 +00:00
|
|
|
cd ${.CURDIR}; glimpseindex -H . -B -f -o .
|
|
|
|
|
|
|
|
glimpse-clean:
|
|
|
|
cd ${.CURDIR}; rm -f .glimpse_*
|
|
|
|
|
1994-05-28 04:10:32 +00:00
|
|
|
.include <bsd.subdir.mk>
|