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: src/sys/Makefile,v 1.20.2.1 2000/07/10 08:22:34 obrien Exp $
    2 # $DragonFly: src/sys/Makefile,v 1.16 2007/12/30 20:02:56 hasso Exp $
    3 
    4 # This is the old aout only boot loader.
    5 .if     exists(${.CURDIR}/boot)
    6 SUBDIR= boot
    7 .endif
    8 
    9 # KLD modules build for both a.out and ELF
   10 #
   11 .if defined(MODULES_WITH_WORLD)
   12 .if defined(MODULES_OVERRIDE)
   13 SUBDIR+=${MODULES_OVERRIDE}
   14 .else
   15 SUBDIR+=bus crypto emulation dev kern net netbt netproto vfs
   16 .if defined(WANT_NETGRAPH7) 
   17 SUBDIR+=netgraph7
   18 .else
   19 SUBDIR+=netgraph
   20 .endif
   21 SUBDIR+=libiconv
   22 .endif
   23 .endif
   24 
   25 HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
   26 
   27 .include <bsd.subdir.mk>
   28 
   29 all_sysent:
   30         (cd ${.CURDIR}/kern; ${MAKE} sysent)
   31         (cd ${.CURDIR}/emulation/linux/i386; ${MAKE} sysent) 
   32 
   33 # XXX this may be temporary, should the module build be incorporated
   34 # into the default build (make the SUBDIR additions above non-conditional)?
   35 #
   36 modules:
   37         cd ${.CURDIR} && ${MAKE} -f Makefile.modules
   38 
   39 mobj:
   40         cd ${.CURDIR} && ${MAKE} -f Makefile.modules obj
   41 
   42 mclean:
   43         cd ${.CURDIR} && ${MAKE} -f Makefile.modules clean
   44 
   45 mcleanobj:
   46         cd ${.CURDIR} && ${MAKE} -f Makefile.modules cleanobj
   47 
   48 minstall:
   49         cd ${.CURDIR} && ${MAKE} -f Makefile.modules install
   50 

Cache object: 772736a0f160cbf1a2ba75e5e0c535ba


[ 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.