Makefile.target 10.9 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
Juan Quintela 已提交
6

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

B
bellard 已提交
15
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
P
Paolo Bonzini 已提交
16
$(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
17
QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
18

19 20
include $(SRC_PATH)/Makefile.objs

21 22 23 24
ifdef CONFIG_USER_ONLY
# user emulator name
QEMU_PROG=qemu-$(TARGET_ARCH2)
else
25
# system emulator name
26
ifeq ($(TARGET_ARCH), i386)
27
QEMU_PROG=qemu$(EXESUF)
28
else
29
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
30
endif
B
bellard 已提交
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
kvm.o kvm-all.o vhost.o vhost_net.o kvmclock.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
A
aliguori 已提交
41

42 43 44
config-target.h: config-target.h-timestamp
config-target.h-timestamp: config-target.mak

45 46 47 48 49 50 51 52 53 54
ifdef CONFIG_SYSTEMTAP_TRACE
stap: $(QEMU_PROG).stp

ifdef CONFIG_USER_ONLY
TARGET_TYPE=user
else
TARGET_TYPE=system
endif

$(QEMU_PROG).stp:
B
Blue Swirl 已提交
55
	$(call quiet-command,sh $(SRC_PATH)/scripts/tracetool \
56 57 58 59 60 61 62 63 64 65
		--$(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
66

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

70
#########################################################
B
bellard 已提交
71
# cpu emulator library
B
Blue Swirl 已提交
72
libobj-y = exec.o translate-all.o cpu-exec.o translate.o
73
libobj-y += tcg/tcg.o
74 75
libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o
libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o
J
Juan Quintela 已提交
76
libobj-y += op_helper.o helper.o
77 78 79
ifeq ($(TARGET_BASE_ARCH), i386)
libobj-y += cpuid.o
endif
80
libobj-$(CONFIG_NEED_MMU) += mmu.o
81
libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
82

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

85
$(libobj-y): $(GENERATED_HEADERS)
86

87
# libqemu
88

89
translate.o: translate.c cpu.h
90

91
translate-all.o: translate-all.c cpu.h
92

93
tcg/tcg.o: cpu.h
94 95 96

# HELPER_CFLAGS is used for all the code compiled with static register
# variables
J
Juan Quintela 已提交
97
op_helper.o cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
98

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

103 104 105 106 107
#########################################################
# Linux user emulator target

ifdef CONFIG_LINUX_USER

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

110
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
B
Blue Swirl 已提交
111
obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
112
      elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \
J
Jes Sorensen 已提交
113
      qemu-malloc.o $(oslib-obj-y)
114

115
obj-$(TARGET_HAS_BFLT) += flatload.o
116

117
obj-$(TARGET_I386) += vm86.o
118

119
obj-i386-y += ioport-user.o
120

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

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

128 129 130
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../libuser/, $(user-obj-y))
B
Blue Swirl 已提交
131
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
132
obj-y += $(libobj-y)
133

134 135 136 137 138 139 140
endif #CONFIG_LINUX_USER

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

ifdef CONFIG_DARWIN_USER

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

J
Juan Quintela 已提交
143
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
144 145 146 147 148 149

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

LIBS+=-lmx

J
Juan Quintela 已提交
150
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
151
        gdbstub.o
152

153
obj-i386-y += ioport-user.o
154

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

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

endif #CONFIG_DARWIN_USER

B
blueswir1 已提交
163 164 165 166 167
#########################################################
# BSD user emulator target

ifdef CONFIG_BSD_USER

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

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

B
Blue Swirl 已提交
172
obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
173
        gdbstub.o uaccess.o
174

175
obj-i386-y += ioport-user.o
B
blueswir1 已提交
176

177 178 179
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

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

endif #CONFIG_BSD_USER

185 186
#########################################################
# System emulator target
187
ifdef CONFIG_SOFTMMU
188

B
Blue Swirl 已提交
189
obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o
A
aliguori 已提交
190 191
# virtio has to be here due to weird dependency between PCI and virtio-net.
# need to fix this properly
192
obj-$(CONFIG_NO_PCI) += pci-stub.o
P
Paul Brook 已提交
193
obj-$(CONFIG_VIRTIO) += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
194
obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
M
Michael S. Tsirkin 已提交
195 196
obj-y += vhost_net.o
obj-$(CONFIG_VHOST_NET) += vhost.o
P
Paul Brook 已提交
197
obj-$(CONFIG_REALLY_VIRTFS) += virtio-9p.o
198
obj-y += rwhandler.o
J
Juan Quintela 已提交
199
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
200
obj-$(CONFIG_NO_KVM) += kvm-stub.o
201
LIBS+=-lz
B
bellard 已提交
202

J
Juan Quintela 已提交
203 204
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
205
QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
C
Corentin Chary 已提交
206
QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
207

208
# xen backend driver support
209
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
210

211
# Inter-VM PCI shared memory
212
obj-$(CONFIG_KVM) += ivshmem.o
213

214
# Hardware support
B
Blue Swirl 已提交
215
obj-i386-y += vga.o
B
Blue Swirl 已提交
216
obj-i386-y += mc146818rtc.o i8259.o pc.o
B
Blue Swirl 已提交
217
obj-i386-y += cirrus_vga.o apic.o ioapic.o piix_pci.o
B
Blue Swirl 已提交
218
obj-i386-y += vmport.o
M
Markus Armbruster 已提交
219
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
B
Blue Swirl 已提交
220
obj-i386-y += debugcon.o multiboot.o
221
obj-i386-y += pc_piix.o kvmclock.o
G
Gerd Hoffmann 已提交
222
obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
223

J
j_mayer 已提交
224
# shared objects
B
Blue Swirl 已提交
225
obj-ppc-y = ppc.o
B
Blue Swirl 已提交
226
obj-ppc-y += vga.o
J
j_mayer 已提交
227
# PREP target
B
Blue Swirl 已提交
228
obj-ppc-y += i8259.o mc146818rtc.o
B
Blue Swirl 已提交
229
obj-ppc-y += ppc_prep.o
J
j_mayer 已提交
230
# OldWorld PowerMac
B
Blue Swirl 已提交
231
obj-ppc-y += ppc_oldworld.o
J
j_mayer 已提交
232
# NewWorld PowerMac
B
Blue Swirl 已提交
233
obj-ppc-y += ppc_newworld.o
J
j_mayer 已提交
234
# PowerPC 4xx boards
B
Blue Swirl 已提交
235
obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
236
obj-ppc-y += ppc440.o ppc440_bamboo.o
237
# PowerPC E500 boards
B
Blue Swirl 已提交
238
obj-ppc-y += ppce500_mpc8544ds.o
239 240
# PowerPC 440 Xilinx ML507 reference board.
obj-ppc-y += virtex_ml507.o
241
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
242
obj-ppc-$(CONFIG_FDT) += device_tree.o
243

244 245 246 247 248 249
# 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 已提交
250
# LM32 peripherals
M
Michael Walle 已提交
251
obj-lm32-y += lm32_pic.o
M
Michael Walle 已提交
252
obj-lm32-y += lm32_juart.o
M
Michael Walle 已提交
253

254
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
255
obj-mips-y += mips_addr.o mips_timer.o mips_int.o
B
Blue Swirl 已提交
256
obj-mips-y += vga.o i8259.o
B
Blue Swirl 已提交
257
obj-mips-y += g364fb.o jazz_led.o
B
Blue Swirl 已提交
258
obj-mips-y += gt64xxx.o mc146818rtc.o
B
Blue Swirl 已提交
259
obj-mips-y += cirrus_vga.o
260
obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
261 262 263 264 265 266 267 268 269

obj-microblaze-y = petalogix_s3adsp1800_mmu.o

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

270
obj-microblaze-$(CONFIG_FDT) += device_tree.o
271

272
# Boards
273 274 275 276
obj-cris-y = cris_pic_cpu.o
obj-cris-y += cris-boot.o
obj-cris-y += etraxfs.o axis_dev88.o
obj-cris-y += axis_dev88.o
277 278

# IO blocks
279 280 281 282 283 284
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 已提交
285
ifeq ($(TARGET_ARCH), sparc64)
B
Blue Swirl 已提交
286
obj-sparc-y = sun4u.o apb_pci.o
B
Blue Swirl 已提交
287
obj-sparc-y += vga.o
B
Blue Swirl 已提交
288
obj-sparc-y += mc146818rtc.o
B
Blue Swirl 已提交
289
obj-sparc-y += cirrus_vga.o
B
bellard 已提交
290
else
291
obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
B
Blue Swirl 已提交
292
obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
F
Fabien Chouteau 已提交
293 294 295 296
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
297 298
endif

P
Paul Brook 已提交
299
obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
300 301
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 已提交
302
obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
303 304 305 306 307
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 已提交
308
obj-arm-y += gumstix.o
B
Blue Swirl 已提交
309
obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
C
cmchao 已提交
310 311
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
312 313
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
314 315 316
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
B
Blue Swirl 已提交
317
obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
318 319 320 321 322 323
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

obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
B
Blue Swirl 已提交
324
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
B
Blue Swirl 已提交
325
obj-sh4-y += ide/mmio.o
326 327 328 329

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

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

332 333
obj-alpha-y = alpha_palcode.o

334
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
335

336
monitor.o: hmp-commands.h qmp-commands.h
337

338 339 340
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)

obj-y += $(addprefix ../, $(common-obj-y))
B
Blue Swirl 已提交
341
obj-y += $(addprefix ../libdis/, $(libdis-y))
342 343
obj-y += $(libobj-y)
obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
B
bellard 已提交
344

345
endif # CONFIG_SOFTMMU
346

347
obj-y += $(addprefix ../, $(trace-obj-y))
348 349
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o

350
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
351 352 353
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))


B
Blue Swirl 已提交
354 355
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 已提交
356

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

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

B
bellard 已提交
363
clean:
364
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
365
	rm -f *.d */*.d tcg/*.o ide/*.o
366
	rm -f hmp-commands.h qmp-commands.h gdbstub-xml.c
367 368 369
ifdef CONFIG_SYSTEMTAP_TRACE
	rm -f *.stp
endif
370

371
install: all
B
bellard 已提交
372
ifneq ($(PROGS),)
373 374 375 376
	$(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
ifneq ($(STRIP),)
	$(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
endif
B
bellard 已提交
377
endif
378 379 380 381
ifdef CONFIG_SYSTEMTAP_TRACE
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
	$(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset"
endif
B
bellard 已提交
382

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