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