c09808d0d6
Use MACHINE_CPUARCH in preference to MACHINE_ARCH. The former is the source code location of the machine, the latter the binary output. In general, we want to use MACHINE_CPUARCH instead of MACHINE_ARCH unless we're tesitng for a specific target. The isn't even moot for i386/amd64 where there's momemntum towards a MACHINE_CPUARCH == x86, although a specific cleanup for that likely would be needed...
23 lines
518 B
Makefile
23 lines
518 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= ad1816 als4000 atiixp cs4281 csa ds1 emu10k1 emu10kx
|
|
SUBDIR+= envy24 envy24ht es137x ess fm801 hda ich maestro maestro3
|
|
SUBDIR+= neomagic sb16 sb8 sbc solo spicds t4dwave via8233
|
|
SUBDIR+= via82c686 vibes driver uaudio
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= cmi mss
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "sparc64"
|
|
.if ${MACHINE} == "sparc64"
|
|
SUBDIR+= audiocs
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "powerpc"
|
|
SUBDIR+= ai2s davbus
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|