Revision 6af0bf9c Makefile.target

b/Makefile.target
72 72
PROGS+=$(QEMU_SYSTEM)
73 73
endif
74 74

  
75
endif # TARGET_ARCH = ppc
76

  
77
ifeq ($(TARGET_ARCH), mips)
78

  
75 79
ifeq ($(ARCH), i386)
76 80
ifdef CONFIG_SOFTMMU
77 81
PROGS+=$(QEMU_SYSTEM)
......
84 88
endif
85 89
endif # ARCH = x86_64
86 90

  
87
endif # TARGET_ARCH = ppc
91
endif # TARGET_ARCH = mips
88 92

  
89 93
ifeq ($(TARGET_ARCH), sparc)
90 94

  
......
263 267
LIBOBJS+= op_helper.o helper.o
264 268
endif
265 269

  
270
ifeq ($(TARGET_ARCH), mips)
271
LIBOBJS+= op_helper.o helper.o
272
endif
273

  
266 274
ifeq ($(TARGET_BASE_ARCH), sparc)
267 275
LIBOBJS+= op_helper.o helper.o
268 276
endif
......
288 296
ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
289 297
LIBOBJS+=ppc-dis.o
290 298
endif
299
ifeq ($(findstring mips, $(TARGET_ARCH) $(ARCH)),mips)
300
LIBOBJS+=mips-dis.o
301
endif
291 302
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
292 303
LIBOBJS+=sparc-dis.o
293 304
endif
......
348 359
VL_OBJS+= mc146818rtc.o serial.o i8259.o i8254.o fdc.o m48t59.o
349 360
VL_OBJS+= ppc_prep.o ppc_chrp.o cuda.o adb.o openpic.o heathrow_pic.o mixeng.o
350 361
endif
362
ifeq ($(TARGET_ARCH), mips)
363
VL_OBJS+= mips.o mips_r4k.o dma.o vga.o serial.o #ide.o ne2000.o pckbd.o
364
VL_OBJS+= #i8259.o i8254.o fdc.o m48t59.o
365
endif
351 366
ifeq ($(TARGET_BASE_ARCH), sparc)
352 367
ifeq ($(TARGET_ARCH), sparc64)
353 368
VL_OBJS+= sun4u.o m48t08.o magic-load.o slavio_serial.o
......
455 470
op_helper.o: op_helper_mem.h
456 471
endif
457 472

  
473
ifeq ($(TARGET_ARCH), mips)
474
op.o: op.c op_template.c op_mem.c
475
op_helper.o: op_helper_mem.c
476
endif
477

  
458 478
mixeng.o: mixeng.c mixeng.h mixeng_template.h
459 479

  
460 480
%.o: %.c

Also available in: Unified diff