Makefile revision 125123
1# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
2# $FreeBSD: head/sys/modules/netgraph/Makefile 125123 2004-01-28 00:42:51Z emax $
3
4SUBDIR=	UI \
5	async \
6	atm \
7	${_bluetooth} \
8	bpf \
9	bridge \
10	cisco \
11	echo \
12	eiface \
13	etf \
14	ether \
15	fec \
16	frame_relay \
17	gif \
18	gif_demux \
19	hole \
20	iface \
21	ip_input \
22	ksocket \
23	l2tp \
24	lmi \
25	${_mppc} \
26	netgraph \
27	one2many \
28	ppp \
29	pppoe \
30	pptpgre \
31	rfc1490 \
32	socket \
33	split \
34	sync_ar \
35	sync_sr \
36	tee \
37	tty \
38	vjc
39
40.if !defined(NOCRYPT) && exists(${.CURDIR}/../../crypto/rc4/rc4.c)
41_mppc=		mppc
42.endif
43
44.if ${MACHINE_ARCH} == "i386"
45# Things that don't compile on alpha or are aout specific:
46.if !defined(NO_BLUETOOTH) || defined(ALL_MODULES)
47_bluetooth=	bluetooth
48.endif
49.endif
50
51.include <bsd.subdir.mk>
52