MIPS Malta system and devices support, by Aurelien Jarno and Stefan Weil.
[qemu] / Makefile.target
1 include config.mak
2
3 TARGET_BASE_ARCH:=$(TARGET_ARCH)
4 ifeq ($(TARGET_ARCH), x86_64)
5 TARGET_BASE_ARCH:=i386
6 endif
7 ifeq ($(TARGET_ARCH), ppc64)
8 TARGET_BASE_ARCH:=ppc
9 endif
10 ifeq ($(TARGET_ARCH), sparc64)
11 TARGET_BASE_ARCH:=sparc
12 endif
13 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
14 VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw:$(SRC_PATH)/audio
15 CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH)
16 ifdef CONFIG_USER_ONLY
17 VPATH+=:$(SRC_PATH)/linux-user
18 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH)
19 endif
20 BASE_CFLAGS=
21 BASE_LDFLAGS=
22 #CFLAGS+=-Werror
23 LIBS=
24 HELPER_CFLAGS=$(CFLAGS)
25 DYNGEN=../dyngen$(EXESUF)
26 # user emulator name
27 TARGET_ARCH2=$(TARGET_ARCH)
28 ifeq ($(TARGET_ARCH),arm)
29   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
30     TARGET_ARCH2=armeb
31   endif
32 endif
33 ifeq ($(TARGET_ARCH),sh4)
34   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
35     TARGET_ARCH2=sh4eb
36   endif
37 endif
38 ifeq ($(TARGET_ARCH),mips)
39   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
40     TARGET_ARCH2=mipsel
41   endif
42 endif
43 QEMU_USER=qemu-$(TARGET_ARCH2)
44 # system emulator name
45 ifdef CONFIG_SOFTMMU
46 ifeq ($(TARGET_ARCH), i386)
47 QEMU_SYSTEM=qemu$(EXESUF)
48 else
49 QEMU_SYSTEM=qemu-system-$(TARGET_ARCH2)$(EXESUF)
50 endif
51 else
52 QEMU_SYSTEM=qemu-fast
53 endif
54
55 ifdef CONFIG_USER_ONLY
56 PROGS=$(QEMU_USER)
57 else
58 PROGS+=$(QEMU_SYSTEM)
59 ifndef CONFIG_SOFTMMU
60 CONFIG_STATIC=y
61 endif
62 endif # !CONFIG_USER_ONLY
63
64 ifdef CONFIG_STATIC
65 BASE_LDFLAGS+=-static
66 endif
67
68 # We require -O2 to avoid the stack setup prologue in EXIT_TB
69 OP_CFLAGS = -Wall -O2 -g -fno-strict-aliasing
70
71 ifeq ($(ARCH),i386)
72 HELPER_CFLAGS+=-fomit-frame-pointer
73 OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
74 ifeq ($(HAVE_GCC3_OPTIONS),yes)
75 OP_CFLAGS+= -falign-functions=0 -fno-gcse
76 else
77 OP_CFLAGS+= -malign-functions=0
78 endif
79 ifdef TARGET_GPROF
80 USE_I386_LD=y
81 endif
82 ifdef CONFIG_STATIC
83 USE_I386_LD=y
84 endif
85 ifdef USE_I386_LD
86 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
87 else
88 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
89 # that the kernel ELF loader considers as an executable. I think this
90 # is the simplest way to make it self virtualizable!
91 BASE_LDFLAGS+=-Wl,-shared
92 endif
93 endif
94
95 ifeq ($(ARCH),x86_64)
96 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
97 endif
98
99 ifeq ($(ARCH),ppc)
100 CPPFLAGS+= -D__powerpc__
101 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
102 endif
103
104 ifeq ($(ARCH),s390)
105 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
106 endif
107
108 ifeq ($(ARCH),sparc)
109 ifeq ($(CONFIG_SOLARIS),yes)
110 BASE_CFLAGS+=-mcpu=ultrasparc -m32 -ffixed-g2 -ffixed-g3
111 BASE_LDFLAGS+=-m32
112 OP_CFLAGS+=-fno-delayed-branch -fno-omit-frame-pointer -ffixed-i0
113 else
114 BASE_CFLAGS+=-mcpu=ultrasparc -m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
115 BASE_LDFLAGS+=-m32
116 OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
117 HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
118 # -static is used to avoid g1/g3 usage by the dynamic linker
119 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
120 endif
121 endif
122
123 ifeq ($(ARCH),sparc64)
124 BASE_CFLAGS+=-mcpu=ultrasparc -m64 -ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
125 BASE_LDFLAGS+=-m64
126 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
127 OP_CFLAGS+=-mcpu=ultrasparc -m64 -ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7 -fno-delayed-branch -ffixed-i0
128 endif
129
130 ifeq ($(ARCH),alpha)
131 # -msmall-data is not used for OP_CFLAGS because we want two-instruction
132 # relocations for the constant constructions
133 # Ensure there's only a single GP
134 BASE_CFLAGS+=-msmall-data
135 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
136 endif
137
138 ifeq ($(ARCH),ia64)
139 BASE_CFLAGS+=-mno-sdata
140 OP_CFLAGS+=-mno-sdata
141 BASE_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
142 endif
143
144 ifeq ($(ARCH),arm)
145 OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
146 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
147 endif
148
149 ifeq ($(ARCH),m68k)
150 OP_CFLAGS+=-fomit-frame-pointer
151 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
152 endif
153
154 ifeq ($(ARCH),mips)
155 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
156 endif
157
158 ifeq ($(HAVE_GCC3_OPTIONS),yes)
159 # very important to generate a return at the end of every operation
160 OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
161 endif
162
163 ifeq ($(CONFIG_DARWIN),yes)
164 LIBS+=-lmx
165 endif
166
167 OP_CFLAGS+=$(OS_CFLAGS)
168
169 #########################################################
170
171 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
172 LIBS+=-lm
173 ifndef CONFIG_USER_ONLY
174 LIBS+=-lz
175 endif
176 ifdef CONFIG_WIN32
177 LIBS+=-lwinmm -lws2_32 -liphlpapi
178 endif
179 ifdef CONFIG_SOLARIS
180 LIBS+=-lsocket -lnsl -lresolv
181 endif
182
183 # profiling code
184 ifdef TARGET_GPROF
185 BASE_LDFLAGS+=-p
186 main.o: BASE_CFLAGS+=-p
187 endif
188
189 OBJS= main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o \
190       elfload.o linuxload.o
191 ifdef TARGET_HAS_BFLT
192 OBJS+= flatload.o
193 endif
194
195 ifeq ($(TARGET_ARCH), i386)
196 OBJS+= vm86.o
197 endif
198 ifeq ($(TARGET_ARCH), arm)
199 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
200 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
201  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
202 endif
203 ifeq ($(TARGET_ARCH), m68k)
204 OBJS+= m68k-sim.o m68k-semi.o
205 endif
206 SRCS:= $(OBJS:.o=.c)
207 OBJS+= libqemu.a
208
209 # cpu emulator library
210 LIBOBJS=exec.o kqemu.o translate-op.o translate-all.o cpu-exec.o\
211         translate.o op.o 
212 ifdef CONFIG_SOFTFLOAT
213 LIBOBJS+=fpu/softfloat.o
214 else
215 LIBOBJS+=fpu/softfloat-native.o
216 endif
217 CPPFLAGS+=-I$(SRC_PATH)/fpu
218
219 ifeq ($(TARGET_ARCH), i386)
220 LIBOBJS+=helper.o helper2.o
221 ifeq ($(ARCH), i386)
222 LIBOBJS+=translate-copy.o
223 endif
224 endif
225
226 ifeq ($(TARGET_ARCH), x86_64)
227 LIBOBJS+=helper.o helper2.o
228 endif
229
230 ifeq ($(TARGET_BASE_ARCH), ppc)
231 LIBOBJS+= op_helper.o helper.o
232 endif
233
234 ifeq ($(TARGET_ARCH), mips)
235 LIBOBJS+= op_helper.o helper.o
236 endif
237
238 ifeq ($(TARGET_BASE_ARCH), sparc)
239 LIBOBJS+= op_helper.o helper.o
240 endif
241
242 ifeq ($(TARGET_BASE_ARCH), arm)
243 LIBOBJS+= op_helper.o helper.o
244 endif
245
246 ifeq ($(TARGET_BASE_ARCH), sh4)
247 LIBOBJS+= op_helper.o helper.o
248 endif
249
250 ifeq ($(TARGET_BASE_ARCH), m68k)
251 LIBOBJS+= helper.o
252 endif
253
254 # NOTE: the disassembler code is only needed for debugging
255 LIBOBJS+=disas.o 
256 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
257 USE_I386_DIS=y
258 endif
259 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
260 USE_I386_DIS=y
261 endif
262 ifdef USE_I386_DIS
263 LIBOBJS+=i386-dis.o
264 endif
265 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
266 LIBOBJS+=alpha-dis.o
267 endif
268 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
269 LIBOBJS+=ppc-dis.o
270 endif
271 ifeq ($(findstring mips, $(TARGET_ARCH) $(ARCH)),mips)
272 LIBOBJS+=mips-dis.o
273 endif
274 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
275 LIBOBJS+=sparc-dis.o
276 endif
277 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
278 LIBOBJS+=arm-dis.o
279 endif
280 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
281 LIBOBJS+=m68k-dis.o
282 endif
283 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
284 LIBOBJS+=sh4-dis.o
285 endif
286
287 ifdef CONFIG_GDBSTUB
288 OBJS+=gdbstub.o
289 endif
290
291 all: $(PROGS)
292
293 $(QEMU_USER): $(OBJS)
294         $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^  $(LIBS)
295 ifeq ($(ARCH),alpha)
296 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
297 # the address space (31 bit so sign extending doesn't matter)
298         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
299 endif
300
301 # must use static linking to avoid leaving stuff in virtual address space
302 VL_OBJS=vl.o osdep.o readline.o monitor.o pci.o console.o loader.o isa_mmio.o
303 VL_OBJS+=cutils.o
304 VL_OBJS+=block.o block-raw.o
305 VL_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o block-dmg.o block-bochs.o block-vpc.o block-vvfat.o block-qcow2.o
306 ifdef CONFIG_WIN32
307 VL_OBJS+=tap-win32.o
308 endif
309
310 SOUND_HW = sb16.o es1370.o
311 AUDIODRV = audio.o noaudio.o wavaudio.o
312 ifdef CONFIG_SDL
313 AUDIODRV += sdlaudio.o
314 endif
315 ifdef CONFIG_OSS
316 AUDIODRV += ossaudio.o
317 endif
318 ifdef CONFIG_COREAUDIO
319 AUDIODRV += coreaudio.o
320 endif
321 ifdef CONFIG_ALSA
322 AUDIODRV += alsaaudio.o
323 LIBS += -lasound
324 endif
325 ifdef CONFIG_DSOUND
326 AUDIODRV += dsoundaudio.o
327 LIBS += -lole32 -ldxguid
328 endif
329 ifdef CONFIG_FMOD
330 AUDIODRV += fmodaudio.o
331 audio.o fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
332 LIBS += $(CONFIG_FMOD_LIB)
333 endif
334 ifdef CONFIG_ADLIB
335 SOUND_HW += fmopl.o adlib.o
336 endif
337 AUDIODRV+= wavcapture.o
338
339 # SCSI layer
340 VL_OBJS+= scsi-disk.o cdrom.o lsi53c895a.o
341
342 # USB layer
343 VL_OBJS+= usb.o usb-hub.o usb-linux.o usb-hid.o usb-ohci.o usb-msd.o
344
345 # PCI network cards
346 VL_OBJS+= ne2000.o rtl8139.o pcnet.o
347
348 ifeq ($(TARGET_BASE_ARCH), i386)
349 # Hardware support
350 VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
351 VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
352 VL_OBJS+= cirrus_vga.o mixeng.o apic.o parallel.o acpi.o piix_pci.o
353 VL_OBJS+= usb-uhci.o
354 CPPFLAGS += -DHAS_AUDIO
355 endif
356 ifeq ($(TARGET_BASE_ARCH), ppc)
357 VL_OBJS+= ppc.o ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
358 VL_OBJS+= mc146818rtc.o serial.o i8259.o i8254.o fdc.o m48t59.o
359 VL_OBJS+= ppc_prep.o ppc_chrp.o cuda.o adb.o openpic.o heathrow_pic.o mixeng.o
360 VL_OBJS+= grackle_pci.o prep_pci.o unin_pci.o
361 CPPFLAGS += -DHAS_AUDIO
362 endif
363 ifeq ($(TARGET_ARCH), mips)
364 VL_OBJS+= mips_r4k.o mips_malta.o mips_timer.o dma.o vga.o serial.o i8254.o i8259.o
365 VL_OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o
366 VL_OBJS+= piix_pci.o parallel.o mixeng.o cirrus_vga.o $(SOUND_HW) $(AUDIODRV)
367 DEFINES += -DHAS_AUDIO
368 endif
369 ifeq ($(TARGET_BASE_ARCH), sparc)
370 ifeq ($(TARGET_ARCH), sparc64)
371 VL_OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
372 VL_OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
373 VL_OBJS+= cirrus_vga.o parallel.o
374 else
375 VL_OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
376 VL_OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o sparc32_dma.o
377 VL_OBJS+= cs4231.o
378 endif
379 endif
380 ifeq ($(TARGET_BASE_ARCH), arm)
381 VL_OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
382 VL_OBJS+= arm_boot.o pl011.o pl050.o pl080.o pl110.o pl190.o
383 VL_OBJS+= versatile_pci.o
384 VL_OBJS+= arm_gic.o realview.o arm_sysctl.o
385 endif
386 ifeq ($(TARGET_BASE_ARCH), sh4)
387 VL_OBJS+= shix.o sh7750.o sh7750_regnames.o tc58128.o
388 endif
389 ifdef CONFIG_GDBSTUB
390 VL_OBJS+=gdbstub.o 
391 endif
392 ifdef CONFIG_SDL
393 VL_OBJS+=sdl.o
394 endif
395 VL_OBJS+=vnc.o
396 ifdef CONFIG_COCOA
397 VL_OBJS+=cocoa.o
398 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
399 ifdef CONFIG_COREAUDIO
400 COCOA_LIBS+=-framework CoreAudio
401 endif
402 endif
403 ifdef CONFIG_SLIRP
404 CPPFLAGS+=-I$(SRC_PATH)/slirp
405 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
406 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
407 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
408 VL_OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
409 endif
410
411 VL_LDFLAGS=
412 # specific flags are needed for non soft mmu emulator
413 ifdef CONFIG_STATIC
414 VL_LDFLAGS+=-static
415 endif
416 ifndef CONFIG_SOFTMMU
417 VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld 
418 endif
419 ifndef CONFIG_DARWIN
420 ifndef CONFIG_WIN32
421 ifndef CONFIG_SOLARIS
422 VL_LIBS=-lutil -lrt
423 endif
424 endif
425 endif
426 ifdef TARGET_GPROF
427 vl.o: BASE_CFLAGS+=-p
428 VL_LDFLAGS+=-p
429 endif
430
431 ifeq ($(ARCH),ia64)
432 VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
433 endif
434
435 ifeq ($(ARCH),sparc64)
436 VL_LDFLAGS+=-m64
437 VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/sparc64.ld
438 endif
439
440 ifdef CONFIG_WIN32
441 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
442 endif
443
444 $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
445         $(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
446
447 cocoa.o: cocoa.m
448         $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
449
450 sdl.o: sdl.c keymaps.c sdl_keysym.h
451         $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
452
453 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h
454         $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
455
456 sdlaudio.o: sdlaudio.c
457         $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
458
459 depend: $(SRCS)
460         $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
461
462 vldepend: $(VL_OBJS:.o=.c)
463         $(CC) -MM $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $^ 1>.depend
464
465 # libqemu 
466
467 libqemu.a: $(LIBOBJS)
468         rm -f $@
469         $(AR) rcs $@ $(LIBOBJS)
470
471 translate.o: translate.c gen-op.h opc.h cpu.h
472
473 translate-all.o: translate-all.c opc.h cpu.h
474
475 translate-op.o: translate-all.c op.h opc.h cpu.h
476
477 op.h: op.o $(DYNGEN)
478         $(DYNGEN) -o $@ $<
479
480 opc.h: op.o $(DYNGEN)
481         $(DYNGEN) -c -o $@ $<
482
483 gen-op.h: op.o $(DYNGEN)
484         $(DYNGEN) -g -o $@ $<
485
486 op.o: op.c
487         $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
488
489 # HELPER_CFLAGS is used for all the code compiled with static register
490 # variables
491 ifeq ($(TARGET_BASE_ARCH), i386)
492 # XXX: rename helper.c to op_helper.c
493 helper.o: helper.c
494         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
495 else
496 op_helper.o: op_helper.c
497         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
498 endif
499
500 cpu-exec.o: cpu-exec.c
501         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
502
503 # Note: this is a workaround. The real fix is to avoid compiling
504 # cpu_signal_handler() in cpu-exec.c.
505 signal.o: signal.c
506         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
507
508 ifeq ($(TARGET_BASE_ARCH), i386)
509 op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h
510 endif
511
512 ifeq ($(TARGET_ARCH), arm)
513 op.o: op.c op_template.h
514 pl110.o: pl110_template.h
515 endif
516
517 ifeq ($(TARGET_BASE_ARCH), sparc)
518 op.o: op.c op_template.h op_mem.h fop_template.h fbranch_template.h
519 magic_load.o: elf_op.h
520 endif
521
522 ifeq ($(TARGET_BASE_ARCH), ppc)
523 op.o: op.c op_template.h op_mem.h
524 op_helper.o: op_helper_mem.h
525 translate.o: translate.c translate_init.c
526 endif
527
528 ifeq ($(TARGET_ARCH), mips)
529 op.o: op.c op_template.c op_mem.c
530 op_helper.o: op_helper_mem.c
531 endif
532
533 loader.o: loader.c elf_ops.h
534
535 ifeq ($(TARGET_ARCH), sh4)
536 op.o: op.c op_mem.c cpu.h
537 op_helper.o: op_helper.c exec.h cpu.h
538 helper.o: helper.c exec.h cpu.h
539 sh7750.o: sh7750.c sh7750_regs.h sh7750_regnames.h cpu.h
540 shix.o: shix.c sh7750_regs.h sh7750_regnames.h
541 sh7750_regnames.o: sh7750_regnames.c sh7750_regnames.h sh7750_regs.h
542 tc58128.o: tc58128.c
543 endif
544
545 $(OBJS) $(LIBOBJS) $(VL_OBJS): config.h ../config-host.h
546
547 %.o: %.c
548         $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
549
550 %.o: %.S
551         $(CC) $(CPPFLAGS) -c -o $@ $<
552
553 clean:
554         rm -f *.o  *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o slirp/*.o fpu/*.o
555
556 install: all 
557 ifneq ($(PROGS),)
558         $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
559 endif
560
561 ifneq ($(wildcard .depend),)
562 include .depend
563 endif
564
565 ifeq (1, 0)
566 audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \
567 fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \
568 CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare
569 endif