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 ${_mppc} \ 35 nat \ 36 netflow \ 37 netgraph \ 38 one2many \ 39 patch \ 40 pipe \ 41 ppp \ 42 pppoe \ 43 pptpgre \ 44 pred1 \ 45 rfc1490 \ 46 socket \ 47 source \ 48 split \ 49 sppp \ 50 tag \ 51 tcpmss \ 52 tee \ 53 tty \ 54 UI \ 55 vjc \ 56 vlan 57 58.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES) 59_bluetooth= bluetooth 60.endif 61 62.if ${MK_CRYPT} != "no" && exists(${SYSDIR}/crypto/rc4/rc4.c) 63_mppc= mppc 64.endif 65 66.include <bsd.subdir.mk> 67