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