From: bellard Date: Sun, 25 May 2003 16:41:18 +0000 (+0000) Subject: added exec.h X-Git-Tag: v0.2.0~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aa05ae6fecba7c4d86d5d02b2f02b07d21b1750f;p=thirdparty%2Fqemu.git added exec.h git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@180 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/Makefile b/Makefile index 3aa42f19bfa..a5d4556f419 100644 --- a/Makefile +++ b/Makefile @@ -75,8 +75,15 @@ SRCS:= $(OBJS:.o=.c) OBJS+= libqemu.a LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o exec.o + # NOTE: the disassembler code is only needed for debugging -LIBOBJS+=disas.o ppc-dis.o i386-dis.o alpha-dis.o dis-buf.o +LIBOBJS+=disas.o i386-dis.o dis-buf.o +ifeq ($(ARCH),alpha) +LIBOBJS+=alpha-dis.o +endif +ifeq ($(ARCH),ppc) +LIBOBJS+=ppc-dis.o +endif ifeq ($(ARCH),ia64) OBJS += ia64-syscall.o @@ -140,7 +147,7 @@ FILES= \ README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \ dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\ Makefile elf.h thunk.c\ -elfload.c main.c signal.c thunk.h\ +elfload.c main.c signal.c thunk.h exec.h\ cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\ syscall.c opreg_template.h syscall_defs.h vm86.c\ dis-asm.h dis-buf.c disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c\