| 12345678910111213141516171819202122232425262728293031323334 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.ifeq ($(ADK_TARGET_CPU_ARCH),arm)QEMU:=			qemu-armendififeq ($(ADK_TARGET_CPU_ARCH),mipsel)QEMU:=			qemu-mipselendififeq ($(ADK_TARGET_CPU_ARCH),mips64el)QEMU:=			qemu-mipselendififeq ($(ADK_TARGET_CPU_ARCH),mips)QEMU:=			qemu-mipsendififeq ($(ADK_TARGET_CPU_ARCH),mips64)QEMU:=			qemu-mipsendififeq ($(ADK_TARGET_CPU_ARCH),ppc)QEMU:=			qemu-ppcendififeq ($(ADK_TARGET_CPU_ARCH),i486)QEMU:=			qemu-i386endififeq ($(ADK_TARGET_CPU_ARCH),i586)QEMU:=			qemu-i386endififeq ($(ADK_TARGET_CPU_ARCH),i686)QEMU:=			qemu-i386endififeq ($(ADK_TARGET_CPU_ARCH),x86_64)QEMU:=			qemu-x86_64endif
 |