Statistics
| Branch: | Revision:

root / Makefile.target @ 4040ab72

History | View | Annotate | Download (11.3 kB)

1
# -*- Mode: makefile -*-
2

    
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

    
7
include ../config-host.mak
8
include config-devices.mak
9
include config-target.mak
10
include $(SRC_PATH)/rules.mak
11
ifneq ($(HWDIR),)
12
include $(HWDIR)/config.mak
13
endif
14

    
15
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
16
$(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
17
QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
18

    
19
include $(SRC_PATH)/Makefile.objs
20

    
21
ifdef CONFIG_USER_ONLY
22
# user emulator name
23
QEMU_PROG=qemu-$(TARGET_ARCH2)
24
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
31
endif
32

    
33
PROGS=$(QEMU_PROG)
34
STPFILES=
35

    
36
ifndef CONFIG_HAIKU
37
LIBS+=-lm
38
endif
39

    
40
kvm.o kvm-all.o vhost.o vhost_net.o kvmclock.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
41

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

    
45
ifdef CONFIG_SYSTEMTAP_TRACE
46
stap: $(QEMU_PROG).stp
47

    
48
ifdef CONFIG_USER_ONLY
49
TARGET_TYPE=user
50
else
51
TARGET_TYPE=system
52
endif
53

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

    
65
all: $(PROGS) stap
66

    
67
# Dummy command so that make thinks it has done something
68
	@true
69

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

    
83
libobj-y += disas.o
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
# HELPER_CFLAGS is used for all the code compiled with static register
96
# variables
97
op_helper.o cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
98

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

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

    
106
ifdef CONFIG_LINUX_USER
107

    
108
$(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))
109

    
110
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
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 \
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
122
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
123
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
124
obj-arm-y += arm-semi.o
125

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

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

    
130
obj-y += $(addprefix ../libuser/, $(user-obj-y))
131
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
132
obj-y += $(libobj-y)
133

    
134
endif #CONFIG_LINUX_USER
135

    
136
#########################################################
137
# Darwin user emulator target
138

    
139
ifdef CONFIG_DARWIN_USER
140

    
141
$(call set-vpath, $(SRC_PATH)/darwin-user)
142

    
143
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
144

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

    
148
LIBS+=-lmx
149

    
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
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
156

    
157
obj-y += $(addprefix ../libuser/, $(user-obj-y))
158
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
159
obj-y += $(libobj-y)
160

    
161
endif #CONFIG_DARWIN_USER
162

    
163
#########################################################
164
# BSD user emulator target
165

    
166
ifdef CONFIG_BSD_USER
167

    
168
$(call set-vpath, $(SRC_PATH)/bsd-user)
169

    
170
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
171

    
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
176

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

    
179
obj-y += $(addprefix ../libuser/, $(user-obj-y))
180
obj-y += $(addprefix ../libdis-user/, $(libdis-y))
181
obj-y += $(libobj-y)
182

    
183
endif #CONFIG_BSD_USER
184

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

    
189
obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o
190
# virtio has to be here due to weird dependency between PCI and virtio-net.
191
# need to fix this properly
192
obj-$(CONFIG_NO_PCI) += pci-stub.o
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
195
obj-y += vhost_net.o
196
obj-$(CONFIG_VHOST_NET) += vhost.o
197
obj-$(CONFIG_REALLY_VIRTFS) += virtio-9p.o
198
obj-y += rwhandler.o
199
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
200
obj-$(CONFIG_NO_KVM) += kvm-stub.o
201
LIBS+=-lz
202

    
203
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
204
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
205
QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
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
215
obj-i386-y += vga.o
216
obj-i386-y += mc146818rtc.o i8259.o pc.o
217
obj-i386-y += cirrus_vga.o apic.o ioapic.o piix_pci.o
218
obj-i386-y += vmport.o
219
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
220
obj-i386-y += debugcon.o multiboot.o
221
obj-i386-y += pc_piix.o kvmclock.o
222
obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
223

    
224
# shared objects
225
obj-ppc-y = ppc.o
226
obj-ppc-y += vga.o
227
# PREP target
228
obj-ppc-y += i8259.o mc146818rtc.o
229
obj-ppc-y += ppc_prep.o
230
# OldWorld PowerMac
231
obj-ppc-y += ppc_oldworld.o
232
# NewWorld PowerMac
233
obj-ppc-y += ppc_newworld.o
234
# IBM pSeries (sPAPR)
235
ifeq ($(CONFIG_FDT)$(TARGET_PPC64),yy)
236
obj-ppc-y += spapr.o spapr_hcall.o spapr_vio.o
237
obj-ppc-y += spapr_vty.o
238
endif
239
# PowerPC 4xx boards
240
obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
241
obj-ppc-y += ppc440.o ppc440_bamboo.o
242
# PowerPC E500 boards
243
obj-ppc-y += ppce500_mpc8544ds.o
244
# PowerPC 440 Xilinx ML507 reference board.
245
obj-ppc-y += virtex_ml507.o
246
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
247
obj-ppc-$(CONFIG_FDT) += device_tree.o
248

    
249
# Xilinx PPC peripherals
250
obj-ppc-y += xilinx_intc.o
251
obj-ppc-y += xilinx_timer.o
252
obj-ppc-y += xilinx_uartlite.o
253
obj-ppc-y += xilinx_ethlite.o
254

    
255
# LM32 boards
256
obj-lm32-y += lm32_boards.o
257

    
258
# LM32 peripherals
259
obj-lm32-y += lm32_pic.o
260
obj-lm32-y += lm32_juart.o
261
obj-lm32-y += lm32_timer.o
262
obj-lm32-y += lm32_uart.o
263
obj-lm32-y += lm32_sys.o
264

    
265
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
266
obj-mips-y += mips_addr.o mips_timer.o mips_int.o
267
obj-mips-y += vga.o i8259.o
268
obj-mips-y += g364fb.o jazz_led.o
269
obj-mips-y += gt64xxx.o mc146818rtc.o
270
obj-mips-y += cirrus_vga.o
271
obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
272

    
273
obj-microblaze-y = petalogix_s3adsp1800_mmu.o
274
obj-microblaze-y += petalogix_ml605_mmu.o
275

    
276
obj-microblaze-y += microblaze_pic_cpu.o
277
obj-microblaze-y += xilinx_intc.o
278
obj-microblaze-y += xilinx_timer.o
279
obj-microblaze-y += xilinx_uartlite.o
280
obj-microblaze-y += xilinx_ethlite.o
281
obj-microblaze-y += xilinx_axidma.o
282
obj-microblaze-y += xilinx_axienet.o
283

    
284
obj-microblaze-$(CONFIG_FDT) += device_tree.o
285

    
286
# Boards
287
obj-cris-y = cris_pic_cpu.o
288
obj-cris-y += cris-boot.o
289
obj-cris-y += etraxfs.o axis_dev88.o
290
obj-cris-y += axis_dev88.o
291

    
292
# IO blocks
293
obj-cris-y += etraxfs_dma.o
294
obj-cris-y += etraxfs_pic.o
295
obj-cris-y += etraxfs_eth.o
296
obj-cris-y += etraxfs_timer.o
297
obj-cris-y += etraxfs_ser.o
298

    
299
ifeq ($(TARGET_ARCH), sparc64)
300
obj-sparc-y = sun4u.o apb_pci.o
301
obj-sparc-y += vga.o
302
obj-sparc-y += mc146818rtc.o
303
obj-sparc-y += cirrus_vga.o
304
else
305
obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
306
obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
307
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o leon3.o
308

    
309
# GRLIB
310
obj-sparc-y += grlib_gptimer.o grlib_irqmp.o grlib_apbuart.o
311
endif
312

    
313
obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
314
obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
315
obj-arm-y += versatile_pci.o
316
obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
317
obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
318
obj-arm-y += pl061.o
319
obj-arm-y += arm-semi.o
320
obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
321
obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
322
obj-arm-y += gumstix.o
323
obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
324
obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o \
325
		omap_gpio.o omap_intc.o omap_uart.o
326
obj-arm-y += omap2.o omap_dss.o soc_dma.o omap_gptimer.o omap_synctimer.o \
327
		omap_gpmc.o omap_sdrc.o omap_spi.o omap_tap.o omap_l4.o
328
obj-arm-y += omap_sx1.o palm.o tsc210x.o
329
obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
330
obj-arm-y += mst_fpga.o mainstone.o
331
obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
332
obj-arm-y += framebuffer.o
333
obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
334
obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
335
obj-arm-y += syborg_virtio.o
336

    
337
obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
338
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
339
obj-sh4-y += ide/mmio.o
340

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

    
344
obj-s390x-y = s390-virtio-bus.o s390-virtio.o
345

    
346
obj-alpha-y = alpha_palcode.o
347

    
348
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
349

    
350
monitor.o: hmp-commands.h qmp-commands.h
351

    
352
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
353

    
354
obj-y += $(addprefix ../, $(common-obj-y))
355
obj-y += $(addprefix ../libdis/, $(libdis-y))
356
obj-y += $(libobj-y)
357
obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
358

    
359
endif # CONFIG_SOFTMMU
360

    
361
obj-y += $(addprefix ../, $(trace-obj-y))
362
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
363

    
364
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
365
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))
366

    
367

    
368
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
369
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
370

    
371
hmp-commands.h: $(SRC_PATH)/hmp-commands.hx
372
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
373

    
374
qmp-commands.h: $(SRC_PATH)/qmp-commands.hx
375
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
376

    
377
clean:
378
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
379
	rm -f *.d */*.d tcg/*.o ide/*.o
380
	rm -f hmp-commands.h qmp-commands.h gdbstub-xml.c
381
ifdef CONFIG_SYSTEMTAP_TRACE
382
	rm -f *.stp
383
endif
384

    
385
install: all
386
ifneq ($(PROGS),)
387
	$(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
388
ifneq ($(STRIP),)
389
	$(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
390
endif
391
endif
392
ifdef CONFIG_SYSTEMTAP_TRACE
393
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
394
	$(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset"
395
endif
396

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