xref: /freebsd-14.2/sys/modules/netgraph/Makefile (revision af0cc0b2)
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	atmllc \
9	${_bluetooth} \
10	bpf \
11	bridge \
12	car \
13	checksum \
14	cisco \
15	deflate \
16	device \
17	echo \
18	eiface \
19	etf \
20	ether \
21	ether_echo \
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	macfilter \
34	${_mppc} \
35	nat \
36	netflow \
37	netgraph \
38	one2many \
39	patch \
40	pipe \
41	ppp \
42	pppoe \
43	pptpgre \
44	pred1 \
45	rfc1490 \
46	socket \
47	source \
48	split \
49	tag \
50	tcpmss \
51	tee \
52	tty \
53	UI \
54	vjc \
55	vlan \
56	vlan_rotate
57
58.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES)
59_bluetooth=	bluetooth
60.endif
61
62.if ${MK_CRYPT} != "no" && exists(${SYSDIR}/crypto/rc4/rc4.c)
63_mppc=		mppc
64.endif
65
66.include <bsd.subdir.mk>
67