blob: d72df1e106e3207293b8be97c7b5fa458f592848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: archdirs.mk,v 1.1 2009/12/13 09:27:13 mrg Exp $
# list of subdirs used per-platform
.if ${MACHINE} == "sparc64"
ARCHDIR_SUBDIR= sparc64/sparc
.endif
.if ${MACHINE} == "amd64"
ARCHDIR_SUBDIR= amd64/i386
.endif
.if (${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el")
ARCHDIR_SUBDIR= mips64/64 mips64/o32
.endif
|