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