xref: /dragonfly/sys/Makefile (revision e1acdbad)
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.10 2004/11/23 06:31:57 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 crypto emulation dev kern net netgraph netproto vfs
22SUBDIR+=libiconv
23.endif
24.endif
25
26HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
27
28.include <bsd.subdir.mk>
29
30all_sysent:
31	(cd ${.CURDIR}/kern; ${MAKE} sysent)
32	(cd ${.CURDIR}/emulation/svr4; ${MAKE} sysent)
33	(cd ${.CURDIR}/emulation/linux/i386; ${MAKE} sysent)
34	(cd ${.CURDIR}/emulation/ibcs2/i386; ${MAKE} sysent)
35
36# XXX this may be temporary, should the module build be incorporated
37# into the default build (make the SUBDIR additions above non-conditional)?
38#
39modules:
40	cd ${.CURDIR} && ${MAKE} -f Makefile.modules
41
42mobj:
43	cd ${.CURDIR} && ${MAKE} -f Makefile.modules obj
44
45mclean:
46	cd ${.CURDIR} && ${MAKE} -f Makefile.modules clean
47
48mcleanobj:
49	cd ${.CURDIR} && ${MAKE} -f Makefile.modules cleanobj
50
51minstall:
52	cd ${.CURDIR} && ${MAKE} -f Makefile.modules install
53
54