blob: a995738943f6687f224c2d4aa5d97fe8019042c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: arch.mk,v 1.1 2002/11/25 11:01:16 schmonz Exp $
.ifndef SUSE_ARCH_MK
SUSE_ARCH_MK=1
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_ARCH} == "powerpc"
SUSE_ARCH?= ppc
.else
SUSE_ARCH?= ${MACHINE_ARCH}
.endif
.endif # SUSE_ARCH_MK
|