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 deflate \ 14 device \ 15 echo \ 16 eiface \ 17 etf \ 18 ether \ 19 fec \ 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 ${_mppc} \ 32 nat \ 33 netflow \ 34 netgraph \ 35 one2many \ 36 ppp \ 37 pppoe \ 38 pptpgre \ 39 pred1 \ 40 rfc1490 \ 41 socket \ 42 source \ 43 split \ 44 sppp \ 45 ${_sync_ar} \ 46 ${_sync_sr} \ 47 tag \ 48 tcpmss \ 49 tee \ 50 tty \ 51 UI \ 52 vjc \ 53 vlan 54 55.if ${MACHINE_ARCH} == "i386" 56_sync_ar= sync_ar 57_sync_sr= sync_sr 58.endif 59 60.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES) 61_bluetooth= bluetooth 62.endif 63 64.if ${MK_CRYPT} != "no" && exists(${.CURDIR}/../../crypto/rc4/rc4.c) 65_mppc= mppc 66.endif 67 68.include <bsd.subdir.mk> 69