xref: /freebsd/sys/modules/netgraph/Makefile (revision 84dfba8d183d31e3412639ecb4b8ad4433cf7e80)
1# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
2# $FreeBSD$
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	frame_relay \
22	gif \
23	gif_demux \
24	hole \
25	hub \
26	iface \
27	ip_input \
28	ipfw \
29	ksocket \
30	l2tp \
31	lmi \
32	${_mppc} \
33	nat \
34	netflow \
35	netgraph \
36	one2many \
37	patch \
38	pipe \
39	ppp \
40	pppoe \
41	pptpgre \
42	pred1 \
43	rfc1490 \
44	socket \
45	source \
46	split \
47	sppp \
48	tag \
49	tcpmss \
50	tee \
51	tty \
52	UI \
53	vjc \
54	vlan
55
56.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES)
57_bluetooth=	bluetooth
58.endif
59
60.if ${MK_CRYPT} != "no" && exists(${.CURDIR}/../../crypto/rc4/rc4.c)
61_mppc=		mppc
62.endif
63
64.include <bsd.subdir.mk>
65