linux-user: fix ppc target_stat64 st_blocks layout
[qemu] / Makefile.target
1 # -*- Mode: makefile -*-
2
3 include config.mak
4 include $(SRC_PATH)/rules.mak
5
6 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
7 VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
8 QEMU_CFLAGS+= -I.. -I$(TARGET_PATH) -DNEED_CPU_H
9
10 ifdef CONFIG_USER_ONLY
11 # user emulator name
12 QEMU_PROG=qemu-$(TARGET_ARCH2)
13 else
14 # system emulator name
15 ifeq ($(TARGET_ARCH), i386)
16 QEMU_PROG=qemu$(EXESUF)
17 else
18 QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
19 endif
20 endif
21
22 PROGS=$(QEMU_PROG)
23
24 LIBS+=-lm
25
26 kvm.o kvm-all.o: QEMU_CFLAGS+=$(KVM_CFLAGS)
27
28 all: $(PROGS)
29 # Dummy command so that make thinks it has done something
30         @true
31
32 #########################################################
33 # cpu emulator library
34 libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o
35 libobj-y += tcg/tcg.o tcg/tcg-runtime.o
36 libobj-$(CONFIG_SOFTFLOAT) += fpu/softfloat.o
37 libobj-$(CONFIG_NOSOFTFLOAT) += fpu/softfloat-native.o
38 libobj-y += op_helper.o helper.o
39 libobj-$(CONFIG_NEED_MMU) += mmu.o
40 libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
41 libobj-$(TARGET_ALPHA) += alpha_palcode.o
42
43 # NOTE: the disassembler code is only needed for debugging
44 libobj-y += disas.o
45 libobj-$(CONFIG_ALPHA_DIS) += alpha-dis.o
46 libobj-$(CONFIG_ARM_DIS) += arm-dis.o
47 libobj-$(CONFIG_CRIS_DIS) += cris-dis.o
48 libobj-$(CONFIG_HPPA_DIS) += hppa-dis.o
49 libobj-$(CONFIG_I386_DIS) += i386-dis.o
50 libobj-$(CONFIG_M68K_DIS) += m68k-dis.o
51 libobj-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
52 libobj-$(CONFIG_MIPS_DIS) += mips-dis.o
53 libobj-$(CONFIG_PPC_DIS) += ppc-dis.o
54 libobj-$(CONFIG_S390_DIS) += s390-dis.o
55 libobj-$(CONFIG_SH4_DIS) += sh4-dis.o
56 libobj-$(CONFIG_SPARC_DIS) += sparc-dis.o
57
58 # libqemu
59
60 libqemu.a: $(libobj-y)
61
62 translate.o: translate.c cpu.h
63
64 translate-all.o: translate-all.c cpu.h
65
66 tcg/tcg.o: cpu.h
67
68 # HELPER_CFLAGS is used for all the code compiled with static register
69 # variables
70 op_helper.o cpu-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
71
72 # Note: this is a workaround. The real fix is to avoid compiling
73 # cpu_signal_handler() in cpu-exec.c.
74 signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
75
76 #########################################################
77 # Linux user emulator target
78
79 ifdef CONFIG_LINUX_USER
80
81 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
82 QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
83 obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
84       elfload.o linuxload.o uaccess.o gdbstub.o gdbstub-xml.o
85 obj-y += envlist.o path.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=libqemu.a
102 endif #CONFIG_LINUX_USER
103
104 #########################################################
105 # Darwin user emulator target
106
107 ifdef CONFIG_DARWIN_USER
108
109 VPATH+=:$(SRC_PATH)/darwin-user
110 QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
111
112 # Leave some space for the regular program loading zone
113 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
114
115 LIBS+=-lmx
116
117 obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
118         gdbstub.o gdbstub-xml.o
119 obj-y += envlist.o path.o
120
121 obj-i386-y += ioport-user.o
122
123 ARLIBS=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 obj-y += envlist.o path.o
138
139 obj-i386-y += ioport-user.o
140
141 ARLIBS=libqemu.a
142
143 endif #CONFIG_BSD_USER
144
145 ifdef CONFIG_USER_ONLY
146 # hack to compile with -fpie for *-user targets
147 obj-y += cutils-user.o cache-utils-user.o
148 cutils-user.c cache-utils-user.c:
149         @echo "  LN     $(TARGET_DIR)$@"
150         @ln -s $(SRC_PATH)/$(@:%-user.c=%.c) $@
151 endif
152
153
154 #########################################################
155 # System emulator target
156 ifdef CONFIG_SOFTMMU
157
158 obj-y = vl.o monitor.o pci.o loader.o isa_mmio.o machine.o \
159         gdbstub.o gdbstub-xml.o msix.o ioport.o qemu-config.o
160 # virtio has to be here due to weird dependency between PCI and virtio-net.
161 # need to fix this properly
162 obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o virtio-pci.o
163 obj-$(CONFIG_KVM) += kvm.o kvm-all.o
164
165 LIBS+=-lz
166
167 sound-obj-y =
168 sound-obj-$(CONFIG_SB16) += sb16.o
169 sound-obj-$(CONFIG_ES1370) += es1370.o
170 sound-obj-$(CONFIG_AC97) += ac97.o
171 sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
172 sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
173 sound-obj-$(CONFIG_CS4231A) += cs4231a.o
174
175 adlib.o fmopl.o: QEMU_CFLAGS += -DBUILD_Y8950=0
176
177 QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
178 QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
179
180 # xen backend driver support
181 obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
182
183 # USB layer
184 obj-y += usb-ohci.o
185
186 # PCI network cards
187 obj-y += eepro100.o
188 obj-y += ne2000.o
189 obj-y += pcnet.o
190 obj-y += rtl8139.o
191 obj-y += e1000.o
192
193 # PCI watchdog devices
194 obj-y += wdt_i6300esb.o
195
196 # Hardware support
197 obj-i386-y = ide/core.o ide/qdev.o ide/isa.o ide/pci.o
198 obj-i386-y += pckbd.o $(sound-obj-y) dma.o
199 obj-i386-y += vga.o vga-pci.o vga-isa.o
200 obj-i386-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
201 obj-i386-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o
202 obj-i386-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o
203 obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
204 obj-i386-y += ne2000-isa.o
205
206 # shared objects
207 obj-ppc-y = ppc.o ide/core.o ide/qdev.o ide/isa.o ide/pci.o ide/macio.o
208 obj-ppc-y += vga.o vga-pci.o $(sound-obj-y) dma.o openpic.o
209 # PREP target
210 obj-ppc-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o
211 obj-ppc-y += prep_pci.o ppc_prep.o ne2000-isa.o
212 # Mac shared devices
213 obj-ppc-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
214 # OldWorld PowerMac
215 obj-ppc-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o
216 # NewWorld PowerMac
217 obj-ppc-y += unin_pci.o ppc_newworld.o
218 # PowerPC 4xx boards
219 obj-ppc-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
220 obj-ppc-y += ppc440.o ppc440_bamboo.o
221 # PowerPC E500 boards
222 obj-ppc-y += ppce500_pci.o ppce500_mpc8544ds.o
223 obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
224 obj-ppc-$(CONFIG_FDT) += device_tree.o
225
226 obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
227 obj-mips-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
228 obj-mips-y += vga-pci.o vga-isa.o vga-isa-mm.o
229 obj-mips-y += g364fb.o jazz_led.o dp8393x.o
230 obj-mips-y += ide/core.o ide/qdev.o ide/isa.o ide/pci.o
231 obj-mips-y += gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
232 obj-mips-y += piix4.o parallel.o cirrus_vga.o pcspk.o $(sound-obj-y)
233 obj-mips-y += mipsnet.o ne2000-isa.o
234 obj-mips-y += pflash_cfi01.o
235 obj-mips-y += vmware_vga.o
236
237 obj-microblaze-y = petalogix_s3adsp1800_mmu.o
238
239 obj-microblaze-y += microblaze_pic_cpu.o
240 obj-microblaze-y += xilinx_intc.o
241 obj-microblaze-y += xilinx_timer.o
242 obj-microblaze-y += xilinx_uartlite.o
243 obj-microblaze-y += xilinx_ethlite.o
244
245 obj-microblaze-y += pflash_cfi02.o
246
247 obj-microblaze-$(CONFIG_FDT) += device_tree.o
248
249 # Boards
250 obj-cris-y = cris_pic_cpu.o etraxfs.o axis_dev88.o
251
252 # IO blocks
253 obj-cris-y += etraxfs_dma.o
254 obj-cris-y += etraxfs_pic.o
255 obj-cris-y += etraxfs_eth.o
256 obj-cris-y += etraxfs_timer.o
257 obj-cris-y += etraxfs_ser.o
258
259 obj-cris-y += pflash_cfi02.o
260
261 ifeq ($(TARGET_ARCH), sparc64)
262 obj-sparc-y = sun4u.o pckbd.o apb_pci.o
263 obj-sparc-y += ide/core.o ide/qdev.o ide/pci.o
264 obj-sparc-y += vga.o vga-pci.o
265 obj-sparc-y += fdc.o mc146818rtc.o serial.o
266 obj-sparc-y += cirrus_vga.o parallel.o
267 else
268 obj-sparc-y = sun4m.o tcx.o iommu.o slavio_intctl.o
269 obj-sparc-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o
270 obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o
271 endif
272
273 obj-arm-y = integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o
274 obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
275 obj-arm-y += versatile_pci.o
276 obj-arm-y += realview_gic.o realview.o arm_sysctl.o mpcore.o
277 obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
278 obj-arm-y += pl061.o
279 obj-arm-y += arm-semi.o
280 obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
281 obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
282 obj-arm-y += pflash_cfi01.o gumstix.o
283 obj-arm-y += zaurus.o ide/core.o ide/microdrive.o serial.o spitz.o tosa.o tc6393xb.o
284 obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
285 obj-arm-y += omap2.o omap_dss.o soc_dma.o
286 obj-arm-y += omap_sx1.o palm.o tsc210x.o
287 obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
288 obj-arm-y += mst_fpga.o mainstone.o
289 obj-arm-y += musicpal.o pflash_cfi02.o bitbang_i2c.o marvell_88w8618_audio.o
290 obj-arm-y += framebuffer.o
291 obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
292 obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
293 obj-arm-y += syborg_virtio.o
294
295 obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
296 obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o
297 obj-sh4-y += ide/core.o ide/mmio.o
298
299 obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
300 obj-m68k-y += m68k-semi.o dummy_m68k.o
301
302 main.o vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
303
304 vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
305
306 vl.o: qemu-options.h
307
308 monitor.o: qemu-monitor.h
309
310 ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
311
312 endif # CONFIG_SOFTMMU
313
314 $(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) $(ARLIBS)
315         $(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y))
316
317
318 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
319 ifeq ($(TARGET_XML_FILES),)
320         $(call quiet-command,rm -f $@ && echo > $@,"  GEN   $(TARGET_DIR)$@")
321 else
322         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
323 endif
324
325 qemu-options.h: $(SRC_PATH)/qemu-options.hx
326         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
327
328 qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
329         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
330
331 clean:
332         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
333         rm -f *.d */*.d tcg/*.o
334         rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
335
336 install: all
337 ifneq ($(PROGS),)
338         $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)"
339 endif
340
341 # Include automatically generated dependency files
342 -include $(wildcard *.d */*.d)