Statistics
| Branch: | Revision:

root / Makefile.target @ 0ef654e3

History | View | Annotate | Download (12.9 kB)

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