Makefile revision 141352
1# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
2# $FreeBSD: head/sys/modules/netgraph/Makefile 141352 2005-02-05 12:09:38Z glebius $
3
4SUBDIR=	async \
5	atm \
6	${_bluetooth} \
7	bpf \
8	bridge \
9	cisco \
10	device \
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	ipfw \
24	ksocket \
25	l2tp \
26	lmi \
27	${_mppc} \
28	netflow \
29	netgraph \
30	one2many \
31	ppp \
32	pppoe \
33	pptpgre \
34	rfc1490 \
35	socket \
36	split \
37	sppp \
38	${_sync_ar} \
39	${_sync_sr} \
40	tee \
41	tty \
42	UI \
43	vjc \
44	vlan
45
46.if ${MACHINE_ARCH} == "i386"
47_sync_ar=	sync_ar
48_sync_sr=	sync_sr
49.endif
50
51.if !defined(NO_BLUETOOTH) || defined(ALL_MODULES)
52_bluetooth=	bluetooth
53.endif
54
55.if !defined(NO_CRYPT) && exists(${.CURDIR}/../../crypto/rc4/rc4.c)
56_mppc=		mppc
57.endif
58
59.include <bsd.subdir.mk>
60