blob: a81df844cef6d38b4b7c73a066c42d5a805180af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: arch.mk,v 1.1.1.1 2006/03/09 20:33:46 tonio Exp $
.ifndef SUSE_ARCH_MK
SUSE_ARCH_MK=1
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_ARCH} == "i386"
SUSE_ARCH?= i586
SUSE_ARCH_DIR?= ${MACHINE_ARCH}
.elif ${MACHINE_ARCH} == "powerpc"
SUSE_ARCH?= ppc
.else
SUSE_ARCH?= ${MACHINE_ARCH}
.endif
SUSE_ARCH_DIR?= ${SUSE_ARCH}
.endif # SUSE_ARCH_MK
|