diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-02 22:07:19 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-02 22:07:19 +0000 |
commit | f68c781c2d08fec54ae460749b76b422c2a1921f (patch) | |
tree | 42ee0caaae009b7cc118acbfd711899010e7db48 /Makefile.target | |
parent | fa296b0fb4ceb0a2535bce201a76f1c00ca21468 (diff) | |
download | qemu-f68c781c2d08fec54ae460749b76b422c2a1921f.zip |
simplified
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1491 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/Makefile.target b/Makefile.target index 59ce7eb49a..74b5da830b 100644 --- a/Makefile.target +++ b/Makefile.target @@ -44,78 +44,10 @@ endif ifdef CONFIG_USER_ONLY PROGS=$(QEMU_USER) else -ifeq ($(TARGET_ARCH), i386) - -ifeq ($(ARCH), i386) PROGS+=$(QEMU_SYSTEM) ifndef CONFIG_SOFTMMU CONFIG_STATIC=y endif -else -# the system emulator using soft mmu is portable -ifdef CONFIG_SOFTMMU -PROGS+=$(QEMU_SYSTEM) -endif -endif # ARCH != i386 - -endif # TARGET_ARCH = i386 - -ifeq ($(TARGET_ARCH), x86_64) -ifdef CONFIG_SOFTMMU -PROGS+=$(QEMU_SYSTEM) -endif -endif # TARGET_ARCH = x86_64 - -ifeq ($(TARGET_ARCH), ppc) - -ifeq ($(ARCH), ppc) -PROGS+=$(QEMU_SYSTEM) -endif - -endif # TARGET_ARCH = ppc - -ifeq ($(TARGET_ARCH), mips) - -ifeq ($(ARCH), i386) -ifdef CONFIG_SOFTMMU -PROGS+=$(QEMU_SYSTEM) -endif -endif # ARCH = i386 - -ifeq ($(ARCH), x86_64) -ifdef CONFIG_SOFTMMU -PROGS+=$(QEMU_SYSTEM) -endif -endif # ARCH = x86_64 - -endif # TARGET_ARCH = mips - -ifeq ($(TARGET_ARCH), sparc) - -ifeq ($(ARCH), ppc) -PROGS+=$(QEMU_SYSTEM) -endif - -ifeq ($(ARCH), i386) -ifdef CONFIG_SOFTMMU -PROGS+=$(QEMU_SYSTEM) -endif -endif # ARCH = i386 - -ifeq ($(ARCH), x86_64) -ifdef CONFIG_SOFTMMU -PROGS+=$(QEMU_SYSTEM) -endif -endif # ARCH = x86_64 - -endif # TARGET_ARCH = sparc - -ifeq ($(TARGET_ARCH), sparc64) -ifdef CONFIG_SOFTMMU -PROGS+=$(QEMU_SYSTEM) -endif -endif # TARGET_ARCH = sparc64 - endif # !CONFIG_USER_ONLY ifdef CONFIG_STATIC |