Statistics
| Branch: | Revision:

root / Makefile.target @ deed3ccf

History | View | Annotate | Download (10 kB)

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

    
3
include ../config-host.mak
4
include config.mak
5
include $(SRC_PATH)/rules.mak
6

    
7
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
8
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
9
QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
10

    
11
ifdef CONFIG_USER_ONLY
12
# user emulator name
13
QEMU_PROG=qemu-$(TARGET_ARCH2)
14
else
15
# system emulator name
16
ifeq ($(TARGET_ARCH), i386)
17
QEMU_PROG=qemu$(EXESUF)
18
else
19
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
20
endif
21
endif
22

    
23
PROGS=$(QEMU_PROG)
24

    
25
LIBS+=-lm
26

    
27
kvm.o kvm-all.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
28

    
29
all: $(PROGS)
30
# Dummy command so that make thinks it has done something
31
	@true
32

    
33
#########################################################
34
# cpu emulator library
35
libobj-y = exec.o translate-all.o cpu-exec.o translate.o
36
libobj-y += tcg/tcg.o
37
libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o
38
libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o
39
libobj-y += op_helper.o helper.o
40
libobj-$(CONFIG_NEED_MMU) += mmu.o
41
libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
42
libobj-$(TARGET_ALPHA) += alpha_palcode.o
43

    
44
# NOTE: the disassembler code is only needed for debugging
45
libobj-y += disas.o
46
libobj-$(CONFIG_ALPHA_DIS) += alpha-dis.o
47
libobj-$(CONFIG_ARM_DIS) += arm-dis.o
48
libobj-$(CONFIG_CRIS_DIS) += cris-dis.o
49
libobj-$(CONFIG_HPPA_DIS) += hppa-dis.o
50
libobj-$(CONFIG_I386_DIS) += i386-dis.o
51
libobj-$(CONFIG_M68K_DIS) += m68k-dis.o
52
libobj-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
53
libobj-$(CONFIG_MIPS_DIS) += mips-dis.o
54
libobj-$(CONFIG_PPC_DIS) += ppc-dis.o
55
libobj-$(CONFIG_S390_DIS) += s390-dis.o
56
libobj-$(CONFIG_SH4_DIS) += sh4-dis.o
57
libobj-$(CONFIG_SPARC_DIS) += sparc-dis.o
58

    
59
# libqemu
60

    
61
libqemu.a: $(libobj-y)
62

    
63
translate.o: translate.c cpu.h
64

    
65
translate-all.o: translate-all.c cpu.h
66

    
67
tcg/tcg.o: cpu.h
68

    
69
# HELPER_CFLAGS is used for all the code compiled with static register
70
# variables
71
op_helper.o cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
72

    
73
# Note: this is a workaround. The real fix is to avoid compiling
74
# cpu_signal_handler() in cpu-exec.c.
75
signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
76

    
77
#########################################################
78
# Linux user emulator target
79

    
80
ifdef CONFIG_LINUX_USER
81

    
82
VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
83
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
84
obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
85
      elfload.o linuxload.o uaccess.o gdbstub.o gdbstub-xml.o
86

    
87
obj-$(TARGET_HAS_BFLT) += flatload.o
88
obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o
89

    
90
obj-$(TARGET_I386) += vm86.o
91

    
92
obj-i386-y += ioport-user.o
93

    
94
nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
95
nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
96
obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
97
obj-arm-y += arm-semi.o
98

    
99
obj-m68k-y += m68k-sim.o m68k-semi.o
100

    
101
ARLIBS=../libuser/libuser.a libqemu.a
102

    
103
endif #CONFIG_LINUX_USER
104

    
105
#########################################################
106
# Darwin user emulator target
107

    
108
ifdef CONFIG_DARWIN_USER
109

    
110
VPATH+=:$(SRC_PATH)/darwin-user
111
QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
112

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

    
116
LIBS+=-lmx
117

    
118
obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
119
        gdbstub.o gdbstub-xml.o
120

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

    
123
ARLIBS=../libuser/libuser.a libqemu.a
124

    
125
endif #CONFIG_DARWIN_USER
126

    
127
#########################################################
128
# BSD user emulator target
129

    
130
ifdef CONFIG_BSD_USER
131

    
132
VPATH+=:$(SRC_PATH)/bsd-user
133
QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
134

    
135
obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
136
        gdbstub.o gdbstub-xml.o uaccess.o
137

    
138
obj-i386-y += ioport-user.o
139

    
140
ARLIBS=../libuser/libuser.a libqemu.a
141

    
142
endif #CONFIG_BSD_USER
143

    
144
#########################################################
145
# System emulator target
146
ifdef CONFIG_SOFTMMU
147

    
148
obj-y = vl.o monitor.o pci.o isa_mmio.o machine.o \
149
        gdbstub.o gdbstub-xml.o
150
# virtio has to be here due to weird dependency between PCI and virtio-net.
151
# need to fix this properly
152
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o virtio-pci.o
153
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
154

    
155
LIBS+=-lz
156

    
157
sound-obj-y =
158
sound-obj-$(CONFIG_SB16) += sb16.o
159
sound-obj-$(CONFIG_ES1370) += es1370.o
160
sound-obj-$(CONFIG_AC97) += ac97.o
161
sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
162
sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
163
sound-obj-$(CONFIG_CS4231A) += cs4231a.o
164

    
165
adlib.o fmopl.o: QEMU_CFLAGS += -DBUILD_Y8950=0
166

    
167
QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
168
QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
169

    
170
# xen backend driver support
171
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
172

    
173
# USB layer
174
obj-y += usb-ohci.o
175

    
176
# PCI network cards
177
obj-y += eepro100.o
178
obj-y += pcnet.o
179
obj-y += rtl8139.o
180
obj-y += e1000.o
181

    
182
# Hardware support
183
obj-i386-y = ide/core.o ide/qdev.o ide/isa.o ide/pci.o
184
obj-i386-y += pckbd.o $(sound-obj-y) dma.o
185
obj-i386-y += vga.o vga-pci.o vga-isa.o
186
obj-i386-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
187
obj-i386-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
188
obj-i386-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
189
obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
190
obj-i386-y += ne2000-isa.o
191

    
192
# shared objects
193
obj-ppc-y = ppc.o ide/core.o ide/qdev.o ide/isa.o ide/pci.o ide/macio.o
194
obj-ppc-y += vga.o vga-pci.o $(sound-obj-y) dma.o openpic.o
195
# PREP target
196
obj-ppc-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
197
obj-ppc-y += prep_pci.o ppc_prep.o ne2000-isa.o
198
# Mac shared devices
199
obj-ppc-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
200
# OldWorld PowerMac
201
obj-ppc-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
202
# NewWorld PowerMac
203
obj-ppc-y += unin_pci.o ppc_newworld.o
204
# PowerPC 4xx boards
205
obj-ppc-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
206
obj-ppc-y += ppc440.o ppc440_bamboo.o
207
# PowerPC E500 boards
208
obj-ppc-y += ppce500_pci.o ppce500_mpc8544ds.o
209
obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
210
obj-ppc-$(CONFIG_FDT) += device_tree.o
211

    
212
obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
213
obj-mips-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
214
obj-mips-y += vga-pci.o vga-isa.o vga-isa-mm.o
215
obj-mips-y += g364fb.o jazz_led.o dp8393x.o
216
obj-mips-y += ide/core.o ide/qdev.o ide/isa.o ide/pci.o
217
obj-mips-y += gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
218
obj-mips-y += piix4.o parallel.o cirrus_vga.o pcspk.o $(sound-obj-y)
219
obj-mips-y += mipsnet.o ne2000-isa.o
220
obj-mips-y += pflash_cfi01.o
221
obj-mips-y += vmware_vga.o
222

    
223
obj-microblaze-y = petalogix_s3adsp1800_mmu.o
224

    
225
obj-microblaze-y += microblaze_pic_cpu.o
226
obj-microblaze-y += xilinx_intc.o
227
obj-microblaze-y += xilinx_timer.o
228
obj-microblaze-y += xilinx_uartlite.o
229
obj-microblaze-y += xilinx_ethlite.o
230

    
231
obj-microblaze-y += pflash_cfi02.o
232

    
233
obj-microblaze-$(CONFIG_FDT) += device_tree.o
234

    
235
# Boards
236
obj-cris-y = cris_pic_cpu.o etraxfs.o axis_dev88.o
237

    
238
# IO blocks
239
obj-cris-y += etraxfs_dma.o
240
obj-cris-y += etraxfs_pic.o
241
obj-cris-y += etraxfs_eth.o
242
obj-cris-y += etraxfs_timer.o
243
obj-cris-y += etraxfs_ser.o
244

    
245
obj-cris-y += pflash_cfi02.o
246

    
247
ifeq ($(TARGET_ARCH), sparc64)
248
obj-sparc-y = sun4u.o pckbd.o apb_pci.o
249
obj-sparc-y += ide/core.o ide/qdev.o ide/pci.o
250
obj-sparc-y += vga.o vga-pci.o
251
obj-sparc-y += fdc.o mc146818rtc.o serial.o
252
obj-sparc-y += cirrus_vga.o parallel.o
253
else
254
obj-sparc-y = sun4m.o tcx.o iommu.o slavio_intctl.o
255
obj-sparc-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
256
obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
257
endif
258

    
259
obj-arm-y = integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
260
obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
261
obj-arm-y += versatile_pci.o
262
obj-arm-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
263
obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
264
obj-arm-y += pl061.o
265
obj-arm-y += arm-semi.o
266
obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
267
obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
268
obj-arm-y += pflash_cfi01.o gumstix.o
269
obj-arm-y += zaurus.o ide/core.o ide/microdrive.o serial.o spitz.o tosa.o tc6393xb.o
270
obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
271
obj-arm-y += omap2.o omap_dss.o soc_dma.o
272
obj-arm-y += omap_sx1.o palm.o tsc210x.o
273
obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
274
obj-arm-y += mst_fpga.o mainstone.o
275
obj-arm-y += musicpal.o pflash_cfi02.o bitbang_i2c.o marvell_88w8618_audio.o
276
obj-arm-y += framebuffer.o
277
obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
278
obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
279
obj-arm-y += syborg_virtio.o
280

    
281
obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
282
obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
283
obj-sh4-y += ide/core.o ide/mmio.o
284

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

    
288
main.o vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
289

    
290
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
291

    
292
vl.o: qemu-options.h
293

    
294
monitor.o: qemu-monitor.h
295

    
296
ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
297

    
298
endif # CONFIG_SOFTMMU
299

    
300
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) $(ARLIBS)
301
	$(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))
302

    
303

    
304
gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
305
ifeq ($(TARGET_XML_FILES),)
306
	$(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
307
else
308
	$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
309
endif
310

    
311
qemu-options.h: $(SRC_PATH)/qemu-options.hx
312
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
313

    
314
qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
315
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
316

    
317
clean:
318
	rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
319
	rm -f *.d */*.d tcg/*.o ide/*.o
320
	rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
321

    
322
install: all
323
ifneq ($(PROGS),)
324
	$(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
325
endif
326

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