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