]> git.proxmox.com Git - qemu.git/blame - Makefile.target
sun4u: give ISA bus to ISA methods
[qemu.git] / Makefile.target
CommitLineData
562593aa
AL
1# -*- Mode: makefile -*-
2
a992fe3d 3GENERATED_HEADERS = config-target.h
b3a29fd5 4CONFIG_NO_PCI = $(if $(subst n,,$(CONFIG_PCI)),n,y)
98c8573e 5CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y)
6dbd588a 6CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y)
f527c579 7
deed3ccf 8include ../config-host.mak
1f3d3c8f 9include config-devices.mak
25be210f 10include config-target.mak
17759187 11include $(SRC_PATH)/rules.mak
0e8c9214
AF
12ifneq ($(HWDIR),)
13include $(HWDIR)/config.mak
14endif
626df76a 15
0b0babc6 16TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
076d2471 17$(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
af2be207
JK
18ifdef CONFIG_LINUX
19QEMU_CFLAGS += -I../linux-headers
20endif
21QEMU_CFLAGS += -I.. -I$(TARGET_PATH) -DNEED_CPU_H
40293e58 22
0e8c9214
AF
23include $(SRC_PATH)/Makefile.objs
24
40293e58
FB
25ifdef CONFIG_USER_ONLY
26# user emulator name
27QEMU_PROG=qemu-$(TARGET_ARCH2)
28else
1e43adfc 29# system emulator name
40293e58 30QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
a541f297 31endif
626df76a 32
40293e58 33PROGS=$(QEMU_PROG)
b8841706 34STPFILES=
626df76a 35
aff447c9 36ifndef CONFIG_HAIKU
626df76a 37LIBS+=-lm
aff447c9 38endif
831b7825 39
91880d96
JQ
40config-target.h: config-target.h-timestamp
41config-target.h-timestamp: config-target.mak
42
6d8a764e 43ifdef CONFIG_TRACE_SYSTEMTAP
c276b17d
DB
44stap: $(QEMU_PROG).stp
45
46ifdef CONFIG_USER_ONLY
47TARGET_TYPE=user
48else
49TARGET_TYPE=system
50endif
51
52$(QEMU_PROG).stp:
4c3b5a48 53 $(call quiet-command,sh $(SRC_PATH)/scripts/tracetool \
c276b17d
DB
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")
59else
60stap:
61endif
62
63all: $(PROGS) stap
91880d96 64
c2fb2637
PB
65# Dummy command so that make thinks it has done something
66 @true
626df76a 67
40293e58 68#########################################################
626df76a 69# cpu emulator library
c2b023b6 70libobj-y = exec.o translate-all.o cpu-exec.o translate.o
8f2e8c07 71libobj-y += tcg/tcg.o tcg/optimize.o
9195b2c2 72libobj-$(CONFIG_TCG_INTERPRETER) += tci.o
cf67c6ba 73libobj-y += fpu/softfloat.o
c9e0df73 74libobj-y += op_helper.o helper.o
c6dc6f63
AP
75ifeq ($(TARGET_BASE_ARCH), i386)
76libobj-y += cpuid.o
77endif
1bccec25 78libobj-$(TARGET_SPARC64) += vis_helper.o
471857dd 79libobj-$(CONFIG_NEED_MMU) += mmu.o
e18ea868 80libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
ab3b491f 81ifeq ($(TARGET_BASE_ARCH), sparc)
fafd8bce
BS
82libobj-y += fop_helper.o cc_helper.o win_helper.o mmu_helper.o ldst_helper.o
83libobj-y += cpu_init.o
ab3b491f
BS
84endif
85libobj-$(TARGET_SPARC) += int32_helper.o
86libobj-$(TARGET_SPARC64) += int64_helper.o
cf6c1b16 87
c9e0df73 88libobj-y += disas.o
9195b2c2
SW
89libobj-$(CONFIG_TCI_DIS) += tci-dis.o
90
91tci-dis.o: QEMU_CFLAGS += -I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/tci
626df76a 92
0e8c9214 93$(libobj-y): $(GENERATED_HEADERS)
40293e58 94
40293e58
FB
95# HELPER_CFLAGS is used for all the code compiled with static register
96# variables
fafd8bce 97op_helper.o ldst_helper.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
40293e58 98
c81da56e 99# Note: this is a workaround. The real fix is to avoid compiling
42a623c7 100# cpu_signal_handler() in user-exec.c.
c81da56e
JQ
101signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
102
40293e58
FB
103#########################################################
104# Linux user emulator target
105
106ifdef CONFIG_LINUX_USER
107
076d2471
PB
108$(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))
109
c3109ba1 110QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
37022086 111obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
680c877a 112 elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \
41a74826 113 user-exec.o $(oslib-obj-y)
5ba65319 114
943e0a31 115obj-$(TARGET_HAS_BFLT) += flatload.o
40293e58 116
e18ea868 117obj-$(TARGET_I386) += vm86.o
1c872672 118
e27b27b3 119obj-i386-y += ioport-user.o
5ba65319 120
ed69c30d 121nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
9c1dd99b 122nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
1c872672
JQ
123obj-arm-y += $(addprefix nwfpe/, $(nwfpe-obj-y))
124obj-arm-y += arm-semi.o
125
126obj-m68k-y += m68k-sim.o m68k-semi.o
40293e58 127
0e8c9214
AF
128$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
129
130obj-y += $(addprefix ../libuser/, $(user-obj-y))
4d904533 131obj-y += $(addprefix ../libdis-user/, $(libdis-y))
0e8c9214 132obj-y += $(libobj-y)
add16157 133
40293e58
FB
134endif #CONFIG_LINUX_USER
135
136#########################################################
137# Darwin user emulator target
138
139ifdef CONFIG_DARWIN_USER
140
076d2471
PB
141$(call set-vpath, $(SRC_PATH)/darwin-user)
142
a558ee17 143QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
40293e58
FB
144
145# Leave some space for the regular program loading zone
146LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
147
148LIBS+=-lmx
149
a8e492c0 150obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
42a623c7 151 gdbstub.o user-exec.o
5ba65319 152
e27b27b3 153obj-i386-y += ioport-user.o
40293e58 154
0e8c9214
AF
155$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
156
157obj-y += $(addprefix ../libuser/, $(user-obj-y))
4d904533 158obj-y += $(addprefix ../libdis-user/, $(libdis-y))
0e8c9214 159obj-y += $(libobj-y)
40293e58
FB
160
161endif #CONFIG_DARWIN_USER
162
84778508
BS
163#########################################################
164# BSD user emulator target
165
166ifdef CONFIG_BSD_USER
167
076d2471
PB
168$(call set-vpath, $(SRC_PATH)/bsd-user)
169
a558ee17 170QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
84778508 171
37022086 172obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
42a623c7 173 gdbstub.o uaccess.o user-exec.o
5ba65319 174
e27b27b3 175obj-i386-y += ioport-user.o
84778508 176
0e8c9214
AF
177$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
178
179obj-y += $(addprefix ../libuser/, $(user-obj-y))
4d904533 180obj-y += $(addprefix ../libdis-user/, $(libdis-y))
0e8c9214 181obj-y += $(libobj-y)
84778508
BS
182
183endif #CONFIG_BSD_USER
184
40293e58
FB
185#########################################################
186# System emulator target
76dfdd24 187ifdef CONFIG_SOFTMMU
40293e58 188
6bf9fd43 189obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o ioport.o
1fd31ad7
AL
190# virtio has to be here due to weird dependency between PCI and virtio-net.
191# need to fix this properly
b3a29fd5 192obj-$(CONFIG_NO_PCI) += pci-stub.o
21673cde 193obj-$(CONFIG_VIRTIO) += virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
d5970055
MT
194obj-y += vhost_net.o
195obj-$(CONFIG_VHOST_NET) += vhost.o
f4f61d27 196obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o
a8e492c0 197obj-$(CONFIG_KVM) += kvm.o kvm-all.o
98c8573e 198obj-$(CONFIG_NO_KVM) += kvm-stub.o
093bc2cd 199obj-y += memory.o
40293e58 200LIBS+=-lz
4fb240a4 201
a558ee17 202QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
a558ee17 203QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
2f6f5c7a 204QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
efe556ad 205QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
e18df141 206QEMU_CFLAGS += $(GLIB_CFLAGS)
2f9606b3 207
3285cf4f 208# xen support
868bb33f 209obj-$(CONFIG_XEN) += xen-all.o xen_machine_pv.o xen_domainbuild.o xen-mapcache.o
3285cf4f
AP
210obj-$(CONFIG_NO_XEN) += xen-stub.o
211
01195b73
SS
212obj-i386-$(CONFIG_XEN) += xen_platform.o
213
6cbf4c8c 214# Inter-VM PCI shared memory
1b01b4e7
AG
215CONFIG_IVSHMEM =
216ifeq ($(CONFIG_KVM), y)
217 ifeq ($(CONFIG_PCI), y)
218 CONFIG_IVSHMEM = y
219 endif
220endif
221obj-$(CONFIG_IVSHMEM) += ivshmem.o
6cbf4c8c 222
a541f297 223# Hardware support
7f55c7ce 224obj-i386-y += vga.o
cfce6d89 225obj-i386-y += mc146818rtc.o pc.o
a90d4690 226obj-i386-y += cirrus_vga.o sga.o apic.o ioapic.o piix_pci.o
1c9c5fcd 227obj-i386-y += vmport.o
09aaa160 228obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
d3ffc7a6 229obj-i386-y += debugcon.o multiboot.o
af2be207
JK
230obj-i386-y += pc_piix.o
231obj-i386-$(CONFIG_KVM) += kvmclock.o
a19cbfb3 232obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
9637443f 233
3cbee15b 234# shared objects
ddd1055b 235obj-ppc-y = ppc.o ppc_booke.o
4556bd8b 236obj-ppc-y += vga.o
3cbee15b 237# PREP target
cfce6d89 238obj-ppc-y += mc146818rtc.o
add85a76 239obj-ppc-y += ppc_prep.o
3cbee15b 240# OldWorld PowerMac
2b5eb371 241obj-ppc-y += ppc_oldworld.o
3cbee15b 242# NewWorld PowerMac
2b5eb371 243obj-ppc-y += ppc_newworld.o
4040ab72 244# IBM pSeries (sPAPR)
0a6b8dde
AG
245obj-ppc-$(CONFIG_PSERIES) += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
246obj-ppc-$(CONFIG_PSERIES) += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
3384f95c 247obj-ppc-$(CONFIG_PSERIES) += spapr_pci.o device-hotplug.o pci-hotplug.o
3cbee15b 248# PowerPC 4xx boards
5f9fc5ad 249obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
9637443f 250obj-ppc-y += ppc440.o ppc440_bamboo.o
74c62ba8 251# PowerPC E500 boards
5c145dac 252obj-ppc-y += ppce500_mpc8544ds.o mpc8544_guts.o ppce500_spin.o
2c50e26e
EI
253# PowerPC 440 Xilinx ML507 reference board.
254obj-ppc-y += virtex_ml507.o
9637443f 255obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
3f0855b1 256obj-ppc-$(CONFIG_FDT) += device_tree.o
d751dfb3
AG
257# PowerPC OpenPIC
258obj-ppc-y += openpic.o
9637443f 259
2c50e26e
EI
260# Xilinx PPC peripherals
261obj-ppc-y += xilinx_intc.o
262obj-ppc-y += xilinx_timer.o
263obj-ppc-y += xilinx_uartlite.o
264obj-ppc-y += xilinx_ethlite.o
265
d821732a
MW
266# LM32 boards
267obj-lm32-y += lm32_boards.o
5052d227 268obj-lm32-y += milkymist.o
d821732a 269
81ea0e13 270# LM32 peripherals
4ef66fa7 271obj-lm32-y += lm32_pic.o
15d7dc4f 272obj-lm32-y += lm32_juart.o
ea7924dc 273obj-lm32-y += lm32_timer.o
770ae571 274obj-lm32-y += lm32_uart.o
f19410ca 275obj-lm32-y += lm32_sys.o
25a8bb96 276obj-lm32-y += milkymist-ac97.o
e4dc6d2c 277obj-lm32-y += milkymist-hpdmc.o
b4e37d98 278obj-lm32-y += milkymist-memcard.o
57aa265d 279obj-lm32-y += milkymist-minimac2.o
5ee18b9c 280obj-lm32-y += milkymist-pfpu.o
87a381ec 281obj-lm32-y += milkymist-softusb.o
96832424 282obj-lm32-y += milkymist-sysctl.o
0670dadd 283obj-lm32-$(CONFIG_OPENGL) += milkymist-tmu2.o
883de16b 284obj-lm32-y += milkymist-uart.o
d23948b1
MW
285obj-lm32-y += milkymist-vgafb.o
286obj-lm32-y += framebuffer.o
81ea0e13 287
9637443f 288obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
409dbce5 289obj-mips-y += mips_addr.o mips_timer.o mips_int.o
cfce6d89 290obj-mips-y += vga.o
1213406b 291obj-mips-y += jazz_led.o
956a3e6b 292obj-mips-y += gt64xxx.o mc146818rtc.o
08af49da 293obj-mips-y += cirrus_vga.o
051c190b 294obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
9637443f 295
9637443f 296obj-microblaze-y = petalogix_s3adsp1800_mmu.o
00914b7d 297obj-microblaze-y += petalogix_ml605_mmu.o
9637443f
JQ
298
299obj-microblaze-y += microblaze_pic_cpu.o
300obj-microblaze-y += xilinx_intc.o
301obj-microblaze-y += xilinx_timer.o
302obj-microblaze-y += xilinx_uartlite.o
303obj-microblaze-y += xilinx_ethlite.o
93f1e401
EI
304obj-microblaze-y += xilinx_axidma.o
305obj-microblaze-y += xilinx_axienet.o
9637443f 306
3f0855b1 307obj-microblaze-$(CONFIG_FDT) += device_tree.o
9637443f 308
10c144e2 309# Boards
77d4f95e
EI
310obj-cris-y = cris_pic_cpu.o
311obj-cris-y += cris-boot.o
77d4f95e 312obj-cris-y += axis_dev88.o
10c144e2
EI
313
314# IO blocks
9637443f
JQ
315obj-cris-y += etraxfs_dma.o
316obj-cris-y += etraxfs_pic.o
317obj-cris-y += etraxfs_eth.o
318obj-cris-y += etraxfs_timer.o
319obj-cris-y += etraxfs_ser.o
320
3475187d 321ifeq ($(TARGET_ARCH), sparc64)
956a3e6b 322obj-sparc-y = sun4u.o apb_pci.o
1afdfddc 323obj-sparc-y += vga.o
2d48377a 324obj-sparc-y += mc146818rtc.o
b9945046 325obj-sparc-y += cirrus_vga.o
3475187d 326else
24056690 327obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
35da37e1 328obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
b04d9890
FC
329obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o leon3.o
330
331# GRLIB
332obj-sparc-y += grlib_gptimer.o grlib_irqmp.o grlib_apbuart.o
9637443f
JQ
333endif
334
f165b53a 335obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
9637443f
JQ
336obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
337obj-arm-y += versatile_pci.o
f7c70325 338obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
b9dc07d4 339obj-arm-y += arm_mptimer.o
9637443f
JQ
340obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
341obj-arm-y += pl061.o
342obj-arm-y += arm-semi.o
343obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
344obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
3d08ff69 345obj-arm-y += gumstix.o
f7736b91 346obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
02d74341 347obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o \
348 omap_gpio.o omap_intc.o omap_uart.o
2c1d9ecb 349obj-arm-y += omap2.o omap_dss.o soc_dma.o omap_gptimer.o omap_synctimer.o \
350 omap_gpmc.o omap_sdrc.o omap_spi.o omap_tap.o omap_l4.o
9637443f
JQ
351obj-arm-y += omap_sx1.o palm.o tsc210x.o
352obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
353obj-arm-y += mst_fpga.o mainstone.o
3bf11207 354obj-arm-y += z2.o
5f9fc5ad 355obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
9637443f 356obj-arm-y += framebuffer.o
2055283b 357obj-arm-y += vexpress.o
5bc95aa2 358obj-arm-y += strongarm.o
c64b21d5 359obj-arm-y += collie.o
d028d02d 360obj-arm-y += pl041.o lm4549.o
9637443f 361
9637443f 362obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
2d48377a 363obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
f7736b91 364obj-sh4-y += ide/mmio.o
9637443f
JQ
365
366obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
367obj-m68k-y += m68k-semi.o dummy_m68k.o
368
8cb310e1 369obj-s390x-y = s390-virtio-bus.o s390-virtio.o
f3304eea 370
cfce6d89 371obj-alpha-y = mc146818rtc.o
b758aca1 372obj-alpha-y += vga.o cirrus_vga.o
80bb2ff7 373obj-alpha-y += alpha_pci.o alpha_dp264.o alpha_typhoon.o
6049f4f8 374
2328826b 375obj-xtensa-y += xtensa_pic.o
5e408573 376obj-xtensa-y += xtensa_sim.o
0200db65 377obj-xtensa-y += xtensa_lx60.o
1ddeaa5d 378obj-xtensa-y += xtensa-semi.o
53add759 379obj-xtensa-y += core-dc232b.o
935f7a2b 380obj-xtensa-y += core-fsf.o
2328826b 381
ad96090a 382main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
5824d651 383
e3193601 384monitor.o: hmp-commands.h qmp-commands-old.h
2313086a 385
0e8c9214
AF
386$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
387
388obj-y += $(addprefix ../, $(common-obj-y))
4d904533 389obj-y += $(addprefix ../libdis/, $(libdis-y))
0e8c9214
AF
390obj-y += $(libobj-y)
391obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
937b1258 392obj-y += $(addprefix ../, $(trace-obj-y))
626df76a 393
76dfdd24 394endif # CONFIG_SOFTMMU
00a67ba1 395
111a38b0 396ifndef CONFIG_LINUX_USER
0fc6b582 397ifndef CONFIG_BSD_USER
111a38b0 398# libcacard needs qemu-thread support, and besides is only needed by devices
0fc6b582 399# so not requires with linux-user / bsd-user targets
111a38b0 400obj-$(CONFIG_SMARTCARD_NSS) += $(addprefix ../libcacard/, $(libcacard-y))
0fc6b582 401endif # CONFIG_BSD_USER
111a38b0
RR
402endif # CONFIG_LINUX_USER
403
3d0f1517
JQ
404obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
405
0e8c9214 406$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
e03b41d4 407 $(call LINK,$^)
16394485
JQ
408
409
4c3b5a48
BS
410gdbstub-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)$@")
56aebc89 412
acd0a093 413hmp-commands.h: $(SRC_PATH)/hmp-commands.hx
4c3b5a48 414 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
2313086a 415
e3193601 416qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx
4c3b5a48 417 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
2313086a 418
626df76a 419clean:
2313086a 420 rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
353ac78d 421 rm -f *.d */*.d tcg/*.o ide/*.o 9pfs/*.o
e3193601 422 rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c
6d8a764e 423ifdef CONFIG_TRACE_SYSTEMTAP
c276b17d
DB
424 rm -f *.stp
425endif
1e43adfc 426
5fafdf24 427install: all
9b14bb04 428ifneq ($(PROGS),)
52ba784d
HB
429 $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
430ifneq ($(STRIP),)
431 $(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
432endif
9b14bb04 433endif
6d8a764e 434ifdef CONFIG_TRACE_SYSTEMTAP
c276b17d
DB
435 $(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
436 $(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset"
437endif
626df76a 438
2f96c28d
JM
439# Include automatically generated dependency files
440-include $(wildcard *.d */*.d)