Deleted Added
full compact
Makefile (83768) Makefile (83934)
1# $FreeBSD: head/sys/modules/Makefile 83768 2001-09-21 11:21:06Z ru $
1# $FreeBSD: head/sys/modules/Makefile 83934 2001-09-25 18:40:52Z brooks $
2
3.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT)
4_random= random
5.endif
6
7SUBDIR= 3dfx \
8 accf_data \
9 accf_http \
10 agp \
11 aha \
12 amr \
13 an \
14 aue \
15 cam \
16 ccd \
17 cd9660 \
18 coda \
19 cue \
20 dc \
21 de \
22 digi \
23 ed \
24 fdescfs \
25 fdc \
26 fs \
27 fxp \
28 if_disc \
29 if_ef \
30 if_gif \
2
3.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT)
4_random= random
5.endif
6
7SUBDIR= 3dfx \
8 accf_data \
9 accf_http \
10 agp \
11 aha \
12 amr \
13 an \
14 aue \
15 cam \
16 ccd \
17 cd9660 \
18 coda \
19 cue \
20 dc \
21 de \
22 digi \
23 ed \
24 fdescfs \
25 fdc \
26 fs \
27 fxp \
28 if_disc \
29 if_ef \
30 if_gif \
31 if_faith \
31 if_ppp \
32 if_sl \
33 if_stf \
34 if_tap \
35 if_tun \
36 if_vlan \
37 ip6fw \
38 ip_mroute_mod \
39 ipfilter \
40 ipfw \
41 ispfw \
42 joy \
43 kue \
44 lge \
45 libmchain \
46 linux \
47 lnc \
48 md \
49 mii \
50 mlx \
51 msdosfs \
52 nfsclient \
53 nfsserver \
54 nge \
55 nmdm \
56 ntfs \
57 nullfs \
58 pcn \
59 portalfs \
60 procfs \
61 ${_random} \
62 rl \
63 rp \
64 sf \
65 sis \
66 sk \
67 sn \
68 snp \
69 sound \
70 sppp \
71 ste \
72 sym \
73 syscons \
74 sysvipc \
75 ti \
76 tl \
77 twe \
78 tx \
79 txp \
80 udbp \
81 ugen \
82 uhid \
83 ukbd \
84 ulpt \
85 umapfs \
86 umass \
87 umodem \
88 ums \
89 unionfs \
90 urio \
91 usb \
92 uscanner \
93 vinum \
94 vpo \
95 vr \
96 vx \
97 wb \
98 wx \
99 xl
100
101#removed while KSE settles in:
102# ncp \
103# nwfs \
104# XXX some of these can move to the general case when de-i386'ed
105.if ${MACHINE_ARCH} == "i386"
106SUBDIR+=aac \
107 acpi \
108 aic \
109 ar \
110 asr \
111 atspeaker \
112 bktr \
113 coff \
114 el \
115 fe \
116 fpu \
117 gnufpu \
118 ibcs2 \
119 netgraph \
120 mly \
121 oltr \
122 pecoff \
123 ray \
124 s3 \
125 splash \
126 sr \
127 streams \
128 vesa \
129 wi
130.endif
131#removed while KSE settles in:
132# smbfs \
133
134.if ${MACHINE} == "pc98"
135SUBDIR+=snc
136.endif
137
138.if ${MACHINE_ARCH} == "alpha"
139SUBDIR+=osf1
140.endif
141
142.if defined(WANT_EXT2FS_MODULE)
143SUBDIR+=ext2fs
144.endif
145
146.if defined(MODULES_OVERRIDE)
147SUBDIR=${MODULES_OVERRIDE}
148.endif
149
150# Calling kldxref(8) for each module is expensive.
151.if !defined(NO_XREF)
152.MAKEFLAGS:= ${.MAKEFLAGS} -DNO_XREF
153afterinstall:
154 -kldxref ${DESTDIR}${KMODDIR}
155.endif
156
157.include <bsd.subdir.mk>
32 if_ppp \
33 if_sl \
34 if_stf \
35 if_tap \
36 if_tun \
37 if_vlan \
38 ip6fw \
39 ip_mroute_mod \
40 ipfilter \
41 ipfw \
42 ispfw \
43 joy \
44 kue \
45 lge \
46 libmchain \
47 linux \
48 lnc \
49 md \
50 mii \
51 mlx \
52 msdosfs \
53 nfsclient \
54 nfsserver \
55 nge \
56 nmdm \
57 ntfs \
58 nullfs \
59 pcn \
60 portalfs \
61 procfs \
62 ${_random} \
63 rl \
64 rp \
65 sf \
66 sis \
67 sk \
68 sn \
69 snp \
70 sound \
71 sppp \
72 ste \
73 sym \
74 syscons \
75 sysvipc \
76 ti \
77 tl \
78 twe \
79 tx \
80 txp \
81 udbp \
82 ugen \
83 uhid \
84 ukbd \
85 ulpt \
86 umapfs \
87 umass \
88 umodem \
89 ums \
90 unionfs \
91 urio \
92 usb \
93 uscanner \
94 vinum \
95 vpo \
96 vr \
97 vx \
98 wb \
99 wx \
100 xl
101
102#removed while KSE settles in:
103# ncp \
104# nwfs \
105# XXX some of these can move to the general case when de-i386'ed
106.if ${MACHINE_ARCH} == "i386"
107SUBDIR+=aac \
108 acpi \
109 aic \
110 ar \
111 asr \
112 atspeaker \
113 bktr \
114 coff \
115 el \
116 fe \
117 fpu \
118 gnufpu \
119 ibcs2 \
120 netgraph \
121 mly \
122 oltr \
123 pecoff \
124 ray \
125 s3 \
126 splash \
127 sr \
128 streams \
129 vesa \
130 wi
131.endif
132#removed while KSE settles in:
133# smbfs \
134
135.if ${MACHINE} == "pc98"
136SUBDIR+=snc
137.endif
138
139.if ${MACHINE_ARCH} == "alpha"
140SUBDIR+=osf1
141.endif
142
143.if defined(WANT_EXT2FS_MODULE)
144SUBDIR+=ext2fs
145.endif
146
147.if defined(MODULES_OVERRIDE)
148SUBDIR=${MODULES_OVERRIDE}
149.endif
150
151# Calling kldxref(8) for each module is expensive.
152.if !defined(NO_XREF)
153.MAKEFLAGS:= ${.MAKEFLAGS} -DNO_XREF
154afterinstall:
155 -kldxref ${DESTDIR}${KMODDIR}
156.endif
157
158.include <bsd.subdir.mk>