1SYSDIR?=${SRCTOP}/sys 2.include "${SYSDIR}/conf/kern.opts.mk" 3 4SUBDIR= async \ 5 ${_bluetooth} \ 6 bpf \ 7 bridge \ 8 car \ 9 checksum \ 10 cisco \ 11 deflate \ 12 device \ 13 echo \ 14 eiface \ 15 etf \ 16 ether \ 17 ether_echo \ 18 frame_relay \ 19 gif \ 20 gif_demux \ 21 hole \ 22 hub \ 23 iface \ 24 ip_input \ 25 ipfw \ 26 ksocket \ 27 l2tp \ 28 lmi \ 29 macfilter \ 30 ${_mppc} \ 31 nat \ 32 netflow \ 33 netgraph \ 34 one2many \ 35 patch \ 36 pipe \ 37 ppp \ 38 pppoe \ 39 pptpgre \ 40 pred1 \ 41 rfc1490 \ 42 socket \ 43 source \ 44 split \ 45 tag \ 46 tcpmss \ 47 tee \ 48 tty \ 49 UI \ 50 vjc \ 51 vlan \ 52 vlan_rotate 53 54.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES) 55_bluetooth= bluetooth 56.endif 57 58.if ${MK_CRYPT} != "no" && exists(${SYSDIR}/crypto/rc4/rc4.c) 59_mppc= mppc 60.endif 61 62.include <bsd.subdir.mk> 63