diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-08-29 21:37:15 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-08-29 21:37:15 +0000 |
commit | 5109eed5eac3d92df39553fe4ba00533dce25135 (patch) | |
tree | 49ee222ad4a6dfc7d72c370888ec0af3169c2788 /sys | |
parent | a4842dbb8367c1245a127a23af31a0a24125f086 (diff) |
Build Tigon firmware on sparc as well.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/microcode/tigon/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/microcode/tigon/Makefile b/sys/dev/microcode/tigon/Makefile index badb9058f71..eafa333ba1f 100644 --- a/sys/dev/microcode/tigon/Makefile +++ b/sys/dev/microcode/tigon/Makefile @@ -1,14 +1,15 @@ -# $OpenBSD: Makefile,v 1.6 2007/08/01 21:42:43 deraadt Exp $ +# $OpenBSD: Makefile,v 1.7 2009/08/29 21:37:14 kettenis Exp $ NOPROG= NOMAN= CC=${HOSTCC} -# PCI capable systems only +# PCI & SBus capable systems only .if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ (${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \ - (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "hppa") || \ - (${MACHINE} == "hppa64") || (${MACHINE} == "sgi") + (${MACHINE} == "sparc") || (${MACHINE_ARCH} == "powerpc") || \ + (${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \ + (${MACHINE} == "sgi") FIRM= tigon1 tigon2 |