build - Parallelize kernel module build
[dragonfly.git] / sys / netgraph / Makefile
1 # $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
2 # $FreeBSD: src/sys/modules/netgraph/Makefile,v 1.8.2.8 2002/08/20 23:48:15 archie Exp $
3
4 SUBDIR= UI \
5         async \
6         bpf \
7         bridge \
8         cisco \
9         echo \
10         eiface \
11         etf \
12         ether \
13         fec \
14         frame_relay \
15         hole \
16         iface \
17         ksocket \
18         l2tp \
19         lmi \
20         netgraph \
21         one2many \
22         ppp \
23         pppoe \
24         pptpgre \
25         rfc1490 \
26         socket \
27         tee \
28         tty \
29         vjc
30
31 .if !defined(NO_CRYPT) && exists(${.CURDIR}/../crypto/rc4/rc4.c)
32 SUBDIR+=        mppc
33 .endif
34
35 .if ${MACHINE_ARCH} == "i386"
36 SUBDIR+=        sync_ar sync_sr
37 .endif
38
39 # empty to allow concurrent building
40 #
41 SUBDIR_ORDERED=
42
43 .include <bsd.subdir.mk>