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