blob: cccbd656c1516fef396c78cfdfc9faf97b2e337c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
# $FreeBSD$
.include <src.opts.mk>
SUBDIR= async \
atm \
atmllc \
${_bluetooth} \
bpf \
bridge \
car \
cisco \
deflate \
device \
echo \
eiface \
etf \
ether \
ether_echo \
frame_relay \
gif \
gif_demux \
hole \
hub \
iface \
ip_input \
ipfw \
ksocket \
l2tp \
lmi \
${_mppc} \
nat \
netflow \
netgraph \
one2many \
patch \
pipe \
ppp \
pppoe \
pptpgre \
pred1 \
rfc1490 \
socket \
source \
split \
sppp \
tag \
tcpmss \
tee \
tty \
UI \
vjc \
vlan
.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>
|