summaryrefslogtreecommitdiff
path: root/mk/qemu.mk
blob: f6151eedac5327abed5e22dc1848e27772a2ef65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

ifeq ($(CPU_ARCH),arm)
QEMU:=			qemu-arm
endif
ifeq ($(CPU_ARCH),mipsel)
QEMU:=			qemu-mipsel
endif
ifeq ($(CPU_ARCH),mips64el)
QEMU:=			qemu-mipsel
endif
ifeq ($(CPU_ARCH),mips)
QEMU:=			qemu-mips
endif
ifeq ($(CPU_ARCH),mips64)
QEMU:=			qemu-mips
endif
ifeq ($(CPU_ARCH),ppc)
QEMU:=			qemu-ppc
endif
ifeq ($(CPU_ARCH),i486)
QEMU:=			qemu-i386
endif
ifeq ($(CPU_ARCH),i586)
QEMU:=			qemu-i386
endif
ifeq ($(CPU_ARCH),i686)
QEMU:=			qemu-i386
endif
ifeq ($(CPU_ARCH),x86_64)
QEMU:=			qemu-x86_64
endif