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