iwm: Fix S:N reporting in ifconfig(8)
[dragonfly.git] / sys / Makefile
1 # $FreeBSD: src/sys/Makefile,v 1.20.2.1 2000/07/10 08:22:34 obrien Exp $
2
3 # Loadable kernel modules
4 #
5 .if defined(MODULES_WITH_WORLD)
6 .if defined(MODULES_OVERRIDE)
7 SUBDIR+=${MODULES_OVERRIDE}
8 .else
9 SUBDIR+=bus crypto dev gnu kern net netbt netproto vfs
10 .if defined(WANT_NETGRAPH7)
11 SUBDIR+=netgraph7
12 .else
13 SUBDIR+=netgraph
14 .endif
15 SUBDIR+=libiconv
16 .endif
17 .endif
18
19 .include <bsd.subdir.mk>
20
21 all_sysent:
22         (cd ${.CURDIR}/kern; ${MAKE} sysent)
23
24 # XXX this may be temporary, should the module build be incorporated
25 # into the default build (make the SUBDIR additions above non-conditional)?
26 #
27 modules:
28         cd ${.CURDIR} && ${MAKE} -f Makefile.modules
29
30 mobj:
31         cd ${.CURDIR} && ${MAKE} -f Makefile.modules obj
32
33 mclean:
34         cd ${.CURDIR} && ${MAKE} -f Makefile.modules clean
35
36 mcleanobj:
37         cd ${.CURDIR} && ${MAKE} -f Makefile.modules cleanobj
38
39 minstall:
40         cd ${.CURDIR} && ${MAKE} -f Makefile.modules install
41