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