Commit aa05ae6fecba7c4d86d5d02b2f02b07d21b1750f
1 parent
1565b7bc
added exec.h
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@180 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
9 additions
and
2 deletions
Makefile
@@ -75,8 +75,15 @@ SRCS:= $(OBJS:.o=.c) | @@ -75,8 +75,15 @@ SRCS:= $(OBJS:.o=.c) | ||
75 | OBJS+= libqemu.a | 75 | OBJS+= libqemu.a |
76 | 76 | ||
77 | LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o exec.o | 77 | LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o exec.o |
78 | + | ||
78 | # NOTE: the disassembler code is only needed for debugging | 79 | # NOTE: the disassembler code is only needed for debugging |
79 | -LIBOBJS+=disas.o ppc-dis.o i386-dis.o alpha-dis.o dis-buf.o | 80 | +LIBOBJS+=disas.o i386-dis.o dis-buf.o |
81 | +ifeq ($(ARCH),alpha) | ||
82 | +LIBOBJS+=alpha-dis.o | ||
83 | +endif | ||
84 | +ifeq ($(ARCH),ppc) | ||
85 | +LIBOBJS+=ppc-dis.o | ||
86 | +endif | ||
80 | 87 | ||
81 | ifeq ($(ARCH),ia64) | 88 | ifeq ($(ARCH),ia64) |
82 | OBJS += ia64-syscall.o | 89 | OBJS += ia64-syscall.o |
@@ -140,7 +147,7 @@ FILES= \ | @@ -140,7 +147,7 @@ FILES= \ | ||
140 | README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \ | 147 | README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \ |
141 | dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\ | 148 | dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\ |
142 | Makefile elf.h thunk.c\ | 149 | Makefile elf.h thunk.c\ |
143 | -elfload.c main.c signal.c thunk.h\ | 150 | +elfload.c main.c signal.c thunk.h exec.h\ |
144 | cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\ | 151 | cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\ |
145 | syscall.c opreg_template.h syscall_defs.h vm86.c\ | 152 | syscall.c opreg_template.h syscall_defs.h vm86.c\ |
146 | dis-asm.h dis-buf.c disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c\ | 153 | dis-asm.h dis-buf.c disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c\ |