xref: /freebsd/sys/modules/netgraph/Makefile (revision 2b833162)
1# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
2# $FreeBSD$
3
4SYSDIR?=${SRCTOP}/sys
5.include "${SYSDIR}/conf/kern.opts.mk"
6
7SUBDIR=	async \
8	${_bluetooth} \
9	bpf \
10	bridge \
11	car \
12	checksum \
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	macfilter \
33	${_mppc} \
34	nat \
35	netflow \
36	netgraph \
37	one2many \
38	patch \
39	pipe \
40	ppp \
41	pppoe \
42	pptpgre \
43	pred1 \
44	rfc1490 \
45	socket \
46	source \
47	split \
48	tag \
49	tcpmss \
50	tee \
51	tty \
52	UI \
53	vjc \
54	vlan \
55	vlan_rotate
56
57.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES)
58_bluetooth=	bluetooth
59.endif
60
61.if ${MK_CRYPT} != "no" && exists(${SYSDIR}/crypto/rc4/rc4.c)
62_mppc=		mppc
63.endif
64
65.include <bsd.subdir.mk>
66