Makefile revision 186490
1# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
2# $FreeBSD: head/sys/modules/netgraph/Makefile 186490 2008-12-25 09:32:20Z mav $
3
4.include <bsd.own.mk>
5
6SUBDIR=	async \
7	atm \
8	atmllc \
9	${_bluetooth} \
10	bpf \
11	bridge \
12	car \
13	cisco \
14	deflate \
15	device \
16	echo \
17	eiface \
18	etf \
19	ether \
20	ether_echo \
21	fec \
22	frame_relay \
23	gif \
24	gif_demux \
25	hole \
26	hub \
27	iface \
28	ip_input \
29	ipfw \
30	ksocket \
31	l2tp \
32	lmi \
33	${_mppc} \
34	nat \
35	netflow \
36	netgraph \
37	one2many \
38	ppp \
39	pppoe \
40	pptpgre \
41	pred1 \
42	rfc1490 \
43	socket \
44	source \
45	split \
46	sppp \
47	${_sync_ar} \
48	${_sync_sr} \
49	tag \
50	tcpmss \
51	tee \
52	tty \
53	UI \
54	vjc \
55	vlan
56
57.if ${MACHINE_ARCH} == "i386"
58_sync_ar=	sync_ar
59_sync_sr=	sync_sr
60.endif
61
62.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES)
63_bluetooth=	bluetooth
64.endif
65
66.if ${MK_CRYPT} != "no" && exists(${.CURDIR}/../../crypto/rc4/rc4.c)
67_mppc=		mppc
68.endif
69
70.include <bsd.subdir.mk>
71