Makefile.target 12.5 KB
Newer Older
1 2
# -*- 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)
J
Jan Kiszka 已提交
6
CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y)
J
Juan Quintela 已提交
7

8
include ../config-host.mak
9
include config-devices.mak
10
include config-target.mak
A
aliguori 已提交
11
include $(SRC_PATH)/rules.mak
12 13 14
ifneq ($(HWDIR),)
include $(HWDIR)/config.mak
endif
B
bellard 已提交
15

B
bellard 已提交
16
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
P
Paolo Bonzini 已提交
17
$(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
18 19 20 21
ifdef CONFIG_LINUX
QEMU_CFLAGS += -I../linux-headers
endif
QEMU_CFLAGS += -I.. -I$(TARGET_PATH) -DNEED_CPU_H
22

23 24
include $(SRC_PATH)/Makefile.objs

25 26 27 28
ifdef CONFIG_USER_ONLY
# user emulator name
QEMU_PROG=qemu-$(TARGET_ARCH2)
else
29
# system emulator name
30
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
31
endif
B
bellard 已提交
32

33
PROGS=$(QEMU_PROG)
34
STPFILES=
B
bellard 已提交
35

A
Andreas Färber 已提交
36
ifndef CONFIG_HAIKU
B
bellard 已提交
37
LIBS+=-lm
A
Andreas Färber 已提交
38
endif
39

40 41 42
config-target.h: config-target.h-timestamp
config-target.h-timestamp: config-target.mak

43
ifdef CONFIG_TRACE_SYSTEMTAP
44 45 46 47 48 49 50 51 52
stap: $(QEMU_PROG).stp

ifdef CONFIG_USER_ONLY
TARGET_TYPE=user
else
TARGET_TYPE=system
endif

$(QEMU_PROG).stp:
B
Blue Swirl 已提交
53
	$(call quiet-command,sh $(SRC_PATH)/scripts/tracetool \
54 55 56 57 58 59 60 61 62 63
		--$(TRACE_BACKEND) \
		--binary $(bindir)/$(QEMU_PROG) \
		--target-arch $(TARGET_ARCH) \
		--target-type $(TARGET_TYPE) \
		--stap < $(SRC_PATH)/trace-events > $(QEMU_PROG).stp,"  GEN   $(QEMU_PROG).stp")
else
stap:
endif

all: $(PROGS) stap
64

P
Paul Brook 已提交
65 66
# Dummy command so that make thinks it has done something
	@true
B
bellard 已提交
67

68
#########################################################
B
bellard 已提交
69
# cpu emulator library
B
Blue Swirl 已提交
70
libobj-y = exec.o translate-all.o cpu-exec.o translate.o
K
Kirill Batuzov 已提交
71
libobj-y += tcg/tcg.o tcg/optimize.o
A
Aurelien Jarno 已提交
72
libobj-y += fpu/softfloat.o
J
Juan Quintela 已提交
73
libobj-y += op_helper.o helper.o
74 75 76
ifeq ($(TARGET_BASE_ARCH), i386)
libobj-y += cpuid.o
endif
77
libobj-$(CONFIG_NEED_MMU) += mmu.o
78
libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
79

J
Juan Quintela 已提交
80
libobj-y += disas.o
B
bellard 已提交
81

82
$(libobj-y): $(GENERATED_HEADERS)
83

84
# libqemu
85

86
translate.o: translate.c cpu.h
87

88
translate-all.o: translate-all.c cpu.h
89

90
tcg/tcg.o: cpu.h
91 92 93

# HELPER_CFLAGS is used for all the code compiled with static register
# variables
94
op_helper.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
95

J
Juan Quintela 已提交
96
# Note: this is a workaround. The real fix is to avoid compiling
97
# cpu_signal_handler() in user-exec.c.
J
Juan Quintela 已提交
98 99
signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)

100 101 102 103 104
#########################################################
# Linux user emulator target

ifdef CONFIG_LINUX_USER

P
Paolo Bonzini 已提交
105 106
$(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
B
Blue Swirl 已提交
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 \
A
Anthony Liguori 已提交
110
      user-exec.o $(oslib-obj-y)
111

112
obj-$(TARGET_HAS_BFLT) += flatload.o
113

114
obj-$(TARGET_I386) += vm86.o
115

116
obj-i386-y += ioport-user.o
117

118
nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
J
Juan Quintela 已提交
119
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
120 121 122 123
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
obj-arm-y += arm-semi.o

obj-m68k-y += m68k-sim.o m68k-semi.o
124

125 126 127
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
128
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
129
obj-y += $(libobj-y)
130

131 132 133 134 135 136 137
endif #CONFIG_LINUX_USER

#########################################################
# Darwin user emulator target

ifdef CONFIG_DARWIN_USER

P
Paolo Bonzini 已提交
138 139
$(call set-vpath, $(SRC_PATH)/darwin-user)

J
Juan Quintela 已提交
140
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
141 142 143 144 145 146

# Leave some space for the regular program loading zone
LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000

LIBS+=-lmx

J
Juan Quintela 已提交
147
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
148
        gdbstub.o user-exec.o
149

150
obj-i386-y += ioport-user.o
151

152 153 154
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
155
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
156
obj-y += $(libobj-y)
157 158 159

endif #CONFIG_DARWIN_USER

B
blueswir1 已提交
160 161 162 163 164
#########################################################
# BSD user emulator target

ifdef CONFIG_BSD_USER

P
Paolo Bonzini 已提交
165 166
$(call set-vpath, $(SRC_PATH)/bsd-user)

J
Juan Quintela 已提交
167
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
B
blueswir1 已提交
168

B
Blue Swirl 已提交
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
171

172
obj-i386-y += ioport-user.o
B
blueswir1 已提交
173

174 175 176
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
177
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
178
obj-y += $(libobj-y)
B
blueswir1 已提交
179 180 181

endif #CONFIG_BSD_USER

182 183
#########################################################
# System emulator target
184
ifdef CONFIG_SOFTMMU
185

A
Avi Kivity 已提交
186
obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o ioport.o
A
aliguori 已提交
187 188
# virtio has to be here due to weird dependency between PCI and virtio-net.
# 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
M
Michael S. Tsirkin 已提交
191 192
obj-y += vhost_net.o
obj-$(CONFIG_VHOST_NET) += vhost.o
193
obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o
J
Juan Quintela 已提交
194
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
195
obj-$(CONFIG_NO_KVM) += kvm-stub.o
A
Avi Kivity 已提交
196
obj-y += memory.o
197
LIBS+=-lz
B
bellard 已提交
198

J
Juan Quintela 已提交
199 200
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
201
QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
C
Corentin Chary 已提交
202
QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
203
QEMU_CFLAGS += $(GLIB_CFLAGS)
204

A
Anthony PERARD 已提交
205
# xen support
206
obj-$(CONFIG_XEN) += xen-all.o xen_machine_pv.o xen_domainbuild.o xen-mapcache.o
A
Anthony PERARD 已提交
207 208
obj-$(CONFIG_NO_XEN) += xen-stub.o

209 210
obj-i386-$(CONFIG_XEN) += xen_platform.o

211
# Inter-VM PCI shared memory
212 213 214 215 216 217 218
CONFIG_IVSHMEM =
ifeq ($(CONFIG_KVM), y)
  ifeq ($(CONFIG_PCI), y)
    CONFIG_IVSHMEM = y
  endif
endif
obj-$(CONFIG_IVSHMEM) += ivshmem.o
219

220
# Hardware support
B
Blue Swirl 已提交
221
obj-i386-y += vga.o
B
Blue Swirl 已提交
222
obj-i386-y += mc146818rtc.o i8259.o pc.o
G
Glauber Costa 已提交
223
obj-i386-y += cirrus_vga.o sga.o apic.o ioapic.o piix_pci.o
B
Blue Swirl 已提交
224
obj-i386-y += vmport.o
M
Markus Armbruster 已提交
225
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
B
Blue Swirl 已提交
226
obj-i386-y += debugcon.o multiboot.o
227 228
obj-i386-y += pc_piix.o
obj-i386-$(CONFIG_KVM) += kvmclock.o
G
Gerd Hoffmann 已提交
229
obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
230

J
j_mayer 已提交
231
# shared objects
F
Fabien Chouteau 已提交
232
obj-ppc-y = ppc.o ppc_booke.o
B
Blue Swirl 已提交
233
obj-ppc-y += vga.o
J
j_mayer 已提交
234
# PREP target
B
Blue Swirl 已提交
235
obj-ppc-y += i8259.o mc146818rtc.o
B
Blue Swirl 已提交
236
obj-ppc-y += ppc_prep.o
J
j_mayer 已提交
237
# OldWorld PowerMac
B
Blue Swirl 已提交
238
obj-ppc-y += ppc_oldworld.o
J
j_mayer 已提交
239
# NewWorld PowerMac
B
Blue Swirl 已提交
240
obj-ppc-y += ppc_newworld.o
241
# IBM pSeries (sPAPR)
242 243
obj-ppc-$(CONFIG_PSERIES) += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
obj-ppc-$(CONFIG_PSERIES) += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
J
j_mayer 已提交
244
# PowerPC 4xx boards
B
Blue Swirl 已提交
245
obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
246
obj-ppc-y += ppc440.o ppc440_bamboo.o
247
# PowerPC E500 boards
A
Alexander Graf 已提交
248
obj-ppc-y += ppce500_mpc8544ds.o mpc8544_guts.o ppce500_spin.o
249 250
# PowerPC 440 Xilinx ML507 reference board.
obj-ppc-y += virtex_ml507.o
251
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
252
obj-ppc-$(CONFIG_FDT) += device_tree.o
253 254
# PowerPC OpenPIC
obj-ppc-y += openpic.o
255

256 257 258 259 260 261
# Xilinx PPC peripherals
obj-ppc-y += xilinx_intc.o
obj-ppc-y += xilinx_timer.o
obj-ppc-y += xilinx_uartlite.o
obj-ppc-y += xilinx_ethlite.o

M
Michael Walle 已提交
262 263
# LM32 boards
obj-lm32-y += lm32_boards.o
264
obj-lm32-y += milkymist.o
M
Michael Walle 已提交
265

M
Michael Walle 已提交
266
# LM32 peripherals
M
Michael Walle 已提交
267
obj-lm32-y += lm32_pic.o
M
Michael Walle 已提交
268
obj-lm32-y += lm32_juart.o
M
Michael Walle 已提交
269
obj-lm32-y += lm32_timer.o
M
Michael Walle 已提交
270
obj-lm32-y += lm32_uart.o
M
Michael Walle 已提交
271
obj-lm32-y += lm32_sys.o
M
Michael Walle 已提交
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
M
Michael Walle 已提交
276
obj-lm32-y += milkymist-pfpu.o
277
obj-lm32-y += milkymist-softusb.o
278
obj-lm32-y += milkymist-sysctl.o
M
Michael Walle 已提交
279
obj-lm32-$(CONFIG_OPENGL) += milkymist-tmu2.o
M
Michael Walle 已提交
280
obj-lm32-y += milkymist-uart.o
281 282
obj-lm32-y += milkymist-vgafb.o
obj-lm32-y += framebuffer.o
M
Michael Walle 已提交
283

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
B
Blue Swirl 已提交
286
obj-mips-y += vga.o i8259.o
B
Blue Swirl 已提交
287
obj-mips-y += jazz_led.o
B
Blue Swirl 已提交
288
obj-mips-y += gt64xxx.o mc146818rtc.o
B
Blue Swirl 已提交
289
obj-mips-y += cirrus_vga.o
290
obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
291 292

obj-microblaze-y = petalogix_s3adsp1800_mmu.o
293
obj-microblaze-y += petalogix_ml605_mmu.o
294 295 296 297 298 299

obj-microblaze-y += microblaze_pic_cpu.o
obj-microblaze-y += xilinx_intc.o
obj-microblaze-y += xilinx_timer.o
obj-microblaze-y += xilinx_uartlite.o
obj-microblaze-y += xilinx_ethlite.o
300 301
obj-microblaze-y += xilinx_axidma.o
obj-microblaze-y += xilinx_axienet.o
302

303
obj-microblaze-$(CONFIG_FDT) += device_tree.o
304

305
# Boards
306 307 308
obj-cris-y = cris_pic_cpu.o
obj-cris-y += cris-boot.o
obj-cris-y += axis_dev88.o
309 310

# IO blocks
311 312 313 314 315 316
obj-cris-y += etraxfs_dma.o
obj-cris-y += etraxfs_pic.o
obj-cris-y += etraxfs_eth.o
obj-cris-y += etraxfs_timer.o
obj-cris-y += etraxfs_ser.o

B
bellard 已提交
317
ifeq ($(TARGET_ARCH), sparc64)
B
Blue Swirl 已提交
318
obj-sparc-y = sun4u.o apb_pci.o
B
Blue Swirl 已提交
319
obj-sparc-y += vga.o
B
Blue Swirl 已提交
320
obj-sparc-y += mc146818rtc.o
B
Blue Swirl 已提交
321
obj-sparc-y += cirrus_vga.o
B
bellard 已提交
322
else
323
obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
B
Blue Swirl 已提交
324
obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
F
Fabien Chouteau 已提交
325 326 327 328
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o leon3.o

# GRLIB
obj-sparc-y += grlib_gptimer.o grlib_irqmp.o grlib_apbuart.o
329 330
endif

P
Paul Brook 已提交
331
obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
332 333
obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
obj-arm-y += versatile_pci.o
P
Paul Brook 已提交
334
obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
335 336 337 338 339
obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
obj-arm-y += pl061.o
obj-arm-y += arm-semi.o
obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
B
Blue Swirl 已提交
340
obj-arm-y += gumstix.o
B
Blue Swirl 已提交
341
obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
C
cmchao 已提交
342 343
obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o \
		omap_gpio.o omap_intc.o omap_uart.o
344 345
obj-arm-y += omap2.o omap_dss.o soc_dma.o omap_gptimer.o omap_synctimer.o \
		omap_gpmc.o omap_sdrc.o omap_spi.o omap_tap.o omap_l4.o
346 347 348
obj-arm-y += omap_sx1.o palm.o tsc210x.o
obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
obj-arm-y += mst_fpga.o mainstone.o
349
obj-arm-y += z2.o
B
Blue Swirl 已提交
350
obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
351 352 353 354
obj-arm-y += framebuffer.o
obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
obj-arm-y += syborg_virtio.o
355
obj-arm-y += vexpress.o
356
obj-arm-y += strongarm.o
357
obj-arm-y += collie.o
358 359

obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
B
Blue Swirl 已提交
360
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
B
Blue Swirl 已提交
361
obj-sh4-y += ide/mmio.o
362 363 364 365

obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
obj-m68k-y += m68k-semi.o dummy_m68k.o

366
obj-s390x-y = s390-virtio-bus.o s390-virtio.o
A
Alexander Graf 已提交
367

368 369
obj-alpha-y = i8259.o mc146818rtc.o
obj-alpha-y += vga.o cirrus_vga.o
370
obj-alpha-y += alpha_pci.o alpha_dp264.o alpha_typhoon.o
371

M
Max Filippov 已提交
372
obj-xtensa-y += xtensa_pic.o
373
obj-xtensa-y += xtensa_sim.o
374
obj-xtensa-y += xtensa_lx60.o
M
Max Filippov 已提交
375
obj-xtensa-y += xtensa-semi.o
M
Max Filippov 已提交
376
obj-xtensa-y += core-dc232b.o
M
Max Filippov 已提交
377
obj-xtensa-y += core-fsf.o
M
Max Filippov 已提交
378

379
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
380

381
monitor.o: hmp-commands.h qmp-commands-old.h
382

383 384 385
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../, $(common-obj-y))
B
Blue Swirl 已提交
386
obj-y += $(addprefix ../libdis/, $(libdis-y))
387 388
obj-y += $(libobj-y)
obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
389
obj-y += $(addprefix ../, $(trace-obj-y))
B
bellard 已提交
390

391
endif # CONFIG_SOFTMMU
392

R
Robert Relyea 已提交
393
ifndef CONFIG_LINUX_USER
394
ifndef CONFIG_BSD_USER
R
Robert Relyea 已提交
395
# libcacard needs qemu-thread support, and besides is only needed by devices
396
# so not requires with linux-user / bsd-user targets
R
Robert Relyea 已提交
397
obj-$(CONFIG_SMARTCARD_NSS) += $(addprefix ../libcacard/, $(libcacard-y))
398
endif # CONFIG_BSD_USER
R
Robert Relyea 已提交
399 400
endif # CONFIG_LINUX_USER

401 402
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o

403
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
L
Lluís 已提交
404
	$(call LINK,$^)
405 406


B
Blue Swirl 已提交
407 408
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
P
pbrook 已提交
409

410
hmp-commands.h: $(SRC_PATH)/hmp-commands.hx
B
Blue Swirl 已提交
411
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
412

413
qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx
B
Blue Swirl 已提交
414
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
415

B
bellard 已提交
416
clean:
417
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
418
	rm -f *.d */*.d tcg/*.o ide/*.o 9pfs/*.o
419
	rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c
420
ifdef CONFIG_TRACE_SYSTEMTAP
421 422
	rm -f *.stp
endif
423

424
install: all
B
bellard 已提交
425
ifneq ($(PROGS),)
426 427 428 429
	$(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
ifneq ($(STRIP),)
	$(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
endif
B
bellard 已提交
430
endif
431
ifdef CONFIG_TRACE_SYSTEMTAP
432 433 434
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
	$(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset"
endif
B
bellard 已提交
435

436 437
# Include automatically generated dependency files
-include $(wildcard *.d */*.d)