Makefile revision 128635
1# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
2# $FreeBSD: head/sys/modules/netgraph/Makefile 128635 2004-04-25 08:56:46Z rik $
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	sppp \
36	sync_ar \
37	sync_sr \
38	tee \
39	tty \
40	vjc \
41	vlan
42
43.if !defined(NOCRYPT) && exists(${.CURDIR}/../../crypto/rc4/rc4.c)
44_mppc=		mppc
45.endif
46
47.if ${MACHINE_ARCH} == "i386"
48# Things that don't compile on alpha or are aout specific:
49.if !defined(NO_BLUETOOTH) || defined(ALL_MODULES)
50_bluetooth=	bluetooth
51.endif
52.endif
53
54.include <bsd.subdir.mk>
55