Statistics
| Branch: | Revision:

root / Makefile.target @ 6dbd588a

History | View | Annotate | Download (12.4 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
CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y)
7
CONFIG_NO_XEN_MAPCACHE = $(if $(subst n,,$(CONFIG_XEN_MAPCACHE)),n,y)
8

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

    
17
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
18
$(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
19
ifdef CONFIG_LINUX
20
QEMU_CFLAGS += -I../linux-headers
21
endif
22
QEMU_CFLAGS += -I.. -I$(TARGET_PATH) -DNEED_CPU_H
23

    
24
include $(SRC_PATH)/Makefile.objs
25

    
26
ifdef CONFIG_USER_ONLY
27
# user emulator name
28
QEMU_PROG=qemu-$(TARGET_ARCH2)
29
else
30
# system emulator name
31
ifeq ($(TARGET_ARCH), i386)
32
QEMU_PROG=qemu$(EXESUF)
33
else
34
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
35
endif
36
endif
37

    
38
PROGS=$(QEMU_PROG)
39
STPFILES=
40

    
41
ifndef CONFIG_HAIKU
42
LIBS+=-lm
43
endif
44

    
45
config-target.h: config-target.h-timestamp
46
config-target.h-timestamp: config-target.mak
47

    
48
ifdef CONFIG_SYSTEMTAP_TRACE
49
stap: $(QEMU_PROG).stp
50

    
51
ifdef CONFIG_USER_ONLY
52
TARGET_TYPE=user
53
else
54
TARGET_TYPE=system
55
endif
56

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

    
68
all: $(PROGS) stap
69

    
70
# Dummy command so that make thinks it has done something
71
	@true
72

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

    
85
libobj-y += disas.o
86

    
87
$(libobj-y): $(GENERATED_HEADERS)
88

    
89
# libqemu
90

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

    
93
translate-all.o: translate-all.c cpu.h
94

    
95
tcg/tcg.o: cpu.h
96

    
97
# HELPER_CFLAGS is used for all the code compiled with static register
98
# variables
99
%_helper.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
100

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

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

    
108
ifdef CONFIG_LINUX_USER
109

    
110
$(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))
111

    
112
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
113
obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
114
      elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \
115
      qemu-malloc.o user-exec.o $(oslib-obj-y)
116

    
117
obj-$(TARGET_HAS_BFLT) += flatload.o
118

    
119
obj-$(TARGET_I386) += vm86.o
120

    
121
obj-i386-y += ioport-user.o
122

    
123
nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
124
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
125
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
126
obj-arm-y += arm-semi.o
127

    
128
obj-m68k-y += m68k-sim.o m68k-semi.o
129

    
130
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
131

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

    
136
endif #CONFIG_LINUX_USER
137

    
138
#########################################################
139
# Darwin user emulator target
140

    
141
ifdef CONFIG_DARWIN_USER
142

    
143
$(call set-vpath, $(SRC_PATH)/darwin-user)
144

    
145
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
146

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

    
150
LIBS+=-lmx
151

    
152
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
153
        gdbstub.o user-exec.o
154

    
155
obj-i386-y += ioport-user.o
156

    
157
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
158

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

    
163
endif #CONFIG_DARWIN_USER
164

    
165
#########################################################
166
# BSD user emulator target
167

    
168
ifdef CONFIG_BSD_USER
169

    
170
$(call set-vpath, $(SRC_PATH)/bsd-user)
171

    
172
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
173

    
174
obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
175
        gdbstub.o uaccess.o user-exec.o
176

    
177
obj-i386-y += ioport-user.o
178

    
179
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
180

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

    
185
endif #CONFIG_BSD_USER
186

    
187
#########################################################
188
# System emulator target
189
ifdef CONFIG_SOFTMMU
190

    
191
obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o
192
# virtio has to be here due to weird dependency between PCI and virtio-net.
193
# need to fix this properly
194
obj-$(CONFIG_NO_PCI) += pci-stub.o
195
obj-$(CONFIG_VIRTIO) += virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
196
obj-y += vhost_net.o
197
obj-$(CONFIG_VHOST_NET) += vhost.o
198
obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o
199
obj-y += rwhandler.o
200
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
201
obj-$(CONFIG_NO_KVM) += kvm-stub.o
202
LIBS+=-lz
203

    
204
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
205
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
206
QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
207
QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
208

    
209
# xen support
210
obj-$(CONFIG_XEN) += xen-all.o xen_machine_pv.o xen_domainbuild.o
211
obj-$(CONFIG_NO_XEN) += xen-stub.o
212
obj-i386-$(CONFIG_XEN_MAPCACHE) += xen-mapcache.o
213
obj-$(CONFIG_NO_XEN_MAPCACHE) += xen-mapcache-stub.o
214

    
215
obj-i386-$(CONFIG_XEN) += xen_platform.o
216

    
217
# Inter-VM PCI shared memory
218
CONFIG_IVSHMEM =
219
ifeq ($(CONFIG_KVM), y)
220
  ifeq ($(CONFIG_PCI), y)
221
    CONFIG_IVSHMEM = y
222
  endif
223
endif
224
obj-$(CONFIG_IVSHMEM) += ivshmem.o
225

    
226
# Hardware support
227
obj-i386-y += vga.o
228
obj-i386-y += mc146818rtc.o i8259.o pc.o
229
obj-i386-y += cirrus_vga.o sga.o apic.o ioapic.o piix_pci.o
230
obj-i386-y += vmport.o
231
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
232
obj-i386-y += debugcon.o multiboot.o
233
obj-i386-y += pc_piix.o
234
obj-i386-$(CONFIG_KVM) += kvmclock.o
235
obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
236

    
237
# shared objects
238
obj-ppc-y = ppc.o
239
obj-ppc-y += vga.o
240
# PREP target
241
obj-ppc-y += i8259.o mc146818rtc.o
242
obj-ppc-y += ppc_prep.o
243
# OldWorld PowerMac
244
obj-ppc-y += ppc_oldworld.o
245
# NewWorld PowerMac
246
obj-ppc-y += ppc_newworld.o
247
# IBM pSeries (sPAPR)
248
ifeq ($(CONFIG_FDT)$(TARGET_PPC64),yy)
249
obj-ppc-y += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
250
obj-ppc-y += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
251
endif
252
# PowerPC 4xx boards
253
obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
254
obj-ppc-y += ppc440.o ppc440_bamboo.o
255
# PowerPC E500 boards
256
obj-ppc-y += ppce500_mpc8544ds.o mpc8544_guts.o
257
# PowerPC 440 Xilinx ML507 reference board.
258
obj-ppc-y += virtex_ml507.o
259
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
260
obj-ppc-$(CONFIG_FDT) += device_tree.o
261

    
262
# Xilinx PPC peripherals
263
obj-ppc-y += xilinx_intc.o
264
obj-ppc-y += xilinx_timer.o
265
obj-ppc-y += xilinx_uartlite.o
266
obj-ppc-y += xilinx_ethlite.o
267

    
268
# LM32 boards
269
obj-lm32-y += lm32_boards.o
270
obj-lm32-y += milkymist.o
271

    
272
# LM32 peripherals
273
obj-lm32-y += lm32_pic.o
274
obj-lm32-y += lm32_juart.o
275
obj-lm32-y += lm32_timer.o
276
obj-lm32-y += lm32_uart.o
277
obj-lm32-y += lm32_sys.o
278
obj-lm32-y += milkymist-ac97.o
279
obj-lm32-y += milkymist-hpdmc.o
280
obj-lm32-y += milkymist-memcard.o
281
obj-lm32-y += milkymist-minimac2.o
282
obj-lm32-y += milkymist-pfpu.o
283
obj-lm32-y += milkymist-softusb.o
284
obj-lm32-y += milkymist-sysctl.o
285
obj-lm32-$(CONFIG_OPENGL) += milkymist-tmu2.o
286
obj-lm32-y += milkymist-uart.o
287
obj-lm32-y += milkymist-vgafb.o
288
obj-lm32-y += framebuffer.o
289

    
290
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
291
obj-mips-y += mips_addr.o mips_timer.o mips_int.o
292
obj-mips-y += vga.o i8259.o
293
obj-mips-y += g364fb.o jazz_led.o
294
obj-mips-y += gt64xxx.o mc146818rtc.o
295
obj-mips-y += cirrus_vga.o
296
obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
297

    
298
obj-microblaze-y = petalogix_s3adsp1800_mmu.o
299
obj-microblaze-y += petalogix_ml605_mmu.o
300

    
301
obj-microblaze-y += microblaze_pic_cpu.o
302
obj-microblaze-y += xilinx_intc.o
303
obj-microblaze-y += xilinx_timer.o
304
obj-microblaze-y += xilinx_uartlite.o
305
obj-microblaze-y += xilinx_ethlite.o
306
obj-microblaze-y += xilinx_axidma.o
307
obj-microblaze-y += xilinx_axienet.o
308

    
309
obj-microblaze-$(CONFIG_FDT) += device_tree.o
310

    
311
# Boards
312
obj-cris-y = cris_pic_cpu.o
313
obj-cris-y += cris-boot.o
314
obj-cris-y += etraxfs.o axis_dev88.o
315
obj-cris-y += axis_dev88.o
316

    
317
# IO blocks
318
obj-cris-y += etraxfs_dma.o
319
obj-cris-y += etraxfs_pic.o
320
obj-cris-y += etraxfs_eth.o
321
obj-cris-y += etraxfs_timer.o
322
obj-cris-y += etraxfs_ser.o
323

    
324
ifeq ($(TARGET_ARCH), sparc64)
325
obj-sparc-y = sun4u.o apb_pci.o
326
obj-sparc-y += vga.o
327
obj-sparc-y += mc146818rtc.o
328
obj-sparc-y += cirrus_vga.o
329
else
330
obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
331
obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
332
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o leon3.o
333

    
334
# GRLIB
335
obj-sparc-y += grlib_gptimer.o grlib_irqmp.o grlib_apbuart.o
336
endif
337

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

    
365
obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
366
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
367
obj-sh4-y += ide/mmio.o
368

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

    
372
obj-s390x-y = s390-virtio-bus.o s390-virtio.o
373

    
374
obj-alpha-y = i8259.o mc146818rtc.o
375
obj-alpha-y += vga.o cirrus_vga.o
376

    
377
main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
378

    
379
monitor.o: hmp-commands.h qmp-commands.h
380

    
381
$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
382

    
383
obj-y += $(addprefix ../, $(common-obj-y))
384
obj-y += $(addprefix ../libdis/, $(libdis-y))
385
obj-y += $(libobj-y)
386
obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
387

    
388
endif # CONFIG_SOFTMMU
389

    
390
ifndef CONFIG_LINUX_USER
391
# libcacard needs qemu-thread support, and besides is only needed by devices
392
# so not requires with linux-user targets
393
obj-$(CONFIG_SMARTCARD_NSS) += $(addprefix ../libcacard/, $(libcacard-y))
394
endif # CONFIG_LINUX_USER
395

    
396
obj-y += $(addprefix ../, $(trace-obj-y))
397
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
398

    
399
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
400
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))
401

    
402

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

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

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

    
412
clean:
413
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
414
	rm -f *.d */*.d tcg/*.o ide/*.o 9pfs/*.o
415
	rm -f hmp-commands.h qmp-commands.h gdbstub-xml.c
416
ifdef CONFIG_SYSTEMTAP_TRACE
417
	rm -f *.stp
418
endif
419

    
420
install: all
421
ifneq ($(PROGS),)
422
	$(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
423
ifneq ($(STRIP),)
424
	$(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
425
endif
426
endif
427
ifdef CONFIG_SYSTEMTAP_TRACE
428
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
429
	$(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset"
430
endif
431

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