The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/6.0/sys/Makefile 143268 2005-03-08 00:09:41Z grog $
    2 
    3 # The boot loader
    4 .if !defined(NO_BOOT)
    5 .if ${MACHINE_ARCH} != "arm"
    6 SUBDIR= boot
    7 .endif
    8 .endif
    9 
   10 # Directories to include in cscope name file and TAGS.
   11 CSCOPEDIRS=     coda compat conf contrib crypto ddb dev fs gnu i4b isa \
   12                 isofs kern libkern modules net netatalk netatm netgraph \
   13                 netinet netinet6 netipx netkey netnatm netncp netsmb nfs \
   14                 pccard pci posix4 sys ufs vm ${ARCHDIR}
   15 
   16 ARCHDIR ?=      ${MACHINE}
   17 
   18 # Loadable kernel modules
   19 
   20 .if defined(MODULES_WITH_WORLD)
   21 SUBDIR+=modules
   22 .endif
   23 
   24 HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
   25 
   26 cscope: ${.CURDIR}/cscopenamefile
   27         cd ${.CURDIR}; cscope -k -p4 -i cscopenamefile
   28 
   29 ${.CURDIR}/cscopenamefile: 
   30         cd ${.CURDIR}; find ${CSCOPEDIRS} -name "*.[csh]" > ${.TARGET}
   31 
   32 TAGS ${.CURDIR}/TAGS:   ${.CURDIR}/cscopenamefile
   33         rm -f ${.CURDIR}/TAGS
   34         cd ${.CURDIR}; xargs etags -a < ${.CURDIR}/cscopenamefile
   35 
   36 .include <bsd.subdir.mk>

Cache object: e0a2254ae0b6b5f5922101d7b87f48e2


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.