blob: c643986048a85a870637228f4ad47d969f4802be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: arch.mk,v 1.2 2005/12/05 20:50:12 rillig Exp $
.if !defined(SUSE_ARCH_MK)
SUSE_ARCH_MK= # defined
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_ARCH} == "powerpc"
SUSE_ARCH?= ppc
.else
SUSE_ARCH?= ${MACHINE_ARCH}
.endif
.endif # SUSE_ARCH_MK
|