Makefile.target 14.7 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
QEMU_CFLAGS+=-I$(SRC_PATH)/include

27 28 29 30
ifdef CONFIG_USER_ONLY
# user emulator name
QEMU_PROG=qemu-$(TARGET_ARCH2)
else
31
# system emulator name
32 33 34 35
ifneq (,$(findstring -mwindows,$(LIBS)))
# Terminate program name with a 'w' because the linker builds a windows executable.
QEMU_PROGW=qemu-system-$(TARGET_ARCH2)w$(EXESUF)
endif # windows executable
36
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
37
endif
B
bellard 已提交
38

39
PROGS=$(QEMU_PROG)
40 41 42
ifdef QEMU_PROGW
PROGS+=$(QEMU_PROGW)
endif
43
STPFILES=
B
bellard 已提交
44

A
Andreas Färber 已提交
45
ifndef CONFIG_HAIKU
B
bellard 已提交
46
LIBS+=-lm
A
Andreas Färber 已提交
47
endif
48

49 50 51
config-target.h: config-target.h-timestamp
config-target.h-timestamp: config-target.mak

52
ifdef CONFIG_TRACE_SYSTEMTAP
53 54 55 56 57 58 59 60
stap: $(QEMU_PROG).stp

ifdef CONFIG_USER_ONLY
TARGET_TYPE=user
else
TARGET_TYPE=system
endif

61
$(QEMU_PROG).stp: $(SRC_PATH)/trace-events
62 63 64 65 66 67 68
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/tracetool.py \
		--format=stap \
		--backend=$(TRACE_BACKEND) \
		--binary=$(bindir)/$(QEMU_PROG) \
		--target-arch=$(TARGET_ARCH) \
		--target-type=$(TARGET_TYPE) \
		< $(SRC_PATH)/trace-events > $(QEMU_PROG).stp,"  GEN   $(QEMU_PROG).stp")
69 70 71 72 73
else
stap:
endif

all: $(PROGS) stap
74

P
Paul Brook 已提交
75 76
# Dummy command so that make thinks it has done something
	@true
B
bellard 已提交
77

78
#########################################################
B
bellard 已提交
79
# cpu emulator library
B
Blue Swirl 已提交
80
libobj-y = exec.o translate-all.o cpu-exec.o translate.o
K
Kirill Batuzov 已提交
81
libobj-y += tcg/tcg.o tcg/optimize.o
82
libobj-$(CONFIG_TCG_INTERPRETER) += tci.o
A
Aurelien Jarno 已提交
83
libobj-y += fpu/softfloat.o
84
ifneq ($(TARGET_BASE_ARCH), sparc)
85
ifneq ($(TARGET_BASE_ARCH), alpha)
86 87
libobj-y += op_helper.o
endif
88
endif
89
libobj-y += helper.o
90
ifeq ($(TARGET_BASE_ARCH), i386)
A
Andreas Färber 已提交
91
libobj-y += cpu.o
92
endif
B
Blue Swirl 已提交
93
libobj-$(TARGET_SPARC64) += vis_helper.o
94
libobj-$(CONFIG_NEED_MMU) += mmu.o
95
libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
96
libobj-$(TARGET_ARM) += cpu.o
A
Andreas Färber 已提交
97
libobj-$(TARGET_CRIS) += cpu.o
A
Andreas Färber 已提交
98
libobj-$(TARGET_LM32) += cpu.o
A
Andreas Färber 已提交
99
libobj-$(TARGET_MICROBLAZE) += cpu.o
A
Andreas Färber 已提交
100
libobj-$(TARGET_S390X) += cpu.o
B
Blue Swirl 已提交
101
ifeq ($(TARGET_BASE_ARCH), sparc)
102
libobj-y += fop_helper.o cc_helper.o win_helper.o mmu_helper.o ldst_helper.o
103
libobj-y += cpu.o
B
Blue Swirl 已提交
104 105 106
endif
libobj-$(TARGET_SPARC) += int32_helper.o
libobj-$(TARGET_SPARC64) += int64_helper.o
A
Andreas Färber 已提交
107
libobj-$(TARGET_UNICORE32) += cpu.o
A
Andreas Färber 已提交
108
libobj-$(TARGET_XTENSA) += cpu.o
109
libobj-$(TARGET_ALPHA) += int_helper.o fpu_helper.o sys_helper.o mem_helper.o
A
Andreas Färber 已提交
110
libobj-$(TARGET_ALPHA) += cpu.o
111

J
Juan Quintela 已提交
112
libobj-y += disas.o
113 114 115
libobj-$(CONFIG_TCI_DIS) += tci-dis.o

tci-dis.o: QEMU_CFLAGS += -I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/tci
B
bellard 已提交
116

117
$(libobj-y): $(GENERATED_HEADERS)
118

119
# HELPER_CFLAGS is used for all the legacy code compiled with static register
120
# variables
121 122 123 124
ifneq ($(TARGET_BASE_ARCH), sparc)
op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
endif
user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
125

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

130 131 132 133 134
#########################################################
# Linux user emulator target

ifdef CONFIG_LINUX_USER

P
Paolo Bonzini 已提交
135 136
$(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))

137
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
B
Blue Swirl 已提交
138
obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
139
      elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \
A
Anthony Liguori 已提交
140
      user-exec.o $(oslib-obj-y)
141

142
obj-$(TARGET_HAS_BFLT) += flatload.o
143

144
obj-$(TARGET_I386) += vm86.o
145

146
obj-i386-y += ioport-user.o
147

148
nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
J
Juan Quintela 已提交
149
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
150 151 152 153
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
obj-arm-y += arm-semi.o

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

155 156
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

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

162 163 164 165 166 167 168
endif #CONFIG_LINUX_USER

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

ifdef CONFIG_DARWIN_USER

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

J
Juan Quintela 已提交
171
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
172 173 174 175 176 177

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

LIBS+=-lmx

J
Juan Quintela 已提交
178
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
179
        gdbstub.o user-exec.o
180

181
obj-i386-y += ioport-user.o
182

183 184
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

185
obj-y += $(addprefix ../, $(universal-obj-y))
186
obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
187
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
188
obj-y += $(libobj-y)
189 190 191

endif #CONFIG_DARWIN_USER

B
blueswir1 已提交
192 193 194 195 196
#########################################################
# BSD user emulator target

ifdef CONFIG_BSD_USER

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

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

B
Blue Swirl 已提交
201
obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
202
        gdbstub.o uaccess.o user-exec.o
203

204
obj-i386-y += ioport-user.o
B
blueswir1 已提交
205

206 207
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

208
obj-y += $(addprefix ../, $(universal-obj-y))
209
obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
210
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
211
obj-y += $(libobj-y)
B
blueswir1 已提交
212 213 214

endif #CONFIG_BSD_USER

215 216
#########################################################
# System emulator target
217
ifdef CONFIG_SOFTMMU
218

A
Avi Kivity 已提交
219
obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o ioport.o
A
aliguori 已提交
220 221
# virtio has to be here due to weird dependency between PCI and virtio-net.
# need to fix this properly
222
obj-$(CONFIG_NO_PCI) += pci-stub.o
223
obj-$(CONFIG_VIRTIO) += virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
P
Paolo Bonzini 已提交
224
obj-$(CONFIG_VIRTIO) += virtio-scsi.o
M
Michael S. Tsirkin 已提交
225 226
obj-y += vhost_net.o
obj-$(CONFIG_VHOST_NET) += vhost.o
227
obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o
J
Juan Quintela 已提交
228
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
229
obj-$(CONFIG_NO_KVM) += kvm-stub.o
230
obj-$(CONFIG_VGA) += vga.o
231
obj-y += memory.o savevm.o
232
LIBS+=-lz
B
bellard 已提交
233

B
Blue Swirl 已提交
234
obj-i386-$(CONFIG_KVM) += hyperv.o
235

J
Juan Quintela 已提交
236 237
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
238
QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
C
Corentin Chary 已提交
239
QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
240

A
Anthony PERARD 已提交
241
# xen support
242
obj-$(CONFIG_XEN) += xen-all.o xen_machine_pv.o xen_domainbuild.o xen-mapcache.o
A
Anthony PERARD 已提交
243 244
obj-$(CONFIG_NO_XEN) += xen-stub.o

245
obj-i386-$(CONFIG_XEN) += xen_platform.o xen_apic.o
246

247
# Inter-VM PCI shared memory
248 249 250 251 252 253 254
CONFIG_IVSHMEM =
ifeq ($(CONFIG_KVM), y)
  ifeq ($(CONFIG_PCI), y)
    CONFIG_IVSHMEM = y
  endif
endif
obj-$(CONFIG_IVSHMEM) += ivshmem.o
255

256 257 258
# Generic hotplugging
obj-y += device-hotplug.o

259
# Hardware support
J
Jan Kiszka 已提交
260
obj-i386-y += mc146818rtc.o pc.o
261 262
obj-i386-y += apic_common.o apic.o kvmvapic.o
obj-i386-y += sga.o ioapic_common.o ioapic.o piix_pci.o
B
Blue Swirl 已提交
263
obj-i386-y += vmport.o
264
obj-i386-y += pci-hotplug.o smbios.o wdt_ib700.o
B
Blue Swirl 已提交
265
obj-i386-y += debugcon.o multiboot.o
266
obj-i386-y += pc_piix.o
267
obj-i386-y += pc_sysfw.o
268
obj-i386-$(CONFIG_KVM) += kvm/clock.o kvm/apic.o kvm/i8259.o kvm/ioapic.o kvm/i8254.o
G
Gerd Hoffmann 已提交
269
obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
270

J
j_mayer 已提交
271
# shared objects
F
Fabien Chouteau 已提交
272
obj-ppc-y = ppc.o ppc_booke.o
J
j_mayer 已提交
273
# PREP target
J
Jan Kiszka 已提交
274
obj-ppc-y += mc146818rtc.o
B
Blue Swirl 已提交
275
obj-ppc-y += ppc_prep.o
J
j_mayer 已提交
276
# OldWorld PowerMac
B
Blue Swirl 已提交
277
obj-ppc-y += ppc_oldworld.o
J
j_mayer 已提交
278
# NewWorld PowerMac
B
Blue Swirl 已提交
279
obj-ppc-y += ppc_newworld.o
280
# IBM pSeries (sPAPR)
281 282
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
283
obj-ppc-$(CONFIG_PSERIES) += spapr_pci.o device-hotplug.o pci-hotplug.o
J
j_mayer 已提交
284
# PowerPC 4xx boards
B
Blue Swirl 已提交
285
obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
286
obj-ppc-y += ppc440_bamboo.o
287
# PowerPC E500 boards
A
Alexander Graf 已提交
288
obj-ppc-y += ppce500_mpc8544ds.o mpc8544_guts.o ppce500_spin.o
289 290
# PowerPC 440 Xilinx ML507 reference board.
obj-ppc-y += virtex_ml507.o
291
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
292
obj-ppc-$(CONFIG_FDT) += device_tree.o
293 294
# PowerPC OpenPIC
obj-ppc-y += openpic.o
295

296 297 298 299 300 301
# 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 已提交
302 303
# LM32 boards
obj-lm32-y += lm32_boards.o
304
obj-lm32-y += milkymist.o
M
Michael Walle 已提交
305

M
Michael Walle 已提交
306
# LM32 peripherals
M
Michael Walle 已提交
307
obj-lm32-y += lm32_pic.o
M
Michael Walle 已提交
308
obj-lm32-y += lm32_juart.o
M
Michael Walle 已提交
309
obj-lm32-y += lm32_timer.o
M
Michael Walle 已提交
310
obj-lm32-y += lm32_uart.o
M
Michael Walle 已提交
311
obj-lm32-y += lm32_sys.o
M
Michael Walle 已提交
312
obj-lm32-y += milkymist-ac97.o
313
obj-lm32-y += milkymist-hpdmc.o
314
obj-lm32-y += milkymist-memcard.o
315
obj-lm32-y += milkymist-minimac2.o
M
Michael Walle 已提交
316
obj-lm32-y += milkymist-pfpu.o
317
obj-lm32-y += milkymist-softusb.o
318
obj-lm32-y += milkymist-sysctl.o
M
Michael Walle 已提交
319
obj-lm32-$(CONFIG_OPENGL) += milkymist-tmu2.o
M
Michael Walle 已提交
320
obj-lm32-y += milkymist-uart.o
321 322
obj-lm32-y += milkymist-vgafb.o
obj-lm32-y += framebuffer.o
M
Michael Walle 已提交
323

324
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
325
obj-mips-y += mips_addr.o mips_timer.o mips_int.o
B
Blue Swirl 已提交
326
obj-mips-y += gt64xxx.o mc146818rtc.o
327
obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
328 329

obj-microblaze-y = petalogix_s3adsp1800_mmu.o
330
obj-microblaze-y += petalogix_ml605_mmu.o
331
obj-microblaze-y += microblaze_boot.o
332 333 334 335 336 337

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
338 339
obj-microblaze-y += xilinx_axidma.o
obj-microblaze-y += xilinx_axienet.o
340

341
obj-microblaze-$(CONFIG_FDT) += device_tree.o
342

343
# Boards
344 345 346
obj-cris-y = cris_pic_cpu.o
obj-cris-y += cris-boot.o
obj-cris-y += axis_dev88.o
347 348

# IO blocks
349 350 351 352 353 354
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 已提交
355
ifeq ($(TARGET_ARCH), sparc64)
B
Blue Swirl 已提交
356
obj-sparc-y = sun4u.o apb_pci.o
B
Blue Swirl 已提交
357
obj-sparc-y += mc146818rtc.o
B
bellard 已提交
358
else
359
obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
B
Blue Swirl 已提交
360
obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
F
Fabien Chouteau 已提交
361 362 363 364
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
365 366
endif

P
Paul Brook 已提交
367
obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
368 369
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
370
obj-arm-y += versatile_i2c.o
371
obj-arm-y += cadence_uart.o
372
obj-arm-y += cadence_ttc.o
373
obj-arm-y += cadence_gem.o
374
obj-arm-y += xilinx_zynq.o zynq_slcr.o
375
obj-arm-y += arm_gic.o
P
Paul Brook 已提交
376
obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
377
obj-arm-y += exynos4210_gic.o exynos4210_combiner.o exynos4210.o
E
Evgeny Voevodin 已提交
378
obj-arm-y += exynos4_boards.o exynos4210_uart.o exynos4210_pwm.o
379
obj-arm-y += exynos4210_pmu.o exynos4210_mct.o exynos4210_fimd.o
380
obj-arm-y += arm_l2x0.o
381
obj-arm-y += arm_mptimer.o a15mpcore.o
382
obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
383
obj-arm-y += highbank.o
384
obj-arm-y += pl061.o
R
Rob Herring 已提交
385
obj-arm-y += xgmac.o
386 387 388
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 已提交
389
obj-arm-y += gumstix.o
B
Blue Swirl 已提交
390
obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
C
cmchao 已提交
391 392
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
393 394
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
395
obj-arm-y += omap_sx1.o palm.o tsc210x.o
G
Gerd Hoffmann 已提交
396
obj-arm-y += nseries.o blizzard.o onenand.o cbus.o tusb6010.o usb/hcd-musb.o
397
obj-arm-y += mst_fpga.o mainstone.o
398
obj-arm-y += z2.o
B
Blue Swirl 已提交
399
obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
400
obj-arm-y += framebuffer.o
401
obj-arm-y += vexpress.o
402
obj-arm-y += strongarm.o
403
obj-arm-y += collie.o
404
obj-arm-y += pl041.o lm4549.o
G
Grant Likely 已提交
405
obj-arm-$(CONFIG_FDT) += device_tree.o
406 407

obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
B
Blue Swirl 已提交
408
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
B
Blue Swirl 已提交
409
obj-sh4-y += ide/mmio.o
410 411 412 413

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

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

J
Jan Kiszka 已提交
416
obj-alpha-y = mc146818rtc.o
417
obj-alpha-y += alpha_pci.o alpha_dp264.o alpha_typhoon.o
418

M
Max Filippov 已提交
419
obj-xtensa-y += xtensa_pic.o
420
obj-xtensa-y += xtensa_sim.o
421
obj-xtensa-y += xtensa_lx60.o
M
Max Filippov 已提交
422
obj-xtensa-y += xtensa-semi.o
M
Max Filippov 已提交
423
obj-xtensa-y += core-dc232b.o
M
Max Filippov 已提交
424
obj-xtensa-y += core-dc233c.o
M
Max Filippov 已提交
425
obj-xtensa-y += core-fsf.o
M
Max Filippov 已提交
426

427
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
428

429
monitor.o: hmp-commands.h qmp-commands-old.h
430

431 432
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

433
obj-y += $(addprefix ../, $(universal-obj-y))
434
obj-y += $(addprefix ../, $(common-obj-y))
B
Blue Swirl 已提交
435
obj-y += $(addprefix ../libdis/, $(libdis-y))
436 437
obj-y += $(libobj-y)
obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
438
obj-y += $(addprefix ../, $(trace-obj-y))
B
bellard 已提交
439

440
endif # CONFIG_SOFTMMU
441

R
Robert Relyea 已提交
442
ifndef CONFIG_LINUX_USER
443
ifndef CONFIG_BSD_USER
R
Robert Relyea 已提交
444
# libcacard needs qemu-thread support, and besides is only needed by devices
445
# so not requires with linux-user / bsd-user targets
R
Robert Relyea 已提交
446
obj-$(CONFIG_SMARTCARD_NSS) += $(addprefix ../libcacard/, $(libcacard-y))
447
endif # CONFIG_BSD_USER
R
Robert Relyea 已提交
448 449
endif # CONFIG_LINUX_USER

450 451
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o

452 453 454 455 456 457 458
ifdef QEMU_PROGW
# The linker builds a windows executable. Make also a console executable.
$(QEMU_PROGW): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
	$(call LINK,$^)
$(QEMU_PROG): $(QEMU_PROGW)
	$(call quiet-command,$(OBJCOPY) --subsystem console $(QEMU_PROGW) $(QEMU_PROG),"  GEN   $(TARGET_DIR)$(QEMU_PROG)")
else
459
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
L
Lluís 已提交
460
	$(call LINK,$^)
461
endif
462

B
Blue Swirl 已提交
463 464
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 已提交
465

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

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

B
bellard 已提交
472
clean:
473
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
474
	rm -f *.d */*.d tcg/*.o ide/*.o 9pfs/*.o kvm/*.o
475
	rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c
476
ifdef CONFIG_TRACE_SYSTEMTAP
477 478
	rm -f *.stp
endif
479

480
install: all
B
bellard 已提交
481
ifneq ($(PROGS),)
482 483 484 485
	$(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
ifneq ($(STRIP),)
	$(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
endif
B
bellard 已提交
486
endif
487
ifdef CONFIG_TRACE_SYSTEMTAP
488 489
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset"
	$(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(qemu_datadir)/../systemtap/tapset"
490
endif
B
bellard 已提交
491

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