diff options
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.target b/Makefile.target index aa2244b00f..773f331a9f 100644 --- a/Makefile.target +++ b/Makefile.target @@ -197,6 +197,9 @@ OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \ nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \ nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o endif +ifeq ($(TARGET_ARCH), m68k) +OBJS+= m68k-sim.o m68k-semi.o +endif SRCS:= $(OBJS:.o=.c) OBJS+= libqemu.a @@ -241,6 +244,10 @@ ifeq ($(TARGET_BASE_ARCH), sh4) LIBOBJS+= op_helper.o helper.o endif +ifeq ($(TARGET_BASE_ARCH), m68k) +LIBOBJS+= helper.o +endif + # NOTE: the disassembler code is only needed for debugging LIBOBJS+=disas.o ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386) |