]> git.proxmox.com Git - qemu.git/blame - Makefile.target
Improve dependencies generation (malc).
[qemu.git] / Makefile.target
CommitLineData
626df76a
FB
1include config.mak
2
0b0babc6
FB
3TARGET_BASE_ARCH:=$(TARGET_ARCH)
4ifeq ($(TARGET_ARCH), x86_64)
5TARGET_BASE_ARCH:=i386
6endif
540635ba
TS
7ifeq ($(TARGET_ARCH), mipsn32)
8TARGET_BASE_ARCH:=mips
9endif
fbe4f65b
TS
10ifeq ($(TARGET_ARCH), mips64)
11TARGET_BASE_ARCH:=mips
12endif
a2458627
FB
13ifeq ($(TARGET_ARCH), ppc64)
14TARGET_BASE_ARCH:=ppc
15endif
22f8a8b3
JM
16ifeq ($(TARGET_ARCH), ppc64h)
17TARGET_BASE_ARCH:=ppc
18endif
d4082e95
JM
19ifeq ($(TARGET_ARCH), ppcemb)
20TARGET_BASE_ARCH:=ppc
21endif
64b3ab24
FB
22ifeq ($(TARGET_ARCH), sparc64)
23TARGET_BASE_ARCH:=sparc
24endif
0b0babc6 25TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
4fb240a4 26VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
46dc3881 27CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H
0b0babc6 28#CFLAGS+=-Werror
626df76a 29LIBS=
67b915a5 30DYNGEN=../dyngen$(EXESUF)
1e43adfc 31# user emulator name
0c64b9cd 32ifndef TARGET_ARCH2
c91fde65 33TARGET_ARCH2=$(TARGET_ARCH)
0c64b9cd 34endif
808c4954
FB
35ifeq ($(TARGET_ARCH),arm)
36 ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
c91fde65 37 TARGET_ARCH2=armeb
808c4954 38 endif
c91fde65 39endif
908f52b0
PB
40ifeq ($(TARGET_ARCH),sh4)
41 ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
42 TARGET_ARCH2=sh4eb
43 endif
44endif
01f5e596 45ifeq ($(TARGET_ARCH),mips)
c91fde65
FB
46 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
47 TARGET_ARCH2=mipsel
01f5e596 48 endif
01f5e596 49endif
540635ba
TS
50ifeq ($(TARGET_ARCH),mipsn32)
51 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
52 TARGET_ARCH2=mipsn32el
53 endif
54endif
fbe4f65b
TS
55ifeq ($(TARGET_ARCH),mips64)
56 ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
57 TARGET_ARCH2=mips64el
58 endif
59endif
40293e58
FB
60
61ifdef CONFIG_USER_ONLY
62# user emulator name
63QEMU_PROG=qemu-$(TARGET_ARCH2)
64else
1e43adfc 65# system emulator name
a541f297 66ifeq ($(TARGET_ARCH), i386)
40293e58 67QEMU_PROG=qemu$(EXESUF)
0db63474 68else
40293e58 69QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
a541f297 70endif
de5eaa64 71endif
626df76a 72
40293e58 73PROGS=$(QEMU_PROG)
626df76a 74
6f30fa85 75# We require -O2 to avoid the stack setup prologue in EXIT_TB
6c041c54
TS
76OP_CFLAGS := -Wall -O2 -g -fno-strict-aliasing
77
78# cc-option
79# Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
80
81cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
82 > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
83
84OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
85OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
86OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
87OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
88OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
89OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
90OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
91OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
1870a74c 92OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
6f30fa85 93
40293e58
FB
94HELPER_CFLAGS=
95
626df76a 96ifeq ($(ARCH),i386)
6f30fa85
TS
97HELPER_CFLAGS+=-fomit-frame-pointer
98OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
f2bf094e
AJ
99# op.c and helper.c need this on 32-bit x86 system to avoid
100# a compiler spill error. This can probably go away
101# once the SSE ops have been converted to TCG
102ifeq ($(HAVE_GT_GCC_3_3), true)
103I386_CFLAGS=-march=i586 -mtune=i686
104endif
bc51c5c9
FB
105endif
106
626df76a 107ifeq ($(ARCH),ppc)
6f30fa85 108CPPFLAGS+= -D__powerpc__
626df76a
FB
109endif
110
111ifeq ($(ARCH),sparc)
40293e58 112 CFLAGS+=-ffixed-g2 -ffixed-g3
3142255c
BS
113 OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
114 ifeq ($(CONFIG_SOLARIS),yes)
115 OP_CFLAGS+=-fno-omit-frame-pointer
116 else
40293e58
FB
117 CFLAGS+=-ffixed-g1 -ffixed-g6
118 HELPER_CFLAGS+=-ffixed-i0
3142255c 119 endif
fdbb4691 120endif
626df76a
FB
121
122ifeq ($(ARCH),sparc64)
40293e58 123 CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
3142255c
BS
124 OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
125 ifneq ($(CONFIG_SOLARIS),yes)
3142255c
BS
126 OP_CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
127 endif
626df76a
FB
128endif
129
130ifeq ($(ARCH),alpha)
6f30fa85
TS
131# -msmall-data is not used for OP_CFLAGS because we want two-instruction
132# relocations for the constant constructions
626df76a 133# Ensure there's only a single GP
40293e58 134CFLAGS+=-msmall-data
626df76a
FB
135endif
136
f54b3f92
AJ
137ifeq ($(ARCH),hppa)
138OP_CFLAGS=-O1 -fno-delayed-branch
139BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
140endif
141
626df76a 142ifeq ($(ARCH),ia64)
40293e58 143CFLAGS+=-mno-sdata
6f30fa85 144OP_CFLAGS+=-mno-sdata
626df76a
FB
145endif
146
147ifeq ($(ARCH),arm)
6f30fa85 148OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
626df76a
FB
149endif
150
38e584a0 151ifeq ($(ARCH),m68k)
6f30fa85 152OP_CFLAGS+=-fomit-frame-pointer
6f30fa85
TS
153endif
154
155ifeq ($(ARCH),mips)
9617efe8 156OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
fbe4f65b
TS
157endif
158
159ifeq ($(ARCH),mips64)
9617efe8 160OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
83fb7adf
FB
161endif
162
40293e58
FB
163CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
164LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
3142255c 165OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
626df76a 166
6f30fa85 167CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
626df76a 168LIBS+=-lm
67b915a5 169ifdef CONFIG_WIN32
3db38e87 170LIBS+=-lwinmm -lws2_32 -liphlpapi
67b915a5 171endif
ec530c81
FB
172ifdef CONFIG_SOLARIS
173LIBS+=-lsocket -lnsl -lresolv
0475a5ca
TS
174ifdef NEEDS_LIBSUNMATH
175LIBS+=-lsunmath
176LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
177OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
40293e58 178CFLAGS+=-I/opt/SUNWspro/prod/include/cc
f72b519c 179endif
831b7825
TS
180endif
181
40293e58 182all: $(PROGS)
626df76a 183
40293e58 184#########################################################
626df76a 185# cpu emulator library
57fec1fe 186LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\
cf2be984 187 translate.o host-utils.o
bf6247fb 188ifdef CONFIG_DYNGEN_OP
48ffabc6 189exec.o: dyngen-opc.h
cf2be984
BS
190LIBOBJS+=op.o
191endif
57fec1fe
FB
192# TCG code generator
193LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
194CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
8289b279
BS
195ifeq ($(ARCH),sparc64)
196CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
197endif
158142c2
FB
198ifdef CONFIG_SOFTFLOAT
199LIBOBJS+=fpu/softfloat.o
200else
201LIBOBJS+=fpu/softfloat-native.o
202endif
6f30fa85 203CPPFLAGS+=-I$(SRC_PATH)/fpu
e95c8d51 204LIBOBJS+= op_helper.o helper.o
e95c8d51 205
b7bcbe95 206ifeq ($(TARGET_BASE_ARCH), arm)
eaa728ee 207LIBOBJS+= neon_helper.o iwmmxt_helper.o
e6e5906b
PB
208endif
209
cf6c1b16 210ifeq ($(TARGET_BASE_ARCH), alpha)
eaa728ee 211LIBOBJS+= alpha_palcode.o
cf6c1b16
JM
212endif
213
e7daa605 214ifeq ($(TARGET_BASE_ARCH), cris)
e7daa605
TS
215LIBOBJS+= cris-dis.o
216
217ifndef CONFIG_USER_ONLY
218LIBOBJS+= mmu.o
219endif
220endif
221
626df76a 222# NOTE: the disassembler code is only needed for debugging
5fafdf24 223LIBOBJS+=disas.o
626df76a 224ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
bc51c5c9
FB
225USE_I386_DIS=y
226endif
0b0babc6 227ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
bc51c5c9
FB
228USE_I386_DIS=y
229endif
230ifdef USE_I386_DIS
626df76a
FB
231LIBOBJS+=i386-dis.o
232endif
233ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
234LIBOBJS+=alpha-dis.o
235endif
a2458627 236ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
626df76a
FB
237LIBOBJS+=ppc-dis.o
238endif
fbe4f65b 239ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
6af0bf9c
FB
240LIBOBJS+=mips-dis.o
241endif
64b3ab24 242ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
626df76a
FB
243LIBOBJS+=sparc-dis.o
244endif
245ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
246LIBOBJS+=arm-dis.o
247endif
48024e4a
FB
248ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
249LIBOBJS+=m68k-dis.o
250endif
fdf9b3e8
FB
251ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
252LIBOBJS+=sh4-dis.o
253endif
f54b3f92
AJ
254ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
255LIBOBJS+=hppa-dis.o
256endif
8f860bb8
TS
257ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
258LIBOBJS+=s390-dis.o
259endif
626df76a 260
40293e58
FB
261# libqemu
262
bf6247fb 263ifdef CONFIG_DYNGEN_OP
dd48594e 264OPC_H = gen-op.h dyngen-opc.h op.h
cf2be984 265endif
dd48594e 266
40293e58
FB
267libqemu.a: $(LIBOBJS)
268 rm -f $@
269 $(AR) rcs $@ $(LIBOBJS)
270
dd48594e
PB
271translate.o: translate.c cpu.h $(OPC_H)
272
273translate-all.o: translate-all.c cpu.h $(OPC_H)
274
275tcg/tcg.o: cpu.h $(OPC_H)
40293e58 276
dd48594e 277tcg/tcg-dyngen.o: $(OPC_H)
40293e58 278
dd48594e 279tcg/tcg-runtime.o: $(OPC_H)
40293e58
FB
280
281op.h: op.o $(DYNGEN)
282 $(DYNGEN) -o $@ $<
283
57fec1fe 284dyngen-opc.h: op.o $(DYNGEN)
40293e58
FB
285 $(DYNGEN) -c -o $@ $<
286
287gen-op.h: op.o $(DYNGEN)
288 $(DYNGEN) -g -o $@ $<
289
290op.o: op.c
f2bf094e 291 $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(I386_CFLAGS) -c -o $@ $<
40293e58 292
8dd3dca3
AJ
293machine.o: machine.c
294 $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $<
295
40293e58
FB
296# HELPER_CFLAGS is used for all the code compiled with static register
297# variables
40293e58 298op_helper.o: op_helper.c
eaa728ee 299 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) $(I386_CFLAGS) -c -o $@ $<
40293e58 300
c96402b1 301cpu-exec.o: cpu-exec.c $(OPC_H)
40293e58
FB
302 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
303
304#########################################################
305# Linux user emulator target
306
307ifdef CONFIG_LINUX_USER
308
40293e58
FB
309ifndef TARGET_ABI_DIR
310 TARGET_ABI_DIR=$(TARGET_ARCH)
311endif
3ebdd119 312VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
40293e58
FB
313CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
314
315ifdef CONFIG_STATIC
316LDFLAGS+=-static
317endif
318
319ifeq ($(ARCH),i386)
320ifdef TARGET_GPROF
321USE_I386_LD=y
322endif
323ifdef CONFIG_STATIC
324USE_I386_LD=y
325endif
326ifdef USE_I386_LD
327LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
328else
329# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
330# that the kernel ELF loader considers as an executable. I think this
331# is the simplest way to make it self virtualizable!
332LDFLAGS+=-Wl,-shared
333endif
334endif
335
336ifeq ($(ARCH),x86_64)
337LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
338endif
339
340ifeq ($(ARCH),ppc)
341LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
342endif
343
344ifeq ($(ARCH),s390)
345LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
346endif
347
348ifeq ($(ARCH),sparc)
349# -static is used to avoid g1/g3 usage by the dynamic linker
350LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
351endif
352
353ifeq ($(ARCH),sparc64)
354LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
355endif
356
357ifeq ($(ARCH),alpha)
358LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
359endif
360
361ifeq ($(ARCH),ia64)
362LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
363endif
364
365ifeq ($(ARCH),arm)
366LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
367endif
368
369ifeq ($(ARCH),m68k)
370LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
371endif
372
373ifeq ($(ARCH),mips)
374ifeq ($(WORDS_BIGENDIAN),yes)
375LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
376else
377LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
378endif
379endif
380
381ifeq ($(ARCH),mips64)
382ifeq ($(WORDS_BIGENDIAN),yes)
383LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
384else
385LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
386endif
387endif
388
389OBJS= main.o syscall.o strace.o mmap.o signal.o path.o osdep.o thunk.o \
390 elfload.o linuxload.o uaccess.o
391LIBS+= $(AIOLIBS)
392ifdef TARGET_HAS_BFLT
393OBJS+= flatload.o
394endif
395ifdef TARGET_HAS_ELFLOAD32
396OBJS+= elfload32.o
397elfload32.o: elfload.c
398endif
399
400ifeq ($(TARGET_ARCH), i386)
401OBJS+= vm86.o
402endif
403ifeq ($(TARGET_ARCH), arm)
404OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
405nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
406 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
407endif
408ifeq ($(TARGET_ARCH), m68k)
409OBJS+= m68k-sim.o m68k-semi.o
410endif
411
1fddef4b
FB
412ifdef CONFIG_GDBSTUB
413OBJS+=gdbstub.o
414endif
626df76a 415
40293e58
FB
416OBJS+= libqemu.a
417
418# Note: this is a workaround. The real fix is to avoid compiling
419# cpu_signal_handler() in cpu-exec.c.
420signal.o: signal.c
421 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
626df76a 422
cec7d0b6 423$(QEMU_PROG): $(OBJS) ../libqemu_user.a
40293e58 424 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
626df76a
FB
425ifeq ($(ARCH),alpha)
426# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
427# the address space (31 bit so sign extending doesn't matter)
428 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
429endif
430
40293e58
FB
431endif #CONFIG_LINUX_USER
432
433#########################################################
434# Darwin user emulator target
435
436ifdef CONFIG_DARWIN_USER
437
438VPATH+=:$(SRC_PATH)/darwin-user
439CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
440
441# Leave some space for the regular program loading zone
442LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
443
444LIBS+=-lmx
445
446OBJS= main.o commpage.o machload.o mmap.o osdep.o signal.o syscall.o thunk.o
447
448OBJS+= libqemu.a
449
450ifdef CONFIG_GDBSTUB
451OBJS+=gdbstub.o
452endif
453
454# Note: this is a workaround. The real fix is to avoid compiling
455# cpu_signal_handler() in cpu-exec.c.
456signal.o: signal.c
457 $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
458
459$(QEMU_PROG): $(OBJS)
460 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
461
462endif #CONFIG_DARWIN_USER
463
464#########################################################
465# System emulator target
466ifndef CONFIG_USER_ONLY
467
8dd3dca3 468OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o
223d4670 469ifdef CONFIG_WIN32
40293e58 470OBJS+=block-raw-win32.o
223d4670 471else
40293e58 472OBJS+=block-raw-posix.o
223d4670 473endif
a541f297 474
40293e58 475LIBS+=-lz
1d14ffa9 476ifdef CONFIG_ALSA
1d14ffa9
FB
477LIBS += -lasound
478endif
ca9cc28c
AZ
479ifdef CONFIG_ESD
480LIBS += -lesd
481endif
1d14ffa9 482ifdef CONFIG_DSOUND
1d14ffa9 483LIBS += -lole32 -ldxguid
85571bc7 484endif
102a52e4 485ifdef CONFIG_FMOD
102a52e4 486LIBS += $(CONFIG_FMOD_LIB)
85571bc7 487endif
4fb240a4
FB
488
489SOUND_HW = sb16.o es1370.o
ca9cc28c
AZ
490ifdef CONFIG_AC97
491SOUND_HW += ac97.o
492endif
1d14ffa9
FB
493ifdef CONFIG_ADLIB
494SOUND_HW += fmopl.o adlib.o
495endif
423d65f4
AZ
496ifdef CONFIG_GUS
497SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
498endif
85571bc7 499
8d5d2d4c
TS
500ifdef CONFIG_VNC_TLS
501CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
502LIBS += $(CONFIG_VNC_TLS_LIBS)
503endif
504
2e5d83bb 505# SCSI layer
8b17de88 506OBJS+= lsi53c895a.o esp.o
2e5d83bb 507
a594cfbf 508# USB layer
40293e58 509OBJS+= usb-ohci.o
a594cfbf 510
663e8e51 511# EEPROM emulation
40293e58 512OBJS += eeprom93xx.o
663e8e51 513
a41b2ff2 514# PCI network cards
40293e58
FB
515OBJS += eepro100.o
516OBJS += ne2000.o
517OBJS += pcnet.o
518OBJS += rtl8139.o
7c23b892 519OBJS += e1000.o
a41b2ff2 520
0b0babc6 521ifeq ($(TARGET_BASE_ARCH), i386)
a541f297 522# Hardware support
40293e58
FB
523OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
524OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
525OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
526OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o
b00052e4 527CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
67b915a5 528endif
a2458627 529ifeq ($(TARGET_BASE_ARCH), ppc)
b00052e4 530CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
3cbee15b 531# shared objects
40293e58 532OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
3cbee15b 533# PREP target
40293e58
FB
534OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
535OBJS+= prep_pci.o ppc_prep.o
3cbee15b 536# Mac shared devices
40293e58 537OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
3cbee15b 538# OldWorld PowerMac
40293e58 539OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
3cbee15b 540# NewWorld PowerMac
40293e58 541OBJS+= unin_pci.o ppc_chrp.o
3cbee15b 542# PowerPC 4xx boards
40293e58 543OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
a541f297 544endif
fbe4f65b 545ifeq ($(TARGET_BASE_ARCH), mips)
c171148c 546OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
4ce7ff6e
AJ
547OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
548OBJS+= g364fb.o jazz_led.o
40293e58 549OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
4ce7ff6e 550OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
40293e58
FB
551OBJS+= mipsnet.o
552OBJS+= pflash_cfi01.o
4ce7ff6e 553CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
6af0bf9c 554endif
e7daa605 555ifeq ($(TARGET_BASE_ARCH), cris)
40293e58 556OBJS+= etraxfs.o
48318011 557OBJS+= etraxfs_dma.o
e62b5b13 558OBJS+= etraxfs_pic.o
48318011 559OBJS+= etraxfs_eth.o
40293e58
FB
560OBJS+= etraxfs_timer.o
561OBJS+= etraxfs_ser.o
e62b5b13
EI
562
563OBJS+= ptimer.o
48318011 564OBJS+= pflash_cfi02.o
e7daa605 565endif
64b3ab24 566ifeq ($(TARGET_BASE_ARCH), sparc)
3475187d 567ifeq ($(TARGET_ARCH), sparc64)
40293e58
FB
568OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
569OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
570OBJS+= cirrus_vga.o parallel.o ptimer.o
3475187d 571else
40293e58 572OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
8b17de88 573OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
40293e58 574OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
3475187d 575endif
e95c8d51 576endif
b5ff1b31 577ifeq ($(TARGET_BASE_ARCH), arm)
40293e58
FB
578OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
579OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
580OBJS+= versatile_pci.o ptimer.o
581OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
582OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
583OBJS+= pl061.o
584OBJS+= arm-semi.o
585OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
586OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
587OBJS+= pflash_cfi01.o gumstix.o
89cdb6af 588OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o
b4e3104b 589OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
827df9f3 590OBJS+= omap2.o omap_dss.o
40293e58 591OBJS+= palm.o tsc210x.o
942ac052 592OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
e927bb00 593OBJS+= tsc2005.o
40293e58 594OBJS+= mst_fpga.o mainstone.o
24859b68 595OBJS+= musicpal.o pflash_cfi02.o
5a1237c4 596CPPFLAGS += -DHAS_AUDIO
b5ff1b31 597endif
fdf9b3e8 598ifeq ($(TARGET_BASE_ARCH), sh4)
40293e58
FB
599OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
600OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
fdf9b3e8 601endif
0633879f 602ifeq ($(TARGET_BASE_ARCH), m68k)
40293e58
FB
603OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
604OBJS+= m68k-semi.o dummy_m68k.o
0633879f 605endif
a541f297 606ifdef CONFIG_GDBSTUB
40293e58 607OBJS+=gdbstub.o
728c9fd5 608endif
5b0753e0 609ifdef CONFIG_COCOA
1d14ffa9
FB
610COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
611ifdef CONFIG_COREAUDIO
612COCOA_LIBS+=-framework CoreAudio
613endif
5b0753e0 614endif
7c1f25b4 615ifdef CONFIG_SLIRP
6f30fa85 616CPPFLAGS+=-I$(SRC_PATH)/slirp
626df76a
FB
617endif
618
40293e58 619LIBS+=$(AIOLIBS)
c321f673 620# specific flags are needed for non soft mmu emulator
c321f673 621ifdef CONFIG_STATIC
40293e58 622LDFLAGS+=-static
de5eaa64 623endif
83fb7adf 624ifndef CONFIG_DARWIN
11d9f695 625ifndef CONFIG_WIN32
ec530c81 626ifndef CONFIG_SOLARIS
40293e58 627LIBS+=-lutil
11d9f695 628endif
83fb7adf 629endif
ec530c81 630endif
e3086fbf 631ifdef TARGET_GPROF
40293e58
FB
632vl.o: CFLAGS+=-p
633LDFLAGS+=-p
e3086fbf 634endif
c321f673 635
b8076a74 636ifeq ($(ARCH),ia64)
40293e58 637LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
74ccb34e
FB
638endif
639
1d14ffa9
FB
640ifdef CONFIG_WIN32
641SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
642endif
643
40293e58
FB
644# profiling code
645ifdef TARGET_GPROF
646LDFLAGS+=-p
647main.o: CFLAGS+=-p
6e1b3e4d
FB
648endif
649
40293e58 650$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a
2e4d9fb1 651 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS)
626df76a 652
40293e58 653endif # !CONFIG_USER_ONLY
00a67ba1 654
626df76a 655%.o: %.c
40293e58 656 $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
626df76a 657
f72b519c 658%.o: %.S
6f30fa85 659 $(CC) $(CPPFLAGS) -c -o $@ $<
f72b519c 660
626df76a 661clean:
57fec1fe
FB
662 rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
663 rm -f *.d */*.d tcg/*.o
1e43adfc 664
5fafdf24 665install: all
9b14bb04 666ifneq ($(PROGS),)
6a882643 667 $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
9b14bb04 668endif
626df76a 669
2f96c28d
JM
670# Include automatically generated dependency files
671-include $(wildcard *.d */*.d)