kernel - Implement sbrk(), change low-address mmap hinting
[dragonfly.git] / sys / Makefile.modules
blobafacc19c91cb4f7163ccf01ccb3ec42519a10525
1 # Makefile.modules - build the modules (executed from the modules: target
2 # in Makefile).
4 .if defined(MODULES_OVERRIDE)
5 SUBDIR=${MODULES_OVERRIDE}
6 .else
7 .if ${MACHINE_PLATFORM} != "vkernel64"
8 SUBDIR=bus
9 .endif
10 SUBDIR+=crypto emulation dev gnu kern net netbt netproto vfs
11 .if defined(WANT_NETGRAPH7)
12 SUBDIR+=netgraph7
13 .else
14 SUBDIR+=netgraph
15 .endif
16 SUBDIR+=libiconv
17 .endif
19 .include <bsd.subdir.mk>