e1fe3dba5c
http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
66 lines
802 B
Makefile
66 lines
802 B
Makefile
# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= async \
|
|
atm \
|
|
atmllc \
|
|
${_bluetooth} \
|
|
bpf \
|
|
bridge \
|
|
cisco \
|
|
device \
|
|
echo \
|
|
eiface \
|
|
etf \
|
|
ether \
|
|
fec \
|
|
frame_relay \
|
|
gif \
|
|
gif_demux \
|
|
hole \
|
|
hub \
|
|
iface \
|
|
ip_input \
|
|
ipfw \
|
|
ksocket \
|
|
l2tp \
|
|
lmi \
|
|
${_mppc} \
|
|
nat \
|
|
netflow \
|
|
netgraph \
|
|
one2many \
|
|
ppp \
|
|
pppoe \
|
|
pptpgre \
|
|
rfc1490 \
|
|
socket \
|
|
source \
|
|
split \
|
|
sppp \
|
|
${_sync_ar} \
|
|
${_sync_sr} \
|
|
tcpmss \
|
|
tee \
|
|
tty \
|
|
UI \
|
|
vjc \
|
|
vlan
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
_sync_ar= sync_ar
|
|
_sync_sr= sync_sr
|
|
.endif
|
|
|
|
.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES)
|
|
_bluetooth= bluetooth
|
|
.endif
|
|
|
|
.if ${MK_CRYPT} != "no" && exists(${.CURDIR}/../../crypto/rc4/rc4.c)
|
|
_mppc= mppc
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|