NetBSD/sys/modules/arch/archdirs.mk
mrg a2c4975d63 build evbppc modules in 3 different flavours:
- oea (default)
	- ibm4xx
	- booke

this, together with earlier machine_module[] work, should allow evbppc
platforms to use modules.
2011-06-15 09:45:58 +00:00

13 lines
292 B
Makefile

# $NetBSD: archdirs.mk,v 1.1 2011/06/15 09:45:59 mrg Exp $
# list of subdirs used per-platform
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
# not yet
#ARCHDIR_SUBDIR= x86/x86-xen
.endif
.if ${MACHINE_ARCH} == "powerpc"
ARCHDIR_SUBDIR= powerpc/powerpc-4xx powerpc/powerpc-booke
.endif