]>
Commit | Line | Data |
---|---|---|
626df76a | 1 | include config.mak |
17759187 | 2 | include $(SRC_PATH)/rules.mak |
626df76a | 3 | |
0b0babc6 | 4 | TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH) |
4fb240a4 | 5 | VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw |
46dc3881 | 6 | CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H |
0b0babc6 | 7 | #CFLAGS+=-Werror |
626df76a | 8 | LIBS= |
40293e58 FB |
9 | |
10 | ifdef CONFIG_USER_ONLY | |
11 | # user emulator name | |
12 | QEMU_PROG=qemu-$(TARGET_ARCH2) | |
13 | else | |
1e43adfc | 14 | # system emulator name |
a541f297 | 15 | ifeq ($(TARGET_ARCH), i386) |
40293e58 | 16 | QEMU_PROG=qemu$(EXESUF) |
0db63474 | 17 | else |
40293e58 | 18 | QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF) |
a541f297 | 19 | endif |
de5eaa64 | 20 | endif |
626df76a | 21 | |
40293e58 | 22 | PROGS=$(QEMU_PROG) |
626df76a | 23 | |
6c041c54 | 24 | # cc-option |
c7328801 | 25 | # Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, -malign-functions=0) |
6c041c54 | 26 | |
c7328801 AL |
27 | cc-option = $(shell if $(CC) $(1) $(2) -S -o /dev/null -xc /dev/null \ |
28 | > /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi ;) | |
6f30fa85 | 29 | |
40293e58 FB |
30 | HELPER_CFLAGS= |
31 | ||
626df76a | 32 | ifeq ($(ARCH),i386) |
6f30fa85 | 33 | HELPER_CFLAGS+=-fomit-frame-pointer |
bc51c5c9 FB |
34 | endif |
35 | ||
d19076fa | 36 | ifeq ($(subst ppc64,ppc,$(ARCH))$(TARGET_BASE_ARCH),ppcppc) |
37 | translate.o: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-unit-at-a-time,) | |
38 | endif | |
39 | ||
626df76a | 40 | ifeq ($(ARCH),sparc) |
4c050b3f | 41 | ifneq ($(CONFIG_SOLARIS),y) |
40293e58 | 42 | HELPER_CFLAGS+=-ffixed-i0 |
3142255c | 43 | endif |
fdbb4691 | 44 | endif |
626df76a | 45 | |
626df76a | 46 | ifeq ($(ARCH),alpha) |
626df76a | 47 | # Ensure there's only a single GP |
40293e58 | 48 | CFLAGS+=-msmall-data |
626df76a FB |
49 | endif |
50 | ||
51 | ifeq ($(ARCH),ia64) | |
40293e58 | 52 | CFLAGS+=-mno-sdata |
83fb7adf FB |
53 | endif |
54 | ||
6f30fa85 | 55 | CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
4a244704 | 56 | CPPFLAGS+=-U_FORTIFY_SOURCE |
626df76a | 57 | LIBS+=-lm |
67b915a5 | 58 | ifdef CONFIG_WIN32 |
3db38e87 | 59 | LIBS+=-lwinmm -lws2_32 -liphlpapi |
67b915a5 | 60 | endif |
ec530c81 FB |
61 | ifdef CONFIG_SOLARIS |
62 | LIBS+=-lsocket -lnsl -lresolv | |
0475a5ca TS |
63 | ifdef NEEDS_LIBSUNMATH |
64 | LIBS+=-lsunmath | |
65 | LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib | |
40293e58 | 66 | CFLAGS+=-I/opt/SUNWspro/prod/include/cc |
f72b519c | 67 | endif |
831b7825 TS |
68 | endif |
69 | ||
7ba1e619 AL |
70 | kvm.o: CFLAGS+=$(KVM_CFLAGS) |
71 | kvm-all.o: CFLAGS+=$(KVM_CFLAGS) | |
72 | ||
40293e58 | 73 | all: $(PROGS) |
c2fb2637 PB |
74 | # Dummy command so that make thinks it has done something |
75 | @true | |
626df76a | 76 | |
40293e58 | 77 | ######################################################### |
626df76a | 78 | # cpu emulator library |
c9e0df73 | 79 | libobj-y = exec.o translate-all.o cpu-exec.o translate.o host-utils.o |
943e0a31 | 80 | libobj-$(CONFIG_KQEMU) += kqemu.o |
57fec1fe | 81 | # TCG code generator |
c9e0df73 | 82 | libobj-y += tcg/tcg.o tcg/tcg-runtime.o |
57fec1fe | 83 | CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH) |
8289b279 BS |
84 | ifeq ($(ARCH),sparc64) |
85 | CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc | |
86 | endif | |
158142c2 | 87 | ifdef CONFIG_SOFTFLOAT |
c9e0df73 | 88 | libobj-y += fpu/softfloat.o |
158142c2 | 89 | else |
c9e0df73 | 90 | libobj-y += fpu/softfloat-native.o |
158142c2 | 91 | endif |
6f30fa85 | 92 | CPPFLAGS+=-I$(SRC_PATH)/fpu |
c9e0df73 | 93 | libobj-y += op_helper.o helper.o |
e95c8d51 | 94 | |
b7bcbe95 | 95 | ifeq ($(TARGET_BASE_ARCH), arm) |
c9e0df73 | 96 | libobj-y += neon_helper.o iwmmxt_helper.o |
e6e5906b PB |
97 | endif |
98 | ||
cf6c1b16 | 99 | ifeq ($(TARGET_BASE_ARCH), alpha) |
c9e0df73 | 100 | libobj-y += alpha_palcode.o |
cf6c1b16 JM |
101 | endif |
102 | ||
e7daa605 | 103 | ifeq ($(TARGET_BASE_ARCH), cris) |
c9e0df73 | 104 | libobj-y += cris-dis.o |
e7daa605 TS |
105 | |
106 | ifndef CONFIG_USER_ONLY | |
c9e0df73 | 107 | libobj-y += mmu.o |
e7daa605 TS |
108 | endif |
109 | endif | |
110 | ||
626df76a | 111 | # NOTE: the disassembler code is only needed for debugging |
c9e0df73 | 112 | libobj-y += disas.o |
626df76a | 113 | ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386) |
bc51c5c9 FB |
114 | USE_I386_DIS=y |
115 | endif | |
0b0babc6 | 116 | ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64) |
bc51c5c9 FB |
117 | USE_I386_DIS=y |
118 | endif | |
943e0a31 | 119 | libobj-$(USE_I386_DIS) += i386-dis.o |
626df76a | 120 | ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha) |
c9e0df73 | 121 | libobj-y += alpha-dis.o |
626df76a | 122 | endif |
a2458627 | 123 | ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc) |
c9e0df73 | 124 | libobj-y += ppc-dis.o |
626df76a | 125 | endif |
72b675ca | 126 | ifeq ($(findstring microblaze, $(TARGET_BASE_ARCH) $(ARCH)),microblaze) |
c9e0df73 | 127 | libobj-y += microblaze-dis.o |
72b675ca | 128 | ifndef CONFIG_USER_ONLY |
c9e0df73 | 129 | libobj-y += mmu.o |
72b675ca EI |
130 | endif |
131 | endif | |
fbe4f65b | 132 | ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips) |
c9e0df73 | 133 | libobj-y += mips-dis.o |
6af0bf9c | 134 | endif |
64b3ab24 | 135 | ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc) |
c9e0df73 | 136 | libobj-y += sparc-dis.o |
626df76a FB |
137 | endif |
138 | ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm) | |
c9e0df73 | 139 | libobj-y += arm-dis.o |
626df76a | 140 | endif |
48024e4a | 141 | ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k) |
c9e0df73 | 142 | libobj-y += m68k-dis.o |
48024e4a | 143 | endif |
fdf9b3e8 | 144 | ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4) |
c9e0df73 | 145 | libobj-y += sh4-dis.o |
fdf9b3e8 | 146 | endif |
f54b3f92 | 147 | ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa) |
c9e0df73 | 148 | libobj-y += hppa-dis.o |
f54b3f92 | 149 | endif |
8f860bb8 | 150 | ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390) |
c9e0df73 | 151 | libobj-y += s390-dis.o |
8f860bb8 | 152 | endif |
626df76a | 153 | |
40293e58 FB |
154 | # libqemu |
155 | ||
c9e0df73 | 156 | libqemu.a: $(libobj-y) |
40293e58 | 157 | |
86e840ee | 158 | translate.o: translate.c cpu.h |
40293e58 | 159 | |
86e840ee | 160 | translate-all.o: translate-all.c cpu.h |
40293e58 | 161 | |
86e840ee | 162 | tcg/tcg.o: cpu.h |
40293e58 FB |
163 | |
164 | # HELPER_CFLAGS is used for all the code compiled with static register | |
165 | # variables | |
71c4f21f | 166 | op_helper.o: CFLAGS += $(HELPER_CFLAGS) |
40293e58 | 167 | |
807544e2 | 168 | cpu-exec.o: CFLAGS += $(HELPER_CFLAGS) |
40293e58 FB |
169 | |
170 | ######################################################### | |
171 | # Linux user emulator target | |
172 | ||
173 | ifdef CONFIG_LINUX_USER | |
174 | ||
3ebdd119 | 175 | VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) |
40293e58 FB |
176 | CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) |
177 | ||
178 | ifdef CONFIG_STATIC | |
179 | LDFLAGS+=-static | |
180 | endif | |
181 | ||
182 | ifeq ($(ARCH),i386) | |
183 | ifdef TARGET_GPROF | |
184 | USE_I386_LD=y | |
185 | endif | |
186 | ifdef CONFIG_STATIC | |
187 | USE_I386_LD=y | |
188 | endif | |
189 | ifdef USE_I386_LD | |
190 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
191 | else | |
192 | # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object | |
193 | # that the kernel ELF loader considers as an executable. I think this | |
194 | # is the simplest way to make it self virtualizable! | |
195 | LDFLAGS+=-Wl,-shared | |
196 | endif | |
197 | endif | |
198 | ||
199 | ifeq ($(ARCH),x86_64) | |
200 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
201 | endif | |
202 | ||
203 | ifeq ($(ARCH),ppc) | |
204 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
205 | endif | |
206 | ||
810260a8 | 207 | ifeq ($(ARCH),ppc64) |
208 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
209 | endif | |
210 | ||
40293e58 FB |
211 | ifeq ($(ARCH),s390) |
212 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
213 | endif | |
214 | ||
215 | ifeq ($(ARCH),sparc) | |
216 | # -static is used to avoid g1/g3 usage by the dynamic linker | |
217 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static | |
218 | endif | |
219 | ||
220 | ifeq ($(ARCH),sparc64) | |
221 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
222 | endif | |
223 | ||
224 | ifeq ($(ARCH),alpha) | |
225 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
226 | endif | |
227 | ||
228 | ifeq ($(ARCH),ia64) | |
229 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
230 | endif | |
231 | ||
232 | ifeq ($(ARCH),arm) | |
233 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
234 | endif | |
235 | ||
236 | ifeq ($(ARCH),m68k) | |
237 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
238 | endif | |
239 | ||
240 | ifeq ($(ARCH),mips) | |
241 | ifeq ($(WORDS_BIGENDIAN),yes) | |
242 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
243 | else | |
244 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld | |
245 | endif | |
246 | endif | |
247 | ||
248 | ifeq ($(ARCH),mips64) | |
249 | ifeq ($(WORDS_BIGENDIAN),yes) | |
250 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
251 | else | |
252 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld | |
253 | endif | |
254 | endif | |
255 | ||
6d946cda AJ |
256 | # profiling code |
257 | ifdef TARGET_GPROF | |
258 | LDFLAGS+=-p | |
259 | CFLAGS+=-p | |
260 | endif | |
261 | ||
a8e492c0 | 262 | obj-y = main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \ |
5f650495 IY |
263 | elfload.o linuxload.o uaccess.o envlist.o gdbstub.o gdbstub-xml.o \ |
264 | ioport-user.o | |
943e0a31 JQ |
265 | obj-$(TARGET_HAS_BFLT) += flatload.o |
266 | ||
40293e58 | 267 | ifdef TARGET_HAS_ELFLOAD32 |
40293e58 FB |
268 | elfload32.o: elfload.c |
269 | endif | |
943e0a31 | 270 | obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o |
40293e58 FB |
271 | |
272 | ifeq ($(TARGET_ARCH), i386) | |
a8e492c0 | 273 | obj-y += vm86.o |
40293e58 | 274 | endif |
1c872672 | 275 | |
9c1dd99b JQ |
276 | nwfpe-obj-y := fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o |
277 | nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o | |
1c872672 JQ |
278 | obj-arm-y += $(addprefix nwfpe/, $(nwfpe-obj-y)) |
279 | obj-arm-y += arm-semi.o | |
280 | ||
281 | obj-m68k-y += m68k-sim.o m68k-semi.o | |
40293e58 | 282 | |
40293e58 FB |
283 | # Note: this is a workaround. The real fix is to avoid compiling |
284 | # cpu_signal_handler() in cpu-exec.c. | |
807544e2 | 285 | signal.o: CFLAGS += $(HELPER_CFLAGS) |
626df76a | 286 | |
16394485 | 287 | ARLIBS=../libqemu_user.a libqemu.a |
40293e58 FB |
288 | endif #CONFIG_LINUX_USER |
289 | ||
0d35bf2d AL |
290 | LIBS+= $(PTHREADLIBS) |
291 | LIBS+= $(CLOCKLIBS) | |
292 | ||
40293e58 FB |
293 | ######################################################### |
294 | # Darwin user emulator target | |
295 | ||
296 | ifdef CONFIG_DARWIN_USER | |
297 | ||
298 | VPATH+=:$(SRC_PATH)/darwin-user | |
299 | CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH) | |
300 | ||
301 | # Leave some space for the regular program loading zone | |
302 | LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000 | |
303 | ||
304 | LIBS+=-lmx | |
305 | ||
a8e492c0 | 306 | obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \ |
5f650495 | 307 | gdbstub.o gdbstub-xml.o ioport-user.o |
40293e58 | 308 | |
40293e58 FB |
309 | # Note: this is a workaround. The real fix is to avoid compiling |
310 | # cpu_signal_handler() in cpu-exec.c. | |
807544e2 | 311 | signal.o: CFLAGS += $(HELPER_CFLAGS) |
40293e58 | 312 | |
16394485 | 313 | ARLIBS=libqemu.a |
40293e58 FB |
314 | |
315 | endif #CONFIG_DARWIN_USER | |
316 | ||
84778508 BS |
317 | ######################################################### |
318 | # BSD user emulator target | |
319 | ||
320 | ifdef CONFIG_BSD_USER | |
321 | ||
322 | VPATH+=:$(SRC_PATH)/bsd-user | |
323 | CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) | |
324 | ||
325 | ifdef CONFIG_STATIC | |
326 | LDFLAGS+=-static | |
327 | endif | |
328 | ||
329 | ifeq ($(ARCH),i386) | |
330 | ifdef TARGET_GPROF | |
331 | USE_I386_LD=y | |
332 | endif | |
333 | ifdef CONFIG_STATIC | |
334 | USE_I386_LD=y | |
335 | endif | |
336 | ifdef USE_I386_LD | |
337 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
338 | else | |
339 | # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object | |
340 | # that the kernel ELF loader considers as an executable. I think this | |
341 | # is the simplest way to make it self virtualizable! | |
342 | LDFLAGS+=-Wl,-shared | |
343 | endif | |
344 | endif | |
345 | ||
346 | ifeq ($(ARCH),x86_64) | |
347 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
348 | endif | |
349 | ||
350 | ifeq ($(ARCH),ppc) | |
351 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
352 | endif | |
353 | ||
354 | ifeq ($(ARCH),ppc64) | |
355 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
356 | endif | |
357 | ||
358 | ifeq ($(ARCH),s390) | |
359 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
360 | endif | |
361 | ||
362 | ifeq ($(ARCH),sparc) | |
363 | # -static is used to avoid g1/g3 usage by the dynamic linker | |
364 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static | |
365 | endif | |
366 | ||
367 | ifeq ($(ARCH),sparc64) | |
368 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
369 | endif | |
370 | ||
371 | ifeq ($(ARCH),alpha) | |
372 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
373 | endif | |
374 | ||
375 | ifeq ($(ARCH),ia64) | |
376 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
377 | endif | |
378 | ||
379 | ifeq ($(ARCH),arm) | |
380 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
381 | endif | |
382 | ||
383 | ifeq ($(ARCH),m68k) | |
384 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
385 | endif | |
386 | ||
387 | ifeq ($(ARCH),mips) | |
388 | ifeq ($(WORDS_BIGENDIAN),yes) | |
389 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
390 | else | |
391 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld | |
392 | endif | |
393 | endif | |
394 | ||
395 | ifeq ($(ARCH),mips64) | |
396 | ifeq ($(WORDS_BIGENDIAN),yes) | |
397 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
398 | else | |
399 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld | |
400 | endif | |
401 | endif | |
402 | ||
a8e492c0 | 403 | obj-y = main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o \ |
5f650495 | 404 | gdbstub.o gdbstub-xml.o ioport-user.o |
a8e492c0 | 405 | obj-y += uaccess.o |
84778508 | 406 | |
84778508 BS |
407 | # Note: this is a workaround. The real fix is to avoid compiling |
408 | # cpu_signal_handler() in cpu-exec.c. | |
807544e2 | 409 | signal.o: CFLAGS += $(HELPER_CFLAGS) |
84778508 | 410 | |
16394485 | 411 | ARLIBS=libqemu.a ../libqemu_user.a |
84778508 BS |
412 | |
413 | endif #CONFIG_BSD_USER | |
414 | ||
40293e58 FB |
415 | ######################################################### |
416 | # System emulator target | |
417 | ifndef CONFIG_USER_ONLY | |
418 | ||
a8e492c0 | 419 | obj-y = vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o \ |
32993977 | 420 | gdbstub.o gdbstub-xml.o msix.o ioport.o |
1fd31ad7 AL |
421 | # virtio has to be here due to weird dependency between PCI and virtio-net. |
422 | # need to fix this properly | |
a8e492c0 JQ |
423 | obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o |
424 | obj-$(CONFIG_KVM) += kvm.o kvm-all.o | |
a3392f9b | 425 | |
40293e58 | 426 | LIBS+=-lz |
1d14ffa9 | 427 | ifdef CONFIG_ALSA |
1d14ffa9 FB |
428 | LIBS += -lasound |
429 | endif | |
ca9cc28c AZ |
430 | ifdef CONFIG_ESD |
431 | LIBS += -lesd | |
432 | endif | |
b8e59f18 | 433 | ifdef CONFIG_PA |
434 | LIBS += -lpulse-simple | |
435 | endif | |
1d14ffa9 | 436 | ifdef CONFIG_DSOUND |
1d14ffa9 | 437 | LIBS += -lole32 -ldxguid |
85571bc7 | 438 | endif |
102a52e4 | 439 | ifdef CONFIG_FMOD |
102a52e4 | 440 | LIBS += $(CONFIG_FMOD_LIB) |
85571bc7 | 441 | endif |
2f6a1ab0 BS |
442 | ifdef CONFIG_OSS |
443 | LIBS += $(CONFIG_OSS_LIB) | |
444 | endif | |
4fb240a4 | 445 | |
b6271b48 JQ |
446 | sound-obj-y = |
447 | sound-obj-$(CONFIG_SB16) += sb16.o | |
448 | sound-obj-$(CONFIG_ES1370) += es1370.o | |
449 | sound-obj-$(CONFIG_AC97) += ac97.o | |
450 | sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o | |
451 | sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o | |
57a943c4 | 452 | sound-obj-$(CONFIG_CS4231A) += cs4231a.o |
b6271b48 | 453 | |
1d14ffa9 | 454 | ifdef CONFIG_ADLIB |
c40e866f | 455 | adlib.o fmopl.o: CFLAGS := ${CFLAGS} -DBUILD_Y8950=0 |
1d14ffa9 | 456 | endif |
85571bc7 | 457 | |
8d5d2d4c | 458 | ifdef CONFIG_VNC_TLS |
525061bf JQ |
459 | CPPFLAGS += $(VNC_TLS_CFLAGS) |
460 | LIBS += $(VNC_TLS_LIBS) | |
8d5d2d4c TS |
461 | endif |
462 | ||
2f9606b3 | 463 | ifdef CONFIG_VNC_SASL |
60ddf533 JQ |
464 | CPPFLAGS += $(VNC_SASL_CFLAGS) |
465 | LIBS += $(VNC_SASL_LIBS) | |
2f9606b3 AL |
466 | endif |
467 | ||
fb599c9a AZ |
468 | ifdef CONFIG_BLUEZ |
469 | LIBS += $(CONFIG_BLUEZ_LIBS) | |
470 | endif | |
471 | ||
e37630ca | 472 | # xen backend driver support |
943e0a31 | 473 | obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o |
7ed208c4 | 474 | ifeq ($(CONFIG_XEN), y) |
e37630ca AL |
475 | LIBS += $(XEN_LIBS) |
476 | endif | |
477 | ||
a594cfbf | 478 | # USB layer |
a8e492c0 | 479 | obj-y += usb-ohci.o |
a594cfbf | 480 | |
a41b2ff2 | 481 | # PCI network cards |
a8e492c0 JQ |
482 | obj-y += eepro100.o |
483 | obj-y += ne2000.o | |
484 | obj-y += pcnet.o | |
485 | obj-y += rtl8139.o | |
486 | obj-y += e1000.o | |
a41b2ff2 | 487 | |
9dd986cc | 488 | # Generic watchdog support and some watchdog devices |
a8e492c0 | 489 | obj-y += wdt_ib700.o wdt_i6300esb.o |
9dd986cc | 490 | |
a541f297 | 491 | # Hardware support |
9637443f JQ |
492 | obj-i386-y = ide.o pckbd.o vga.o $(sound-obj-y) dma.o |
493 | obj-i386-y += fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o | |
494 | obj-i386-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o | |
495 | obj-i386-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o | |
496 | obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o | |
497 | ||
498 | ifeq ($(TARGET_BASE_ARCH), i386) | |
b00052e4 | 499 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
67b915a5 | 500 | endif |
9637443f | 501 | |
3cbee15b | 502 | # shared objects |
9637443f | 503 | obj-ppc-y = ppc.o ide.o vga.o $(sound-obj-y) dma.o openpic.o |
3cbee15b | 504 | # PREP target |
9637443f JQ |
505 | obj-ppc-y += pckbd.o serial.o i8259.o i8254.o fdc.o mc146818rtc.o |
506 | obj-ppc-y += prep_pci.o ppc_prep.o | |
3cbee15b | 507 | # Mac shared devices |
9637443f | 508 | obj-ppc-y += macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o |
3cbee15b | 509 | # OldWorld PowerMac |
9637443f | 510 | obj-ppc-y += heathrow_pic.o grackle_pci.o ppc_oldworld.o |
3cbee15b | 511 | # NewWorld PowerMac |
9637443f | 512 | obj-ppc-y += unin_pci.o ppc_newworld.o |
3cbee15b | 513 | # PowerPC 4xx boards |
9637443f JQ |
514 | obj-ppc-y += pflash_cfi02.o ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o |
515 | obj-ppc-y += ppc440.o ppc440_bamboo.o | |
74c62ba8 | 516 | # PowerPC E500 boards |
9637443f JQ |
517 | obj-ppc-y += ppce500_pci.o ppce500_mpc8544ds.o |
518 | obj-ppc-$(CONFIG_KVM) += kvm_ppc.o | |
519 | ||
520 | ifeq ($(TARGET_BASE_ARCH), ppc) | |
521 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE | |
522 | endif | |
523 | ||
f652e6af | 524 | ifdef FDT_LIBS |
9637443f | 525 | obj-ppc-y += device_tree.o |
f652e6af AJ |
526 | LIBS+= $(FDT_LIBS) |
527 | endif | |
9637443f JQ |
528 | |
529 | obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o | |
530 | obj-mips-y += mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o | |
531 | obj-mips-y += g364fb.o jazz_led.o dp8393x.o | |
532 | obj-mips-y += ide.o gt64xxx.o pckbd.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o | |
533 | obj-mips-y += piix_pci.o parallel.o cirrus_vga.o pcspk.o $(sound-obj-y) | |
534 | obj-mips-y += mipsnet.o | |
535 | obj-mips-y += pflash_cfi01.o | |
536 | obj-mips-y += vmware_vga.o | |
537 | ||
fbe4f65b | 538 | ifeq ($(TARGET_BASE_ARCH), mips) |
4ce7ff6e | 539 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
6af0bf9c | 540 | endif |
72b675ca | 541 | |
9637443f JQ |
542 | obj-microblaze-y = petalogix_s3adsp1800_mmu.o |
543 | ||
544 | obj-microblaze-y += microblaze_pic_cpu.o | |
545 | obj-microblaze-y += xilinx_intc.o | |
546 | obj-microblaze-y += xilinx_timer.o | |
547 | obj-microblaze-y += xilinx_uartlite.o | |
548 | obj-microblaze-y += xilinx_ethlite.o | |
549 | ||
550 | obj-microblaze-y += pflash_cfi02.o | |
72b675ca | 551 | |
72b675ca | 552 | ifdef FDT_LIBS |
9637443f | 553 | obj-microblaze-y += device_tree.o |
72b675ca EI |
554 | LIBS+= $(FDT_LIBS) |
555 | endif | |
9637443f | 556 | |
10c144e2 | 557 | # Boards |
9637443f | 558 | obj-cris-y = cris_pic_cpu.o etraxfs.o axis_dev88.o |
10c144e2 EI |
559 | |
560 | # IO blocks | |
9637443f JQ |
561 | obj-cris-y += etraxfs_dma.o |
562 | obj-cris-y += etraxfs_pic.o | |
563 | obj-cris-y += etraxfs_eth.o | |
564 | obj-cris-y += etraxfs_timer.o | |
565 | obj-cris-y += etraxfs_ser.o | |
566 | ||
567 | obj-cris-y += pflash_cfi02.o | |
e62b5b13 | 568 | |
3475187d | 569 | ifeq ($(TARGET_ARCH), sparc64) |
9637443f JQ |
570 | obj-sparc-y = sun4u.o ide.o pckbd.o vga.o apb_pci.o |
571 | obj-sparc-y += fdc.o mc146818rtc.o serial.o | |
572 | obj-sparc-y += cirrus_vga.o parallel.o | |
3475187d | 573 | else |
9637443f JQ |
574 | obj-sparc-y = sun4m.o tcx.o iommu.o slavio_intctl.o |
575 | obj-sparc-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o | |
576 | obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o | |
577 | endif | |
578 | ||
579 | obj-arm-y = integratorcp.o versatilepb.o smc91c111.o arm_pic.o arm_timer.o | |
580 | obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o | |
581 | obj-arm-y += versatile_pci.o | |
582 | obj-arm-y += realview_gic.o realview.o arm_sysctl.o mpcore.o | |
583 | obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o | |
584 | obj-arm-y += pl061.o | |
585 | obj-arm-y += arm-semi.o | |
586 | obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o | |
587 | obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o | |
588 | obj-arm-y += pflash_cfi01.o gumstix.o | |
589 | obj-arm-y += zaurus.o ide.o serial.o spitz.o tosa.o tc6393xb.o | |
590 | obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o | |
591 | obj-arm-y += omap2.o omap_dss.o soc_dma.o | |
592 | obj-arm-y += omap_sx1.o palm.o tsc210x.o | |
593 | obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o | |
594 | obj-arm-y += mst_fpga.o mainstone.o | |
595 | obj-arm-y += musicpal.o pflash_cfi02.o | |
596 | obj-arm-y += framebuffer.o | |
597 | obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o | |
598 | obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o | |
599 | obj-arm-y += syborg_virtio.o | |
600 | ||
b5ff1b31 | 601 | ifeq ($(TARGET_BASE_ARCH), arm) |
5a1237c4 | 602 | CPPFLAGS += -DHAS_AUDIO |
b5ff1b31 | 603 | endif |
9637443f JQ |
604 | |
605 | obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o | |
606 | obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o serial.o | |
607 | obj-sh4-y += ide.o | |
608 | ||
609 | obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o | |
610 | obj-m68k-y += m68k-semi.o dummy_m68k.o | |
611 | ||
5b0753e0 | 612 | ifdef CONFIG_COCOA |
1d14ffa9 FB |
613 | COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit |
614 | ifdef CONFIG_COREAUDIO | |
615 | COCOA_LIBS+=-framework CoreAudio | |
616 | endif | |
5b0753e0 | 617 | endif |
7c1f25b4 | 618 | ifdef CONFIG_SLIRP |
6f30fa85 | 619 | CPPFLAGS+=-I$(SRC_PATH)/slirp |
626df76a FB |
620 | endif |
621 | ||
c321f673 | 622 | # specific flags are needed for non soft mmu emulator |
c321f673 | 623 | ifdef CONFIG_STATIC |
40293e58 | 624 | LDFLAGS+=-static |
de5eaa64 | 625 | endif |
83fb7adf | 626 | ifndef CONFIG_DARWIN |
11d9f695 | 627 | ifndef CONFIG_WIN32 |
ec530c81 | 628 | ifndef CONFIG_SOLARIS |
b29fe3ed | 629 | ifndef CONFIG_AIX |
40293e58 | 630 | LIBS+=-lutil |
11d9f695 | 631 | endif |
b29fe3ed | 632 | endif |
83fb7adf | 633 | endif |
ec530c81 | 634 | endif |
e3086fbf | 635 | ifdef TARGET_GPROF |
40293e58 FB |
636 | vl.o: CFLAGS+=-p |
637 | LDFLAGS+=-p | |
e3086fbf | 638 | endif |
c321f673 | 639 | |
b8076a74 | 640 | ifeq ($(ARCH),ia64) |
40293e58 | 641 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld |
74ccb34e FB |
642 | endif |
643 | ||
1d14ffa9 FB |
644 | ifdef CONFIG_WIN32 |
645 | SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole | |
646 | endif | |
647 | ||
40293e58 FB |
648 | # profiling code |
649 | ifdef TARGET_GPROF | |
650 | LDFLAGS+=-p | |
651 | main.o: CFLAGS+=-p | |
6e1b3e4d FB |
652 | endif |
653 | ||
537fe2d6 AL |
654 | vl.o: CFLAGS+=$(SDL_CFLAGS) |
655 | ||
5824d651 BS |
656 | vl.o: qemu-options.h |
657 | ||
2313086a BS |
658 | monitor.o: qemu-monitor.h |
659 | ||
16394485 JQ |
660 | LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS) |
661 | ARLIBS=../libqemu_common.a libqemu.a $(HWLIB) | |
626df76a | 662 | |
40293e58 | 663 | endif # !CONFIG_USER_ONLY |
00a67ba1 | 664 | |
16394485 JQ |
665 | $(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) $(ARLIBS) |
666 | $(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)) | |
667 | ||
668 | ||
56aebc89 | 669 | gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh |
56aebc89 | 670 | ifeq ($(TARGET_XML_FILES),) |
1aef4c57 | 671 | $(call quiet-command,rm -f $@ && echo > $@," GEN $(TARGET_DIR)$@") |
56aebc89 | 672 | else |
1aef4c57 | 673 | $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@") |
56aebc89 PB |
674 | endif |
675 | ||
5824d651 | 676 | qemu-options.h: $(SRC_PATH)/qemu-options.hx |
0d00e563 | 677 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") |
5824d651 | 678 | |
2313086a BS |
679 | qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx |
680 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@") | |
681 | ||
626df76a | 682 | clean: |
2313086a | 683 | rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o |
57fec1fe | 684 | rm -f *.d */*.d tcg/*.o |
2313086a | 685 | rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c |
1e43adfc | 686 | |
5fafdf24 | 687 | install: all |
9b14bb04 | 688 | ifneq ($(PROGS),) |
1625af87 | 689 | $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)" |
9b14bb04 | 690 | endif |
626df76a | 691 | |
2f96c28d JM |
692 | # Include automatically generated dependency files |
693 | -include $(wildcard *.d */*.d) |