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