Makefile revision 128355
1# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
2# $FreeBSD: head/sys/modules/netgraph/Makefile 128355 2004-04-17 12:42:17Z ru $
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	hub \
21	iface \
22	ip_input \
23	ksocket \
24	l2tp \
25	lmi \
26	${_mppc} \
27	netgraph \
28	one2many \
29	ppp \
30	pppoe \
31	pptpgre \
32	rfc1490 \
33	socket \
34	split \
35	sync_ar \
36	sync_sr \
37	tee \
38	tty \
39	vjc \
40	vlan
41
42.if !defined(NOCRYPT) && exists(${.CURDIR}/../../crypto/rc4/rc4.c)
43_mppc=		mppc
44.endif
45
46.if ${MACHINE_ARCH} == "i386"
47# Things that don't compile on alpha or are aout specific:
48.if !defined(NO_BLUETOOTH) || defined(ALL_MODULES)
49_bluetooth=	bluetooth
50.endif
51.endif
52
53.include <bsd.subdir.mk>
54