Statistics
| Branch: | Revision:

root / Makefile.target @ 57c83dac

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