freebsd-dev/sys/modules/Makefile

288 lines
2.9 KiB
Makefile
Raw Normal View History

1999-08-28 01:08:13 +00:00
# $FreeBSD$
2000-07-07 09:38:01 +00:00
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT)
_random= random
2000-07-07 09:38:01 +00:00
.endif
SUBDIR= 3dfx \
accf_data \
accf_http \
agp \
aha \
aio \
amr \
an \
aue \
bge \
bridge \
cam \
ccd \
cd9660 \
coda \
cryptodev \
cue \
dc \
de \
digi \
dummynet \
ed \
fdescfs \
fdc \
firewire \
fxp \
2001-10-19 02:21:16 +00:00
gx \
hifn \
if_disc \
if_ef \
if_gif \
2002-09-06 17:18:53 +00:00
if_gre \
if_faith \
if_ppp \
if_sl \
if_stf \
if_tap \
if_tun \
2001-09-05 23:47:46 +00:00
if_vlan \
ip6fw \
2001-07-25 20:15:17 +00:00
ip_mroute_mod \
ipfw \
ispfw \
joy \
kue \
lge \
libiconv \
libmchain \
lnc \
lpt \
mac_biba \
mac_bsdextended \
mac_ifoff \
mac_mls \
mac_none \
mac_seeotheruids \
mac_test \
2002-10-04 07:15:34 +00:00
mcd \
md \
mii \
mlx \
msdosfs \
nfsclient \
nfsserver \
nge \
nmdm \
ntfs \
nullfs \
pcn \
plip \
portalfs \
ppbus \
ppi \
pps \
procfs \
pseudofs \
${_random} \
rl \
rp \
sf \
sis \
sk \
sn \
snp \
ste \
sym \
sysvipc \
ti \
tl \
twe \
trm \
tx \
txp \
ubsec \
ucom \
udbp \
ufm \
udf \
uftdi \
ugen \
uhid \
ukbd \
ulpt \
umapfs \
umass \
umodem \
ums \
unionfs \
uplcom \
urio \
usb \
uscanner \
uvisor \
uvscom \
vpo \
vr \
vx \
wb \
xl
.if ${MACHINE_ARCH} != "sparc64"
SUBDIR+=syscons
.endif
.if !defined(NO_IPFILTER) && ${MACHINE_ARCH} != "ia64"
SUBDIR+=ipfilter
.endif
#removed while KSE settles in:
# ncp \
# nwfs \
# XXX some of these can move to the general case when de-i386'ed
# XXX some of these can move now, but are untested on other architectures.
2002-09-16 08:32:48 +00:00
.if ${MACHINE} == "i386"
SUBDIR+=aac \
2001-08-30 00:55:22 +00:00
acpi \
aic \
aout \
ar \
arcnet \
2001-10-24 18:45:35 +00:00
apm \
asr \
atspeaker \
bktr \
cardbus \
cbb \
ciss \
cm \
coff \
2002-04-28 19:21:48 +00:00
drm \
el \
em \
ep \
2002-10-01 06:10:11 +00:00
exca \
fe \
fpu \
gnufpu \
hea \
hfa \
ibcs2 \
iir \
linprocfs \
linux \
lomac \
ncv \
nsp \
mly \
netgraph \
oltr \
pecoff \
pccard \
ray \
s3 \
sbni \
scsi_low \
smbfs \
sound \
splash \
sppp \
sr \
stg \
streams \
vesa \
vinum \
wi \
xe
.endif
2002-09-16 08:32:48 +00:00
.if ${MACHINE} == "pc98"
SUBDIR+=aic \
aout \
ar \
arcnet \
apm \
atspeaker \
bktr \
coff \
em \
ep \
2002-09-16 08:32:48 +00:00
fe \
fpu \
gnufpu \
hea \
hfa \
ibcs2 \
linprocfs \
linux \
lomac \
ncv \
nsp \
netgraph \
oltr \
pecoff \
pccard \
2002-09-16 08:32:48 +00:00
pmc \
ray \
sbni \
scsi_low \
smbfs \
snc \
sound \
splash \
sppp \
sr \
stg \
streams \
vinum \
wi \
xe
.endif
.if ${MACHINE_ARCH} == "ia64"
SUBDIR+=aic \
arcnet \
ciss \
cm \
coff \
el \
em \
fe \
iir \
mly \
ray \
scsi_low \
smbfs \
splash \
sr \
streams \
wi \
xe
.endif
.if ${MACHINE_ARCH} == "alpha"
SUBDIR+=linprocfs \
linux \
lomac \
osf1 \
sound \
sppp \
vinum
.endif
.if defined(WANT_EXT2FS_MODULE)
SUBDIR+=ext2fs
.endif
2002-02-17 21:00:20 +00:00
.if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES)
SUBDIR=${MODULES_OVERRIDE}
.endif
# Calling kldxref(8) for each module is expensive.
.if !defined(NO_XREF)
.MAKEFLAGS:= ${.MAKEFLAGS} -DNO_XREF
afterinstall:
@if type kldxref >/dev/null 2>&1; then \
${ECHO} kldxref ${DESTDIR}${KMODDIR}; \
kldxref ${DESTDIR}${KMODDIR}; \
fi
.endif
.include <bsd.subdir.mk>