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

FreeBSD/Linux Kernel Cross Reference
sys/Makefile

Version: -  FREEBSD  -  FREEBSD8  -  FREEBSD7  -  FREEBSD72  -  FREEBSD71  -  FREEBSD70  -  FREEBSD6  -  FREEBSD64  -  FREEBSD63  -  FREEBSD62  -  FREEBSD61  -  FREEBSD60  -  FREEBSD5  -  FREEBSD55  -  FREEBSD54  -  FREEBSD53  -  FREEBSD52  -  FREEBSD51  -  FREEBSD50  -  FREEBSD4  -  FREEBSD3  -  FREEBSD22  -  linux-2.6  -  linux-2.4.22  -  MK83  -  MK84  -  PLAN9  -  DFBSD  -  NETBSD  -  NETBSD5  -  NETBSD4  -  NETBSD3  -  NETBSD20  -  OPENBSD  -  xnu-517  -  xnu-792  -  xnu-792.6.70  -  xnu-1228  -  xnu-1456.1.26  -  OPENSOLARIS  -  minix-3-1-1  -  FREEBSD-LIBC  -  FREEBSD7-LIBC  -  FREEBSD6-LIBC  -  GLIBC27 
SearchContext: -  none  -  excerpts  -  bigexcerpts 

    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 netgraph netproto vfs
   16 SUBDIR+=libiconv
   17 .endif
   18 .endif
   19 
   20 HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
   21 
   22 .include <bsd.subdir.mk>
   23 
   24 all_sysent:
   25         (cd ${.CURDIR}/kern; ${MAKE} sysent)
   26         (cd ${.CURDIR}/emulation/linux/i386; ${MAKE} sysent) 
   27 
   28 # XXX this may be temporary, should the module build be incorporated
   29 # into the default build (make the SUBDIR additions above non-conditional)?
   30 #
   31 modules:
   32         cd ${.CURDIR} && ${MAKE} -f Makefile.modules
   33 
   34 mobj:
   35         cd ${.CURDIR} && ${MAKE} -f Makefile.modules obj
   36 
   37 mclean:
   38         cd ${.CURDIR} && ${MAKE} -f Makefile.modules clean
   39 
   40 mcleanobj:
   41         cd ${.CURDIR} && ${MAKE} -f Makefile.modules cleanobj
   42 
   43 minstall:
   44         cd ${.CURDIR} && ${MAKE} -f Makefile.modules install
   45 

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.