]>
Commit | Line | Data |
---|---|---|
562593aa AL |
1 | # -*- Mode: makefile -*- |
2 | ||
a992fe3d | 3 | GENERATED_HEADERS = config-target.h |
b3a29fd5 | 4 | CONFIG_NO_PCI = $(if $(subst n,,$(CONFIG_PCI)),n,y) |
98c8573e | 5 | CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y) |
6dbd588a | 6 | CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y) |
f527c579 | 7 | |
deed3ccf | 8 | include ../config-host.mak |
1f3d3c8f | 9 | include config-devices.mak |
25be210f | 10 | include config-target.mak |
17759187 | 11 | include $(SRC_PATH)/rules.mak |
0e8c9214 AF |
12 | ifneq ($(HWDIR),) |
13 | include $(HWDIR)/config.mak | |
14 | endif | |
626df76a | 15 | |
0b0babc6 | 16 | TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH) |
076d2471 | 17 | $(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw) |
af2be207 JK |
18 | ifdef CONFIG_LINUX |
19 | QEMU_CFLAGS += -I../linux-headers | |
20 | endif | |
21 | QEMU_CFLAGS += -I.. -I$(TARGET_PATH) -DNEED_CPU_H | |
40293e58 | 22 | |
0e8c9214 AF |
23 | include $(SRC_PATH)/Makefile.objs |
24 | ||
2f28d2ff AL |
25 | QEMU_CFLAGS+=-I$(SRC_PATH)/include |
26 | ||
40293e58 FB |
27 | ifdef CONFIG_USER_ONLY |
28 | # user emulator name | |
29 | QEMU_PROG=qemu-$(TARGET_ARCH2) | |
30 | else | |
1e43adfc | 31 | # system emulator name |
0fa5491e SW |
32 | ifneq (,$(findstring -mwindows,$(LIBS))) |
33 | # Terminate program name with a 'w' because the linker builds a windows executable. | |
34 | QEMU_PROGW=qemu-system-$(TARGET_ARCH2)w$(EXESUF) | |
35 | endif # windows executable | |
40293e58 | 36 | QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF) |
a541f297 | 37 | endif |
626df76a | 38 | |
40293e58 | 39 | PROGS=$(QEMU_PROG) |
0fa5491e SW |
40 | ifdef QEMU_PROGW |
41 | PROGS+=$(QEMU_PROGW) | |
42 | endif | |
b8841706 | 43 | STPFILES= |
626df76a | 44 | |
aff447c9 | 45 | ifndef CONFIG_HAIKU |
626df76a | 46 | LIBS+=-lm |
aff447c9 | 47 | endif |
831b7825 | 48 | |
91880d96 JQ |
49 | config-target.h: config-target.h-timestamp |
50 | config-target.h-timestamp: config-target.mak | |
51 | ||
6d8a764e | 52 | ifdef CONFIG_TRACE_SYSTEMTAP |
c276b17d DB |
53 | stap: $(QEMU_PROG).stp |
54 | ||
55 | ifdef CONFIG_USER_ONLY | |
56 | TARGET_TYPE=user | |
57 | else | |
58 | TARGET_TYPE=system | |
59 | endif | |
60 | ||
61 | $(QEMU_PROG).stp: | |
4c3b5a48 | 62 | $(call quiet-command,sh $(SRC_PATH)/scripts/tracetool \ |
c276b17d DB |
63 | --$(TRACE_BACKEND) \ |
64 | --binary $(bindir)/$(QEMU_PROG) \ | |
65 | --target-arch $(TARGET_ARCH) \ | |
66 | --target-type $(TARGET_TYPE) \ | |
67 | --stap < $(SRC_PATH)/trace-events > $(QEMU_PROG).stp," GEN $(QEMU_PROG).stp") | |
68 | else | |
69 | stap: | |
70 | endif | |
71 | ||
72 | all: $(PROGS) stap | |
91880d96 | 73 | |
c2fb2637 PB |
74 | # Dummy command so that make thinks it has done something |
75 | @true | |
626df76a | 76 | |
40293e58 | 77 | ######################################################### |
626df76a | 78 | # cpu emulator library |
c2b023b6 | 79 | libobj-y = exec.o translate-all.o cpu-exec.o translate.o |
8f2e8c07 | 80 | libobj-y += tcg/tcg.o tcg/optimize.o |
9195b2c2 | 81 | libobj-$(CONFIG_TCG_INTERPRETER) += tci.o |
cf67c6ba | 82 | libobj-y += fpu/softfloat.o |
c9e0df73 | 83 | libobj-y += op_helper.o helper.o |
c6dc6f63 AP |
84 | ifeq ($(TARGET_BASE_ARCH), i386) |
85 | libobj-y += cpuid.o | |
86 | endif | |
1bccec25 | 87 | libobj-$(TARGET_SPARC64) += vis_helper.o |
471857dd | 88 | libobj-$(CONFIG_NEED_MMU) += mmu.o |
e18ea868 | 89 | libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o |
ab3b491f | 90 | ifeq ($(TARGET_BASE_ARCH), sparc) |
fafd8bce BS |
91 | libobj-y += fop_helper.o cc_helper.o win_helper.o mmu_helper.o ldst_helper.o |
92 | libobj-y += cpu_init.o | |
ab3b491f BS |
93 | endif |
94 | libobj-$(TARGET_SPARC) += int32_helper.o | |
95 | libobj-$(TARGET_SPARC64) += int64_helper.o | |
cf6c1b16 | 96 | |
c9e0df73 | 97 | libobj-y += disas.o |
9195b2c2 SW |
98 | libobj-$(CONFIG_TCI_DIS) += tci-dis.o |
99 | ||
100 | tci-dis.o: QEMU_CFLAGS += -I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/tci | |
626df76a | 101 | |
0e8c9214 | 102 | $(libobj-y): $(GENERATED_HEADERS) |
40293e58 | 103 | |
40293e58 FB |
104 | # HELPER_CFLAGS is used for all the code compiled with static register |
105 | # variables | |
fafd8bce | 106 | op_helper.o ldst_helper.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
40293e58 | 107 | |
c81da56e | 108 | # Note: this is a workaround. The real fix is to avoid compiling |
42a623c7 | 109 | # cpu_signal_handler() in user-exec.c. |
c81da56e JQ |
110 | signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
111 | ||
40293e58 FB |
112 | ######################################################### |
113 | # Linux user emulator target | |
114 | ||
115 | ifdef CONFIG_LINUX_USER | |
116 | ||
076d2471 PB |
117 | $(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)) |
118 | ||
c3109ba1 | 119 | QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user |
37022086 | 120 | obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \ |
680c877a | 121 | elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \ |
41a74826 | 122 | user-exec.o $(oslib-obj-y) |
5ba65319 | 123 | |
943e0a31 | 124 | obj-$(TARGET_HAS_BFLT) += flatload.o |
40293e58 | 125 | |
e18ea868 | 126 | obj-$(TARGET_I386) += vm86.o |
1c872672 | 127 | |
e27b27b3 | 128 | obj-i386-y += ioport-user.o |
5ba65319 | 129 | |
ed69c30d | 130 | nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o |
9c1dd99b | 131 | nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o |
1c872672 JQ |
132 | obj-arm-y += $(addprefix nwfpe/, $(nwfpe-obj-y)) |
133 | obj-arm-y += arm-semi.o | |
134 | ||
135 | obj-m68k-y += m68k-sim.o m68k-semi.o | |
40293e58 | 136 | |
0e8c9214 AF |
137 | $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS) |
138 | ||
139 | obj-y += $(addprefix ../libuser/, $(user-obj-y)) | |
4d904533 | 140 | obj-y += $(addprefix ../libdis-user/, $(libdis-y)) |
0e8c9214 | 141 | obj-y += $(libobj-y) |
add16157 | 142 | |
40293e58 FB |
143 | endif #CONFIG_LINUX_USER |
144 | ||
145 | ######################################################### | |
146 | # Darwin user emulator target | |
147 | ||
148 | ifdef CONFIG_DARWIN_USER | |
149 | ||
076d2471 PB |
150 | $(call set-vpath, $(SRC_PATH)/darwin-user) |
151 | ||
a558ee17 | 152 | QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH) |
40293e58 FB |
153 | |
154 | # Leave some space for the regular program loading zone | |
155 | LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000 | |
156 | ||
157 | LIBS+=-lmx | |
158 | ||
a8e492c0 | 159 | obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \ |
42a623c7 | 160 | gdbstub.o user-exec.o |
5ba65319 | 161 | |
e27b27b3 | 162 | obj-i386-y += ioport-user.o |
40293e58 | 163 | |
0e8c9214 AF |
164 | $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS) |
165 | ||
166 | obj-y += $(addprefix ../libuser/, $(user-obj-y)) | |
4d904533 | 167 | obj-y += $(addprefix ../libdis-user/, $(libdis-y)) |
0e8c9214 | 168 | obj-y += $(libobj-y) |
40293e58 FB |
169 | |
170 | endif #CONFIG_DARWIN_USER | |
171 | ||
84778508 BS |
172 | ######################################################### |
173 | # BSD user emulator target | |
174 | ||
175 | ifdef CONFIG_BSD_USER | |
176 | ||
076d2471 PB |
177 | $(call set-vpath, $(SRC_PATH)/bsd-user) |
178 | ||
a558ee17 | 179 | QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) |
84778508 | 180 | |
37022086 | 181 | obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \ |
42a623c7 | 182 | gdbstub.o uaccess.o user-exec.o |
5ba65319 | 183 | |
e27b27b3 | 184 | obj-i386-y += ioport-user.o |
84778508 | 185 | |
0e8c9214 AF |
186 | $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS) |
187 | ||
188 | obj-y += $(addprefix ../libuser/, $(user-obj-y)) | |
4d904533 | 189 | obj-y += $(addprefix ../libdis-user/, $(libdis-y)) |
0e8c9214 | 190 | obj-y += $(libobj-y) |
84778508 BS |
191 | |
192 | endif #CONFIG_BSD_USER | |
193 | ||
40293e58 FB |
194 | ######################################################### |
195 | # System emulator target | |
76dfdd24 | 196 | ifdef CONFIG_SOFTMMU |
40293e58 | 197 | |
6bf9fd43 | 198 | obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o ioport.o |
1fd31ad7 AL |
199 | # virtio has to be here due to weird dependency between PCI and virtio-net. |
200 | # need to fix this properly | |
b3a29fd5 | 201 | obj-$(CONFIG_NO_PCI) += pci-stub.o |
21673cde | 202 | obj-$(CONFIG_VIRTIO) += virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o |
973abc7f | 203 | obj-$(CONFIG_VIRTIO_SCSI) += virtio-scsi.o |
d5970055 MT |
204 | obj-y += vhost_net.o |
205 | obj-$(CONFIG_VHOST_NET) += vhost.o | |
f4f61d27 | 206 | obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o |
a8e492c0 | 207 | obj-$(CONFIG_KVM) += kvm.o kvm-all.o |
98c8573e | 208 | obj-$(CONFIG_NO_KVM) += kvm-stub.o |
3d402831 | 209 | obj-$(CONFIG_VGA) += vga.o |
c5705a77 | 210 | obj-y += memory.o savevm.o |
40293e58 | 211 | LIBS+=-lz |
4fb240a4 | 212 | |
61eb1f38 | 213 | obj-i386-$(CONFIG_KVM) += hyperv.o |
28f52cc0 | 214 | |
a558ee17 | 215 | QEMU_CFLAGS += $(VNC_TLS_CFLAGS) |
a558ee17 | 216 | QEMU_CFLAGS += $(VNC_SASL_CFLAGS) |
2f6f5c7a | 217 | QEMU_CFLAGS += $(VNC_JPEG_CFLAGS) |
efe556ad | 218 | QEMU_CFLAGS += $(VNC_PNG_CFLAGS) |
2f9606b3 | 219 | |
3285cf4f | 220 | # xen support |
868bb33f | 221 | obj-$(CONFIG_XEN) += xen-all.o xen_machine_pv.o xen_domainbuild.o xen-mapcache.o |
3285cf4f AP |
222 | obj-$(CONFIG_NO_XEN) += xen-stub.o |
223 | ||
01195b73 SS |
224 | obj-i386-$(CONFIG_XEN) += xen_platform.o |
225 | ||
6cbf4c8c | 226 | # Inter-VM PCI shared memory |
1b01b4e7 AG |
227 | CONFIG_IVSHMEM = |
228 | ifeq ($(CONFIG_KVM), y) | |
229 | ifeq ($(CONFIG_PCI), y) | |
230 | CONFIG_IVSHMEM = y | |
231 | endif | |
232 | endif | |
233 | obj-$(CONFIG_IVSHMEM) += ivshmem.o | |
6cbf4c8c | 234 | |
963d83c8 AG |
235 | # Generic hotplugging |
236 | obj-y += device-hotplug.o | |
237 | ||
a541f297 | 238 | # Hardware support |
cfce6d89 | 239 | obj-i386-y += mc146818rtc.o pc.o |
e5ad936b JK |
240 | obj-i386-y += apic_common.o apic.o kvmvapic.o |
241 | obj-i386-y += sga.o ioapic_common.o ioapic.o piix_pci.o | |
1c9c5fcd | 242 | obj-i386-y += vmport.o |
963d83c8 | 243 | obj-i386-y += pci-hotplug.o smbios.o wdt_ib700.o |
d3ffc7a6 | 244 | obj-i386-y += debugcon.o multiboot.o |
af2be207 | 245 | obj-i386-y += pc_piix.o |
cbc5b5f3 | 246 | obj-i386-y += pc_sysfw.o |
a39c1d47 | 247 | obj-i386-$(CONFIG_KVM) += kvm/clock.o kvm/apic.o kvm/i8259.o kvm/ioapic.o |
a19cbfb3 | 248 | obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o |
9637443f | 249 | |
3cbee15b | 250 | # shared objects |
ddd1055b | 251 | obj-ppc-y = ppc.o ppc_booke.o |
3cbee15b | 252 | # PREP target |
cfce6d89 | 253 | obj-ppc-y += mc146818rtc.o |
add85a76 | 254 | obj-ppc-y += ppc_prep.o |
3cbee15b | 255 | # OldWorld PowerMac |
2b5eb371 | 256 | obj-ppc-y += ppc_oldworld.o |
3cbee15b | 257 | # NewWorld PowerMac |
2b5eb371 | 258 | obj-ppc-y += ppc_newworld.o |
4040ab72 | 259 | # IBM pSeries (sPAPR) |
0a6b8dde AG |
260 | obj-ppc-$(CONFIG_PSERIES) += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o |
261 | obj-ppc-$(CONFIG_PSERIES) += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o | |
3384f95c | 262 | obj-ppc-$(CONFIG_PSERIES) += spapr_pci.o device-hotplug.o pci-hotplug.o |
3cbee15b | 263 | # PowerPC 4xx boards |
5f9fc5ad | 264 | obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o |
3960b04d | 265 | obj-ppc-y += ppc440_bamboo.o |
74c62ba8 | 266 | # PowerPC E500 boards |
5c145dac | 267 | obj-ppc-y += ppce500_mpc8544ds.o mpc8544_guts.o ppce500_spin.o |
2c50e26e EI |
268 | # PowerPC 440 Xilinx ML507 reference board. |
269 | obj-ppc-y += virtex_ml507.o | |
9637443f | 270 | obj-ppc-$(CONFIG_KVM) += kvm_ppc.o |
3f0855b1 | 271 | obj-ppc-$(CONFIG_FDT) += device_tree.o |
d751dfb3 AG |
272 | # PowerPC OpenPIC |
273 | obj-ppc-y += openpic.o | |
9637443f | 274 | |
2c50e26e EI |
275 | # Xilinx PPC peripherals |
276 | obj-ppc-y += xilinx_intc.o | |
277 | obj-ppc-y += xilinx_timer.o | |
278 | obj-ppc-y += xilinx_uartlite.o | |
279 | obj-ppc-y += xilinx_ethlite.o | |
280 | ||
d821732a MW |
281 | # LM32 boards |
282 | obj-lm32-y += lm32_boards.o | |
5052d227 | 283 | obj-lm32-y += milkymist.o |
d821732a | 284 | |
81ea0e13 | 285 | # LM32 peripherals |
4ef66fa7 | 286 | obj-lm32-y += lm32_pic.o |
15d7dc4f | 287 | obj-lm32-y += lm32_juart.o |
ea7924dc | 288 | obj-lm32-y += lm32_timer.o |
770ae571 | 289 | obj-lm32-y += lm32_uart.o |
f19410ca | 290 | obj-lm32-y += lm32_sys.o |
25a8bb96 | 291 | obj-lm32-y += milkymist-ac97.o |
e4dc6d2c | 292 | obj-lm32-y += milkymist-hpdmc.o |
b4e37d98 | 293 | obj-lm32-y += milkymist-memcard.o |
57aa265d | 294 | obj-lm32-y += milkymist-minimac2.o |
5ee18b9c | 295 | obj-lm32-y += milkymist-pfpu.o |
87a381ec | 296 | obj-lm32-y += milkymist-softusb.o |
96832424 | 297 | obj-lm32-y += milkymist-sysctl.o |
0670dadd | 298 | obj-lm32-$(CONFIG_OPENGL) += milkymist-tmu2.o |
883de16b | 299 | obj-lm32-y += milkymist-uart.o |
d23948b1 MW |
300 | obj-lm32-y += milkymist-vgafb.o |
301 | obj-lm32-y += framebuffer.o | |
81ea0e13 | 302 | |
9637443f | 303 | obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o |
409dbce5 | 304 | obj-mips-y += mips_addr.o mips_timer.o mips_int.o |
956a3e6b | 305 | obj-mips-y += gt64xxx.o mc146818rtc.o |
051c190b | 306 | obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o |
9637443f | 307 | |
9637443f | 308 | obj-microblaze-y = petalogix_s3adsp1800_mmu.o |
00914b7d | 309 | obj-microblaze-y += petalogix_ml605_mmu.o |
9637443f JQ |
310 | |
311 | obj-microblaze-y += microblaze_pic_cpu.o | |
312 | obj-microblaze-y += xilinx_intc.o | |
313 | obj-microblaze-y += xilinx_timer.o | |
314 | obj-microblaze-y += xilinx_uartlite.o | |
315 | obj-microblaze-y += xilinx_ethlite.o | |
93f1e401 EI |
316 | obj-microblaze-y += xilinx_axidma.o |
317 | obj-microblaze-y += xilinx_axienet.o | |
9637443f | 318 | |
3f0855b1 | 319 | obj-microblaze-$(CONFIG_FDT) += device_tree.o |
9637443f | 320 | |
10c144e2 | 321 | # Boards |
77d4f95e EI |
322 | obj-cris-y = cris_pic_cpu.o |
323 | obj-cris-y += cris-boot.o | |
77d4f95e | 324 | obj-cris-y += axis_dev88.o |
10c144e2 EI |
325 | |
326 | # IO blocks | |
9637443f JQ |
327 | obj-cris-y += etraxfs_dma.o |
328 | obj-cris-y += etraxfs_pic.o | |
329 | obj-cris-y += etraxfs_eth.o | |
330 | obj-cris-y += etraxfs_timer.o | |
331 | obj-cris-y += etraxfs_ser.o | |
332 | ||
3475187d | 333 | ifeq ($(TARGET_ARCH), sparc64) |
956a3e6b | 334 | obj-sparc-y = sun4u.o apb_pci.o |
2d48377a | 335 | obj-sparc-y += mc146818rtc.o |
3475187d | 336 | else |
24056690 | 337 | obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o |
35da37e1 | 338 | obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o |
b04d9890 FC |
339 | obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o leon3.o |
340 | ||
341 | # GRLIB | |
342 | obj-sparc-y += grlib_gptimer.o grlib_irqmp.o grlib_apbuart.o | |
9637443f JQ |
343 | endif |
344 | ||
f165b53a | 345 | obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o |
9637443f JQ |
346 | obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o |
347 | obj-arm-y += versatile_pci.o | |
f7c70325 | 348 | obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o |
0caa7113 | 349 | obj-arm-y += exynos4210_gic.o exynos4210_combiner.o exynos4210.o |
62db8bf3 | 350 | obj-arm-y += exynos4_boards.o exynos4210_uart.o exynos4210_pwm.o |
30628cb1 | 351 | obj-arm-y += exynos4210_pmu.o exynos4210_mct.o exynos4210_fimd.o |
b2123a48 | 352 | obj-arm-y += arm_l2x0.o |
5d782e08 | 353 | obj-arm-y += arm_mptimer.o a15mpcore.o |
9637443f | 354 | obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o |
2488514c | 355 | obj-arm-y += highbank.o |
9637443f | 356 | obj-arm-y += pl061.o |
4c0e167c | 357 | obj-arm-y += xgmac.o |
9637443f JQ |
358 | obj-arm-y += arm-semi.o |
359 | obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o | |
360 | obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o | |
3d08ff69 | 361 | obj-arm-y += gumstix.o |
f7736b91 | 362 | obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o |
02d74341 | 363 | obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o \ |
364 | omap_gpio.o omap_intc.o omap_uart.o | |
2c1d9ecb | 365 | obj-arm-y += omap2.o omap_dss.o soc_dma.o omap_gptimer.o omap_synctimer.o \ |
366 | omap_gpmc.o omap_sdrc.o omap_spi.o omap_tap.o omap_l4.o | |
9637443f | 367 | obj-arm-y += omap_sx1.o palm.o tsc210x.o |
3d402831 | 368 | obj-arm-y += nseries.o blizzard.o onenand.o cbus.o tusb6010.o usb-musb.o |
9637443f | 369 | obj-arm-y += mst_fpga.o mainstone.o |
3bf11207 | 370 | obj-arm-y += z2.o |
5f9fc5ad | 371 | obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o |
9637443f | 372 | obj-arm-y += framebuffer.o |
2055283b | 373 | obj-arm-y += vexpress.o |
5bc95aa2 | 374 | obj-arm-y += strongarm.o |
c64b21d5 | 375 | obj-arm-y += collie.o |
d028d02d | 376 | obj-arm-y += pl041.o lm4549.o |
412beee6 | 377 | obj-arm-$(CONFIG_FDT) += device_tree.o |
9637443f | 378 | |
9637443f | 379 | obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o |
2d48377a | 380 | obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o |
f7736b91 | 381 | obj-sh4-y += ide/mmio.o |
9637443f JQ |
382 | |
383 | obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o | |
384 | obj-m68k-y += m68k-semi.o dummy_m68k.o | |
385 | ||
8cb310e1 | 386 | obj-s390x-y = s390-virtio-bus.o s390-virtio.o |
f3304eea | 387 | |
cfce6d89 | 388 | obj-alpha-y = mc146818rtc.o |
80bb2ff7 | 389 | obj-alpha-y += alpha_pci.o alpha_dp264.o alpha_typhoon.o |
6049f4f8 | 390 | |
2328826b | 391 | obj-xtensa-y += xtensa_pic.o |
5e408573 | 392 | obj-xtensa-y += xtensa_sim.o |
0200db65 | 393 | obj-xtensa-y += xtensa_lx60.o |
1ddeaa5d | 394 | obj-xtensa-y += xtensa-semi.o |
53add759 | 395 | obj-xtensa-y += core-dc232b.o |
935f7a2b | 396 | obj-xtensa-y += core-fsf.o |
2328826b | 397 | |
ad96090a | 398 | main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS) |
5824d651 | 399 | |
e3193601 | 400 | monitor.o: hmp-commands.h qmp-commands-old.h |
2313086a | 401 | |
0e8c9214 AF |
402 | $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS) |
403 | ||
404 | obj-y += $(addprefix ../, $(common-obj-y)) | |
4d904533 | 405 | obj-y += $(addprefix ../libdis/, $(libdis-y)) |
0e8c9214 AF |
406 | obj-y += $(libobj-y) |
407 | obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y)) | |
937b1258 | 408 | obj-y += $(addprefix ../, $(trace-obj-y)) |
626df76a | 409 | |
76dfdd24 | 410 | endif # CONFIG_SOFTMMU |
00a67ba1 | 411 | |
111a38b0 | 412 | ifndef CONFIG_LINUX_USER |
0fc6b582 | 413 | ifndef CONFIG_BSD_USER |
111a38b0 | 414 | # libcacard needs qemu-thread support, and besides is only needed by devices |
0fc6b582 | 415 | # so not requires with linux-user / bsd-user targets |
111a38b0 | 416 | obj-$(CONFIG_SMARTCARD_NSS) += $(addprefix ../libcacard/, $(libcacard-y)) |
0fc6b582 | 417 | endif # CONFIG_BSD_USER |
111a38b0 RR |
418 | endif # CONFIG_LINUX_USER |
419 | ||
3d0f1517 JQ |
420 | obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o |
421 | ||
0fa5491e SW |
422 | ifdef QEMU_PROGW |
423 | # The linker builds a windows executable. Make also a console executable. | |
424 | $(QEMU_PROGW): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) | |
425 | $(call LINK,$^) | |
426 | $(QEMU_PROG): $(QEMU_PROGW) | |
427 | $(call quiet-command,$(OBJCOPY) --subsystem console $(QEMU_PROGW) $(QEMU_PROG)," GEN $(TARGET_DIR)$(QEMU_PROG)") | |
428 | else | |
0e8c9214 | 429 | $(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) |
e03b41d4 | 430 | $(call LINK,$^) |
0fa5491e | 431 | endif |
16394485 | 432 | |
4c3b5a48 BS |
433 | gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh |
434 | $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@") | |
56aebc89 | 435 | |
acd0a093 | 436 | hmp-commands.h: $(SRC_PATH)/hmp-commands.hx |
4c3b5a48 | 437 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") |
2313086a | 438 | |
e3193601 | 439 | qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx |
4c3b5a48 | 440 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") |
2313086a | 441 | |
626df76a | 442 | clean: |
2313086a | 443 | rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o |
3b9a6ee5 | 444 | rm -f *.d */*.d tcg/*.o ide/*.o 9pfs/*.o kvm/*.o |
e3193601 | 445 | rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c |
6d8a764e | 446 | ifdef CONFIG_TRACE_SYSTEMTAP |
c276b17d DB |
447 | rm -f *.stp |
448 | endif | |
1e43adfc | 449 | |
5fafdf24 | 450 | install: all |
9b14bb04 | 451 | ifneq ($(PROGS),) |
52ba784d HB |
452 | $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" |
453 | ifneq ($(STRIP),) | |
454 | $(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS)) | |
455 | endif | |
9b14bb04 | 456 | endif |
6d8a764e | 457 | ifdef CONFIG_TRACE_SYSTEMTAP |
c276b17d DB |
458 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset" |
459 | $(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset" | |
460 | endif | |
626df76a | 461 | |
2f96c28d JM |
462 | # Include automatically generated dependency files |
463 | -include $(wildcard *.d */*.d) |