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