]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/Makefile
This commit was generated by cvs2svn to compensate for changes in r161657,
[FreeBSD/FreeBSD.git] / sys / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 # The boot loader
6 .if ${MK_BOOT} != "no"
7 SUBDIR= boot
8 .endif
9
10 # Directories to include in cscope name file and TAGS.
11 CSCOPEDIRS=     coda compat conf contrib crypto ddb dev fs geom gnu i4b isa \
12                 isofs kern libkern modules net net80211 netatalk netatm \
13                 netgraph netinet netinet6 netipx netkey netnatm netncp \
14                 netsmb nfs nfsclient nfs4client rpc pccard pci posix4 sys \
15                 ufs vm ${ARCHDIR}
16
17 ARCHDIR ?=      ${MACHINE}
18
19 # Loadable kernel modules
20
21 .if defined(MODULES_WITH_WORLD)
22 SUBDIR+=modules
23 .endif
24
25 HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
26
27 cscope: ${.CURDIR}/cscopenamefile
28         cd ${.CURDIR}; cscope -k -p4 -i cscopenamefile
29
30 ${.CURDIR}/cscopenamefile: 
31         cd ${.CURDIR}; find ${CSCOPEDIRS} -name "*.[csh]" > ${.TARGET}
32
33 TAGS ${.CURDIR}/TAGS:   ${.CURDIR}/cscopenamefile
34         rm -f ${.CURDIR}/TAGS
35         cd ${.CURDIR}; xargs etags -a < ${.CURDIR}/cscopenamefile
36
37 .include <bsd.subdir.mk>