Merge remote-tracking branch 'kwolf/for-anthony' into staging
[qemu.git] / Makefile.target
blob88d2f1fb7ec3d1fbf08df6168f6ba94b5abf4858
1 # -*- Mode: makefile -*-
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)
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
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
23 include $(SRC_PATH)/Makefile.objs
25 ifdef CONFIG_USER_ONLY
26 # user emulator name
27 QEMU_PROG=qemu-$(TARGET_ARCH2)
28 else
29 # system emulator name
30 QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
31 endif
33 PROGS=$(QEMU_PROG)
34 STPFILES=
36 ifndef CONFIG_HAIKU
37 LIBS+=-lm
38 endif
40 config-target.h: config-target.h-timestamp
41 config-target.h-timestamp: config-target.mak
43 ifdef CONFIG_TRACE_SYSTEMTAP
44 stap: $(QEMU_PROG).stp
46 ifdef CONFIG_USER_ONLY
47 TARGET_TYPE=user
48 else
49 TARGET_TYPE=system
50 endif
52 $(QEMU_PROG).stp:
53         $(call quiet-command,sh $(SRC_PATH)/scripts/tracetool \
54                 --$(TRACE_BACKEND) \
55                 --binary $(bindir)/$(QEMU_PROG) \
56                 --target-arch $(TARGET_ARCH) \
57                 --target-type $(TARGET_TYPE) \
58                 --stap < $(SRC_PATH)/trace-events > $(QEMU_PROG).stp,"  GEN   $(QEMU_PROG).stp")
59 else
60 stap:
61 endif
63 all: $(PROGS) stap
65 # Dummy command so that make thinks it has done something
66         @true
68 #########################################################
69 # cpu emulator library
70 libobj-y = exec.o translate-all.o cpu-exec.o translate.o
71 libobj-y += tcg/tcg.o tcg/optimize.o
72 libobj-y += fpu/softfloat.o
73 libobj-y += op_helper.o helper.o
74 ifeq ($(TARGET_BASE_ARCH), i386)
75 libobj-y += cpuid.o
76 endif
77 libobj-$(CONFIG_NEED_MMU) += mmu.o
78 libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
80 libobj-y += disas.o
82 $(libobj-y): $(GENERATED_HEADERS)
84 # libqemu
86 translate.o: translate.c cpu.h
88 translate-all.o: translate-all.c cpu.h
90 tcg/tcg.o: cpu.h
92 # HELPER_CFLAGS is used for all the code compiled with static register
93 # variables
94 op_helper.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
96 # Note: this is a workaround. The real fix is to avoid compiling
97 # cpu_signal_handler() in user-exec.c.
98 signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
100 #########################################################
101 # Linux user emulator target
103 ifdef CONFIG_LINUX_USER
105 $(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))
107 QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
108 obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
109       elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \
110       user-exec.o $(oslib-obj-y)
112 obj-$(TARGET_HAS_BFLT) += flatload.o
114 obj-$(TARGET_I386) += vm86.o
116 obj-i386-y += ioport-user.o
118 nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
119 nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
120 obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
121 obj-arm-y += arm-semi.o
123 obj-m68k-y += m68k-sim.o m68k-semi.o
125 $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
127 obj-y += $(addprefix ../libuser/, $(user-obj-y))
128 obj-y += $(addprefix ../libdis-user/, $(libdis-y))
129 obj-y += $(libobj-y)
131 endif #CONFIG_LINUX_USER
133 #########################################################
134 # Darwin user emulator target
136 ifdef CONFIG_DARWIN_USER
138 $(call set-vpath, $(SRC_PATH)/darwin-user)
140 QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
142 # Leave some space for the regular program loading zone
143 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
145 LIBS+=-lmx
147 obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
148         gdbstub.o user-exec.o
150 obj-i386-y += ioport-user.o
152 $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
154 obj-y += $(addprefix ../libuser/, $(user-obj-y))
155 obj-y += $(addprefix ../libdis-user/, $(libdis-y))
156 obj-y += $(libobj-y)
158 endif #CONFIG_DARWIN_USER
160 #########################################################
161 # BSD user emulator target
163 ifdef CONFIG_BSD_USER
165 $(call set-vpath, $(SRC_PATH)/bsd-user)
167 QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
169 obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
170         gdbstub.o uaccess.o user-exec.o
172 obj-i386-y += ioport-user.o
174 $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
176 obj-y += $(addprefix ../libuser/, $(user-obj-y))
177 obj-y += $(addprefix ../libdis-user/, $(libdis-y))
178 obj-y += $(libobj-y)
180 endif #CONFIG_BSD_USER
182 #########################################################
183 # System emulator target
184 ifdef CONFIG_SOFTMMU
186 obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o
187 # virtio has to be here due to weird dependency between PCI and virtio-net.
188 # need to fix this properly
189 obj-$(CONFIG_NO_PCI) += pci-stub.o
190 obj-$(CONFIG_VIRTIO) += virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
191 obj-y += vhost_net.o
192 obj-$(CONFIG_VHOST_NET) += vhost.o
193 obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o
194 obj-$(CONFIG_KVM) += kvm.o kvm-all.o
195 obj-$(CONFIG_NO_KVM) += kvm-stub.o
196 obj-y += memory.o
197 LIBS+=-lz
199 QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
200 QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
201 QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
202 QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
203 QEMU_CFLAGS += $(GLIB_CFLAGS)
205 # xen support
206 obj-$(CONFIG_XEN) += xen-all.o xen_machine_pv.o xen_domainbuild.o xen-mapcache.o
207 obj-$(CONFIG_NO_XEN) += xen-stub.o
209 obj-i386-$(CONFIG_XEN) += xen_platform.o
211 # Inter-VM PCI shared memory
212 CONFIG_IVSHMEM =
213 ifeq ($(CONFIG_KVM), y)
214   ifeq ($(CONFIG_PCI), y)
215     CONFIG_IVSHMEM = y
216   endif
217 endif
218 obj-$(CONFIG_IVSHMEM) += ivshmem.o
220 # Hardware support
221 obj-i386-y += vga.o
222 obj-i386-y += mc146818rtc.o i8259.o pc.o
223 obj-i386-y += cirrus_vga.o sga.o apic.o ioapic.o piix_pci.o
224 obj-i386-y += vmport.o
225 obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
226 obj-i386-y += debugcon.o multiboot.o
227 obj-i386-y += pc_piix.o
228 obj-i386-$(CONFIG_KVM) += kvmclock.o
229 obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
231 # shared objects
232 obj-ppc-y = ppc.o
233 obj-ppc-y += vga.o
234 # PREP target
235 obj-ppc-y += i8259.o mc146818rtc.o
236 obj-ppc-y += ppc_prep.o
237 # OldWorld PowerMac
238 obj-ppc-y += ppc_oldworld.o
239 # NewWorld PowerMac
240 obj-ppc-y += ppc_newworld.o
241 # IBM pSeries (sPAPR)
242 ifeq ($(CONFIG_FDT)$(TARGET_PPC64),yy)
243 obj-ppc-y += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
244 obj-ppc-y += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
245 endif
246 # PowerPC 4xx boards
247 obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
248 obj-ppc-y += ppc440.o ppc440_bamboo.o
249 # PowerPC E500 boards
250 obj-ppc-y += ppce500_mpc8544ds.o mpc8544_guts.o
251 # PowerPC 440 Xilinx ML507 reference board.
252 obj-ppc-y += virtex_ml507.o
253 obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
254 obj-ppc-$(CONFIG_FDT) += device_tree.o
256 # Xilinx PPC peripherals
257 obj-ppc-y += xilinx_intc.o
258 obj-ppc-y += xilinx_timer.o
259 obj-ppc-y += xilinx_uartlite.o
260 obj-ppc-y += xilinx_ethlite.o
262 # LM32 boards
263 obj-lm32-y += lm32_boards.o
264 obj-lm32-y += milkymist.o
266 # LM32 peripherals
267 obj-lm32-y += lm32_pic.o
268 obj-lm32-y += lm32_juart.o
269 obj-lm32-y += lm32_timer.o
270 obj-lm32-y += lm32_uart.o
271 obj-lm32-y += lm32_sys.o
272 obj-lm32-y += milkymist-ac97.o
273 obj-lm32-y += milkymist-hpdmc.o
274 obj-lm32-y += milkymist-memcard.o
275 obj-lm32-y += milkymist-minimac2.o
276 obj-lm32-y += milkymist-pfpu.o
277 obj-lm32-y += milkymist-softusb.o
278 obj-lm32-y += milkymist-sysctl.o
279 obj-lm32-$(CONFIG_OPENGL) += milkymist-tmu2.o
280 obj-lm32-y += milkymist-uart.o
281 obj-lm32-y += milkymist-vgafb.o
282 obj-lm32-y += framebuffer.o
284 obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
285 obj-mips-y += mips_addr.o mips_timer.o mips_int.o
286 obj-mips-y += vga.o i8259.o
287 obj-mips-y += jazz_led.o
288 obj-mips-y += gt64xxx.o mc146818rtc.o
289 obj-mips-y += cirrus_vga.o
290 obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
292 obj-microblaze-y = petalogix_s3adsp1800_mmu.o
293 obj-microblaze-y += petalogix_ml605_mmu.o
295 obj-microblaze-y += microblaze_pic_cpu.o
296 obj-microblaze-y += xilinx_intc.o
297 obj-microblaze-y += xilinx_timer.o
298 obj-microblaze-y += xilinx_uartlite.o
299 obj-microblaze-y += xilinx_ethlite.o
300 obj-microblaze-y += xilinx_axidma.o
301 obj-microblaze-y += xilinx_axienet.o
303 obj-microblaze-$(CONFIG_FDT) += device_tree.o
305 # Boards
306 obj-cris-y = cris_pic_cpu.o
307 obj-cris-y += cris-boot.o
308 obj-cris-y += axis_dev88.o
310 # IO blocks
311 obj-cris-y += etraxfs_dma.o
312 obj-cris-y += etraxfs_pic.o
313 obj-cris-y += etraxfs_eth.o
314 obj-cris-y += etraxfs_timer.o
315 obj-cris-y += etraxfs_ser.o
317 ifeq ($(TARGET_ARCH), sparc64)
318 obj-sparc-y = sun4u.o apb_pci.o
319 obj-sparc-y += vga.o
320 obj-sparc-y += mc146818rtc.o
321 obj-sparc-y += cirrus_vga.o
322 else
323 obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
324 obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
325 obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o leon3.o
327 # GRLIB
328 obj-sparc-y += grlib_gptimer.o grlib_irqmp.o grlib_apbuart.o
329 endif
331 obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
332 obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
333 obj-arm-y += versatile_pci.o
334 obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
335 obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
336 obj-arm-y += pl061.o
337 obj-arm-y += arm-semi.o
338 obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
339 obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
340 obj-arm-y += gumstix.o
341 obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
342 obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o \
343                 omap_gpio.o omap_intc.o omap_uart.o
344 obj-arm-y += omap2.o omap_dss.o soc_dma.o omap_gptimer.o omap_synctimer.o \
345                 omap_gpmc.o omap_sdrc.o omap_spi.o omap_tap.o omap_l4.o
346 obj-arm-y += omap_sx1.o palm.o tsc210x.o
347 obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
348 obj-arm-y += mst_fpga.o mainstone.o
349 obj-arm-y += z2.o
350 obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
351 obj-arm-y += framebuffer.o
352 obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
353 obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
354 obj-arm-y += syborg_virtio.o
355 obj-arm-y += vexpress.o
356 obj-arm-y += strongarm.o
357 obj-arm-y += collie.o
359 obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
360 obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
361 obj-sh4-y += ide/mmio.o
363 obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
364 obj-m68k-y += m68k-semi.o dummy_m68k.o
366 obj-s390x-y = s390-virtio-bus.o s390-virtio.o
368 obj-alpha-y = i8259.o mc146818rtc.o
369 obj-alpha-y += vga.o cirrus_vga.o
371 obj-xtensa-y += xtensa_pic.o
372 obj-xtensa-y += xtensa_sample.o
373 obj-xtensa-y += xtensa_dc232b.o
374 obj-xtensa-y += xtensa-semi.o
376 main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
378 monitor.o: hmp-commands.h qmp-commands.h
380 $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
382 obj-y += $(addprefix ../, $(common-obj-y))
383 obj-y += $(addprefix ../libdis/, $(libdis-y))
384 obj-y += $(libobj-y)
385 obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
386 obj-y += $(addprefix ../, $(trace-obj-y))
388 endif # CONFIG_SOFTMMU
390 ifndef CONFIG_LINUX_USER
391 ifndef CONFIG_BSD_USER
392 # libcacard needs qemu-thread support, and besides is only needed by devices
393 # so not requires with linux-user / bsd-user targets
394 obj-$(CONFIG_SMARTCARD_NSS) += $(addprefix ../libcacard/, $(libcacard-y))
395 endif # CONFIG_BSD_USER
396 endif # CONFIG_LINUX_USER
398 obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
400 $(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
401         $(call LINK,$^)
404 gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
405         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
407 hmp-commands.h: $(SRC_PATH)/hmp-commands.hx
408         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
410 qmp-commands.h: $(SRC_PATH)/qmp-commands.hx
411         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
413 clean:
414         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
415         rm -f *.d */*.d tcg/*.o ide/*.o 9pfs/*.o
416         rm -f hmp-commands.h qmp-commands.h gdbstub-xml.c
417 ifdef CONFIG_TRACE_SYSTEMTAP
418         rm -f *.stp
419 endif
421 install: all
422 ifneq ($(PROGS),)
423         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
424 ifneq ($(STRIP),)
425         $(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
426 endif
427 endif
428 ifdef CONFIG_TRACE_SYSTEMTAP
429         $(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
430         $(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset"
431 endif
433 # Include automatically generated dependency files
434 -include $(wildcard *.d */*.d)