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