queue: Log 'last' ptr in addition to 'head'
[dragonfly.git] / sys / Makefile.modules
... / ...
CommitLineData
1# Makefile.modules - build the modules (executed from the modules: target
2# in Makefile).
3#
4.if defined(MODULES_OVERRIDE)
5SUBDIR=${MODULES_OVERRIDE}
6.else
7.if ${MACHINE_PLATFORM} != "vkernel64"
8SUBDIR=bus
9.endif
10SUBDIR+=crypto emulation dev gnu kern net netbt netproto vfs
11.if defined(WANT_NETGRAPH7)
12SUBDIR+=netgraph7
13.else
14SUBDIR+=netgraph
15.endif
16SUBDIR+=libiconv
17.endif
18
19.include <bsd.subdir.mk>
20