]> git.proxmox.com Git - qemu.git/blame_incremental - Makefile.target
xhci: stop on errors
[qemu.git] / Makefile.target
... / ...
CommitLineData
1# -*- Mode: makefile -*-
2
3GENERATED_HEADERS = config-target.h
4CONFIG_NO_PCI = $(if $(subst n,,$(CONFIG_PCI)),n,y)
5CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y)
6CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y)
7
8include ../config-host.mak
9include config-devices.mak
10include config-target.mak
11include $(SRC_PATH)/rules.mak
12ifneq ($(HWDIR),)
13include $(HWDIR)/config.mak
14endif
15
16TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
17$(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
18ifdef CONFIG_LINUX
19QEMU_CFLAGS += -I../linux-headers
20endif
21QEMU_CFLAGS += -I.. -I$(TARGET_PATH) -DNEED_CPU_H
22
23include $(SRC_PATH)/Makefile.objs
24
25QEMU_CFLAGS+=-I$(SRC_PATH)/include
26
27ifdef CONFIG_USER_ONLY
28# user emulator name
29QEMU_PROG=qemu-$(TARGET_ARCH2)
30else
31# system emulator name
32ifneq (,$(findstring -mwindows,$(LIBS)))
33# Terminate program name with a 'w' because the linker builds a windows executable.
34QEMU_PROGW=qemu-system-$(TARGET_ARCH2)w$(EXESUF)
35endif # windows executable
36QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
37endif
38
39PROGS=$(QEMU_PROG)
40ifdef QEMU_PROGW
41PROGS+=$(QEMU_PROGW)
42endif
43STPFILES=
44
45ifndef CONFIG_HAIKU
46LIBS+=-lm
47endif
48
49config-target.h: config-target.h-timestamp
50config-target.h-timestamp: config-target.mak
51
52ifdef CONFIG_TRACE_SYSTEMTAP
53stap: $(QEMU_PROG).stp
54
55ifdef CONFIG_USER_ONLY
56TARGET_TYPE=user
57else
58TARGET_TYPE=system
59endif
60
61$(QEMU_PROG).stp:
62 $(call quiet-command,sh $(SRC_PATH)/scripts/tracetool \
63 --$(TRACE_BACKEND) \
64 --binary $(bindir)/$(QEMU_PROG) \
65 --target-arch $(TARGET_ARCH) \
66 --target-type $(TARGET_TYPE) \
67 --stap < $(SRC_PATH)/trace-events > $(QEMU_PROG).stp," GEN $(QEMU_PROG).stp")
68else
69stap:
70endif
71
72all: $(PROGS) stap
73
74# Dummy command so that make thinks it has done something
75 @true
76
77#########################################################
78# cpu emulator library
79libobj-y = exec.o translate-all.o cpu-exec.o translate.o
80libobj-y += tcg/tcg.o tcg/optimize.o
81libobj-$(CONFIG_TCG_INTERPRETER) += tci.o
82libobj-y += fpu/softfloat.o
83libobj-y += op_helper.o helper.o
84ifeq ($(TARGET_BASE_ARCH), i386)
85libobj-y += cpuid.o
86endif
87libobj-$(TARGET_SPARC64) += vis_helper.o
88libobj-$(CONFIG_NEED_MMU) += mmu.o
89libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
90ifeq ($(TARGET_BASE_ARCH), sparc)
91libobj-y += fop_helper.o cc_helper.o win_helper.o mmu_helper.o ldst_helper.o
92libobj-y += cpu_init.o
93endif
94libobj-$(TARGET_SPARC) += int32_helper.o
95libobj-$(TARGET_SPARC64) += int64_helper.o
96
97libobj-y += disas.o
98libobj-$(CONFIG_TCI_DIS) += tci-dis.o
99
100tci-dis.o: QEMU_CFLAGS += -I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/tci
101
102$(libobj-y): $(GENERATED_HEADERS)
103
104# HELPER_CFLAGS is used for all the code compiled with static register
105# variables
106op_helper.o ldst_helper.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
107
108# Note: this is a workaround. The real fix is to avoid compiling
109# cpu_signal_handler() in user-exec.c.
110signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
111
112#########################################################
113# Linux user emulator target
114
115ifdef CONFIG_LINUX_USER
116
117$(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))
118
119QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
120obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
121 elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \
122 user-exec.o $(oslib-obj-y)
123
124obj-$(TARGET_HAS_BFLT) += flatload.o
125
126obj-$(TARGET_I386) += vm86.o
127
128obj-i386-y += ioport-user.o
129
130nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
131nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
132obj-arm-y += $(addprefix nwfpe/, $(nwfpe-obj-y))
133obj-arm-y += arm-semi.o
134
135obj-m68k-y += m68k-sim.o m68k-semi.o
136
137$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
138
139obj-y += $(addprefix ../libuser/, $(user-obj-y))
140obj-y += $(addprefix ../libdis-user/, $(libdis-y))
141obj-y += $(libobj-y)
142
143endif #CONFIG_LINUX_USER
144
145#########################################################
146# Darwin user emulator target
147
148ifdef CONFIG_DARWIN_USER
149
150$(call set-vpath, $(SRC_PATH)/darwin-user)
151
152QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
153
154# Leave some space for the regular program loading zone
155LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
156
157LIBS+=-lmx
158
159obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
160 gdbstub.o user-exec.o
161
162obj-i386-y += ioport-user.o
163
164$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
165
166obj-y += $(addprefix ../libuser/, $(user-obj-y))
167obj-y += $(addprefix ../libdis-user/, $(libdis-y))
168obj-y += $(libobj-y)
169
170endif #CONFIG_DARWIN_USER
171
172#########################################################
173# BSD user emulator target
174
175ifdef CONFIG_BSD_USER
176
177$(call set-vpath, $(SRC_PATH)/bsd-user)
178
179QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
180
181obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
182 gdbstub.o uaccess.o user-exec.o
183
184obj-i386-y += ioport-user.o
185
186$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
187
188obj-y += $(addprefix ../libuser/, $(user-obj-y))
189obj-y += $(addprefix ../libdis-user/, $(libdis-y))
190obj-y += $(libobj-y)
191
192endif #CONFIG_BSD_USER
193
194#########################################################
195# System emulator target
196ifdef CONFIG_SOFTMMU
197
198obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o ioport.o
199# virtio has to be here due to weird dependency between PCI and virtio-net.
200# need to fix this properly
201obj-$(CONFIG_NO_PCI) += pci-stub.o
202obj-$(CONFIG_VIRTIO) += virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
203obj-y += vhost_net.o
204obj-$(CONFIG_VHOST_NET) += vhost.o
205obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o
206obj-$(CONFIG_KVM) += kvm.o kvm-all.o
207obj-$(CONFIG_NO_KVM) += kvm-stub.o
208obj-$(CONFIG_VGA) += vga.o
209obj-y += memory.o savevm.o
210LIBS+=-lz
211
212obj-i386-$(CONFIG_KVM) += hyperv.o
213
214QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
215QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
216QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
217QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
218
219# xen support
220obj-$(CONFIG_XEN) += xen-all.o xen_machine_pv.o xen_domainbuild.o xen-mapcache.o
221obj-$(CONFIG_NO_XEN) += xen-stub.o
222
223obj-i386-$(CONFIG_XEN) += xen_platform.o
224
225# Inter-VM PCI shared memory
226CONFIG_IVSHMEM =
227ifeq ($(CONFIG_KVM), y)
228 ifeq ($(CONFIG_PCI), y)
229 CONFIG_IVSHMEM = y
230 endif
231endif
232obj-$(CONFIG_IVSHMEM) += ivshmem.o
233
234# Generic hotplugging
235obj-y += device-hotplug.o
236
237# Hardware support
238obj-i386-y += mc146818rtc.o pc.o
239obj-i386-y += sga.o apic_common.o apic.o ioapic_common.o ioapic.o piix_pci.o
240obj-i386-y += vmport.o
241obj-i386-y += pci-hotplug.o smbios.o wdt_ib700.o
242obj-i386-y += debugcon.o multiboot.o
243obj-i386-y += pc_piix.o
244obj-i386-$(CONFIG_KVM) += kvm/clock.o kvm/apic.o kvm/i8259.o kvm/ioapic.o
245obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
246
247# shared objects
248obj-ppc-y = ppc.o ppc_booke.o
249# PREP target
250obj-ppc-y += mc146818rtc.o
251obj-ppc-y += ppc_prep.o
252# OldWorld PowerMac
253obj-ppc-y += ppc_oldworld.o
254# NewWorld PowerMac
255obj-ppc-y += ppc_newworld.o
256# IBM pSeries (sPAPR)
257obj-ppc-$(CONFIG_PSERIES) += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
258obj-ppc-$(CONFIG_PSERIES) += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
259obj-ppc-$(CONFIG_PSERIES) += spapr_pci.o device-hotplug.o pci-hotplug.o
260# PowerPC 4xx boards
261obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
262obj-ppc-y += ppc440_bamboo.o
263# PowerPC E500 boards
264obj-ppc-y += ppce500_mpc8544ds.o mpc8544_guts.o ppce500_spin.o
265# PowerPC 440 Xilinx ML507 reference board.
266obj-ppc-y += virtex_ml507.o
267obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
268obj-ppc-$(CONFIG_FDT) += device_tree.o
269# PowerPC OpenPIC
270obj-ppc-y += openpic.o
271
272# Xilinx PPC peripherals
273obj-ppc-y += xilinx_intc.o
274obj-ppc-y += xilinx_timer.o
275obj-ppc-y += xilinx_uartlite.o
276obj-ppc-y += xilinx_ethlite.o
277
278# LM32 boards
279obj-lm32-y += lm32_boards.o
280obj-lm32-y += milkymist.o
281
282# LM32 peripherals
283obj-lm32-y += lm32_pic.o
284obj-lm32-y += lm32_juart.o
285obj-lm32-y += lm32_timer.o
286obj-lm32-y += lm32_uart.o
287obj-lm32-y += lm32_sys.o
288obj-lm32-y += milkymist-ac97.o
289obj-lm32-y += milkymist-hpdmc.o
290obj-lm32-y += milkymist-memcard.o
291obj-lm32-y += milkymist-minimac2.o
292obj-lm32-y += milkymist-pfpu.o
293obj-lm32-y += milkymist-softusb.o
294obj-lm32-y += milkymist-sysctl.o
295obj-lm32-$(CONFIG_OPENGL) += milkymist-tmu2.o
296obj-lm32-y += milkymist-uart.o
297obj-lm32-y += milkymist-vgafb.o
298obj-lm32-y += framebuffer.o
299
300obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
301obj-mips-y += mips_addr.o mips_timer.o mips_int.o
302obj-mips-y += jazz_led.o
303obj-mips-y += gt64xxx.o mc146818rtc.o
304obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
305
306obj-microblaze-y = petalogix_s3adsp1800_mmu.o
307obj-microblaze-y += petalogix_ml605_mmu.o
308
309obj-microblaze-y += microblaze_pic_cpu.o
310obj-microblaze-y += xilinx_intc.o
311obj-microblaze-y += xilinx_timer.o
312obj-microblaze-y += xilinx_uartlite.o
313obj-microblaze-y += xilinx_ethlite.o
314obj-microblaze-y += xilinx_axidma.o
315obj-microblaze-y += xilinx_axienet.o
316
317obj-microblaze-$(CONFIG_FDT) += device_tree.o
318
319# Boards
320obj-cris-y = cris_pic_cpu.o
321obj-cris-y += cris-boot.o
322obj-cris-y += axis_dev88.o
323
324# IO blocks
325obj-cris-y += etraxfs_dma.o
326obj-cris-y += etraxfs_pic.o
327obj-cris-y += etraxfs_eth.o
328obj-cris-y += etraxfs_timer.o
329obj-cris-y += etraxfs_ser.o
330
331ifeq ($(TARGET_ARCH), sparc64)
332obj-sparc-y = sun4u.o apb_pci.o
333obj-sparc-y += mc146818rtc.o
334else
335obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
336obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
337obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o leon3.o
338
339# GRLIB
340obj-sparc-y += grlib_gptimer.o grlib_irqmp.o grlib_apbuart.o
341endif
342
343obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
344obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
345obj-arm-y += versatile_pci.o
346obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
347obj-arm-y += arm_l2x0.o
348obj-arm-y += arm_mptimer.o
349obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
350obj-arm-y += highbank.o
351obj-arm-y += pl061.o
352obj-arm-y += xgmac.o
353obj-arm-y += arm-semi.o
354obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
355obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
356obj-arm-y += gumstix.o
357obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
358obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o \
359 omap_gpio.o omap_intc.o omap_uart.o
360obj-arm-y += omap2.o omap_dss.o soc_dma.o omap_gptimer.o omap_synctimer.o \
361 omap_gpmc.o omap_sdrc.o omap_spi.o omap_tap.o omap_l4.o
362obj-arm-y += omap_sx1.o palm.o tsc210x.o
363obj-arm-y += nseries.o blizzard.o onenand.o cbus.o tusb6010.o usb-musb.o
364obj-arm-y += mst_fpga.o mainstone.o
365obj-arm-y += z2.o
366obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
367obj-arm-y += framebuffer.o
368obj-arm-y += vexpress.o
369obj-arm-y += strongarm.o
370obj-arm-y += collie.o
371obj-arm-y += pl041.o lm4549.o
372
373obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
374obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
375obj-sh4-y += ide/mmio.o
376
377obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
378obj-m68k-y += m68k-semi.o dummy_m68k.o
379
380obj-s390x-y = s390-virtio-bus.o s390-virtio.o
381
382obj-alpha-y = mc146818rtc.o
383obj-alpha-y += alpha_pci.o alpha_dp264.o alpha_typhoon.o
384
385obj-xtensa-y += xtensa_pic.o
386obj-xtensa-y += xtensa_sim.o
387obj-xtensa-y += xtensa_lx60.o
388obj-xtensa-y += xtensa-semi.o
389obj-xtensa-y += core-dc232b.o
390obj-xtensa-y += core-fsf.o
391
392main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
393
394monitor.o: hmp-commands.h qmp-commands-old.h
395
396$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
397
398obj-y += $(addprefix ../, $(common-obj-y))
399obj-y += $(addprefix ../libdis/, $(libdis-y))
400obj-y += $(libobj-y)
401obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
402obj-y += $(addprefix ../, $(trace-obj-y))
403
404endif # CONFIG_SOFTMMU
405
406ifndef CONFIG_LINUX_USER
407ifndef CONFIG_BSD_USER
408# libcacard needs qemu-thread support, and besides is only needed by devices
409# so not requires with linux-user / bsd-user targets
410obj-$(CONFIG_SMARTCARD_NSS) += $(addprefix ../libcacard/, $(libcacard-y))
411endif # CONFIG_BSD_USER
412endif # CONFIG_LINUX_USER
413
414obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
415
416ifdef QEMU_PROGW
417# The linker builds a windows executable. Make also a console executable.
418$(QEMU_PROGW): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
419 $(call LINK,$^)
420$(QEMU_PROG): $(QEMU_PROGW)
421 $(call quiet-command,$(OBJCOPY) --subsystem console $(QEMU_PROGW) $(QEMU_PROG)," GEN $(TARGET_DIR)$(QEMU_PROG)")
422else
423$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
424 $(call LINK,$^)
425endif
426
427gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
428 $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@")
429
430hmp-commands.h: $(SRC_PATH)/hmp-commands.hx
431 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
432
433qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx
434 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
435
436clean:
437 rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
438 rm -f *.d */*.d tcg/*.o ide/*.o 9pfs/*.o kvm/*.o
439 rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c
440ifdef CONFIG_TRACE_SYSTEMTAP
441 rm -f *.stp
442endif
443
444install: all
445ifneq ($(PROGS),)
446 $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
447ifneq ($(STRIP),)
448 $(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
449endif
450endif
451ifdef CONFIG_TRACE_SYSTEMTAP
452 $(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
453 $(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset"
454endif
455
456# Include automatically generated dependency files
457-include $(wildcard *.d */*.d)