NetBSD/sys/modules/arch/archdirs.mk
jnemeth 3481529578 Add the infrastructure for MODULAR support for Xen kernels. At
the moment, this can only load very simple modules due to missing
symbols.  It is being add at this time to make pullups to the
netbsd-7 branch easier.  It is not enabled by default in any kernels.
2014-08-11 03:43:25 +00:00

16 lines
341 B
Makefile

# $NetBSD: archdirs.mk,v 1.2 2014/08/11 03:43:25 jnemeth Exp $
# list of subdirs used per-platform
.if ${MACHINE} == "amd64"
ARCHDIR_SUBDIR= x86/amd64-xen
.endif
.if ${MACHINE} == "i386"
ARCHDIR_SUBDIR= x86/i386-xen x86/i386pae-xen
.endif
.if ${MACHINE_ARCH} == "powerpc"
ARCHDIR_SUBDIR= powerpc/powerpc-4xx powerpc/powerpc-booke
.endif