1# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $ 2# $FreeBSD$ 3 4SUBDIR= UI \ 5 async \ 6 atm \ 7 ${_bluetooth} \ 8 bpf \ 9 bridge \ 10 cisco \ 11 echo \ 12 eiface \ 13 etf \ 14 ether \ 15 fec \ 16 frame_relay \ 17 gif \ 18 gif_demux \ 19 hole \ 20 iface \ 21 ip_input \ 22 ksocket \ 23 l2tp \ 24 lmi \ 25 ${_mppc} \ 26 netgraph \ 27 one2many \ 28 ppp \ 29 pppoe \ 30 pptpgre \ 31 rfc1490 \ 32 socket \ 33 split \ 34 sync_ar \ 35 sync_sr \ 36 tee \ 37 tty \ 38 vjc \ 39 vlan 40 41.if !defined(NOCRYPT) && exists(${.CURDIR}/../../crypto/rc4/rc4.c) 42_mppc= mppc 43.endif 44 45.if ${MACHINE_ARCH} == "i386" 46# Things that don't compile on alpha or are aout specific: 47.if !defined(NO_BLUETOOTH) || defined(ALL_MODULES) 48_bluetooth= bluetooth 49.endif 50.endif 51 52.include <bsd.subdir.mk> 53