blob: 504004b3d1a39fe16afa68914230aafc3c81d2e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: archdirs.mk,v 1.7 2021/08/03 09:25:44 rin Exp $
# list of subdirs used per-platform
.if ${MACHINE_ARCH} == "powerpc"
ARCHDIR_SUBDIR= powerpc/powerpc-booke
.endif
.if ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el"
ARCHDIR_SUBDIR= mips/mips-n32
.endif
|