Statistics
| Branch: | Revision:

root / Makefile.target @ a594cfbf

History | View | Annotate | Download (10.5 kB)

1
include config.mak
2

    
3
TARGET_BASE_ARCH:=$(TARGET_ARCH)
4
ifeq ($(TARGET_ARCH), x86_64)
5
TARGET_BASE_ARCH:=i386
6
endif
7
ifeq ($(TARGET_ARCH), ppc64)
8
TARGET_BASE_ARCH:=ppc
9
endif
10
ifeq ($(TARGET_ARCH), sparc64)
11
TARGET_BASE_ARCH:=sparc
12
endif
13
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
14
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw:$(SRC_PATH)/audio
15
DEFINES=-I. -I$(TARGET_PATH) -I$(SRC_PATH)
16
ifdef CONFIG_USER_ONLY
17
VPATH+=:$(SRC_PATH)/linux-user
18
DEFINES+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH)
19
endif
20
CFLAGS=-Wall -O2 -g -fno-strict-aliasing
21
#CFLAGS+=-Werror
22
LDFLAGS=-g
23
LIBS=
24
HELPER_CFLAGS=$(CFLAGS)
25
DYNGEN=../dyngen$(EXESUF)
26
# user emulator name
27
ifeq ($(TARGET_ARCH),arm)
28
  ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
29
    QEMU_USER=qemu-armeb
30
  else
31
    QEMU_USER=qemu-arm
32
  endif
33
else
34
  QEMU_USER=qemu-$(TARGET_ARCH)
35
endif
36
# system emulator name
37
ifdef CONFIG_SOFTMMU
38
ifeq ($(TARGET_ARCH), i386)
39
QEMU_SYSTEM=qemu$(EXESUF)
40
else
41
QEMU_SYSTEM=qemu-system-$(TARGET_ARCH)$(EXESUF)
42
endif
43
else
44
QEMU_SYSTEM=qemu-fast
45
endif
46

    
47
ifdef CONFIG_USER_ONLY
48
PROGS=$(QEMU_USER)
49
else
50
PROGS+=$(QEMU_SYSTEM)
51
ifndef CONFIG_SOFTMMU
52
CONFIG_STATIC=y
53
endif
54
endif # !CONFIG_USER_ONLY
55

    
56
ifdef CONFIG_STATIC
57
LDFLAGS+=-static
58
endif
59

    
60
ifeq ($(ARCH),i386)
61
CFLAGS+=-fomit-frame-pointer
62
OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
63
ifeq ($(HAVE_GCC3_OPTIONS),yes)
64
OP_CFLAGS+= -falign-functions=0 -fno-gcse
65
else
66
OP_CFLAGS+= -malign-functions=0
67
endif
68

    
69
ifdef TARGET_GPROF
70
USE_I386_LD=y
71
endif
72
ifdef CONFIG_STATIC
73
USE_I386_LD=y
74
endif
75
ifdef USE_I386_LD
76
LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386.ld
77
else
78
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
79
# that the kernel ELF loader considers as an executable. I think this
80
# is the simplest way to make it self virtualizable!
81
LDFLAGS+=-Wl,-shared
82
endif
83
endif
84

    
85
ifeq ($(ARCH),x86_64)
86
OP_CFLAGS=$(CFLAGS) -falign-functions=0
87
LDFLAGS+=-Wl,-T,$(SRC_PATH)/x86_64.ld
88
endif
89

    
90
ifeq ($(ARCH),ppc)
91
CFLAGS+= -D__powerpc__
92
OP_CFLAGS=$(CFLAGS)
93
LDFLAGS+=-Wl,-T,$(SRC_PATH)/ppc.ld
94
endif
95

    
96
ifeq ($(ARCH),s390)
97
OP_CFLAGS=$(CFLAGS)
98
LDFLAGS+=-Wl,-T,$(SRC_PATH)/s390.ld
99
endif
100

    
101
ifeq ($(ARCH),sparc)
102
CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
103
LDFLAGS+=-m32
104
OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
105
HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
106
# -static is used to avoid g1/g3 usage by the dynamic linker
107
LDFLAGS+=-Wl,-T,$(SRC_PATH)/sparc.ld -static
108
endif
109

    
110
ifeq ($(ARCH),sparc64)
111
CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
112
LDFLAGS+=-m64
113
OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
114
endif
115

    
116
ifeq ($(ARCH),alpha)
117
# -msmall-data is not used because we want two-instruction relocations
118
# for the constant constructions
119
OP_CFLAGS=-Wall -O2 -g
120
# Ensure there's only a single GP
121
CFLAGS += -msmall-data
122
LDFLAGS+=-Wl,-T,$(SRC_PATH)/alpha.ld
123
endif
124

    
125
ifeq ($(ARCH),ia64)
126
CFLAGS += -mno-sdata
127
OP_CFLAGS=$(CFLAGS)
128
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
129
endif
130

    
131
ifeq ($(ARCH),arm)
132
OP_CFLAGS=$(CFLAGS) -mno-sched-prolog -fno-omit-frame-pointer
133
LDFLAGS+=-Wl,-T,$(SRC_PATH)/arm.ld
134
endif
135

    
136
ifeq ($(ARCH),m68k)
137
OP_CFLAGS=$(CFLAGS) -fomit-frame-pointer
138
LDFLAGS+=-Wl,-T,m68k.ld
139
endif
140

    
141
ifeq ($(HAVE_GCC3_OPTIONS),yes)
142
# very important to generate a return at the end of every operation
143
OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
144
endif
145

    
146
ifeq ($(CONFIG_DARWIN),yes)
147
OP_CFLAGS+= -mdynamic-no-pic
148
LIBS+=-lmx
149
endif
150

    
151
#########################################################
152

    
153
DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
154
LIBS+=-lm
155
ifndef CONFIG_USER_ONLY
156
LIBS+=-lz
157
endif
158
ifdef CONFIG_WIN32
159
LIBS+=-lwinmm -lws2_32 -liphlpapi
160
endif
161

    
162
# profiling code
163
ifdef TARGET_GPROF
164
LDFLAGS+=-p
165
main.o: CFLAGS+=-p
166
endif
167

    
168
OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o 
169
ifeq ($(TARGET_ARCH), i386)
170
OBJS+= vm86.o
171
endif
172
ifeq ($(TARGET_ARCH), arm)
173
OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
174
nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
175
 nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
176
endif
177
SRCS:= $(OBJS:.o=.c)
178
OBJS+= libqemu.a
179

    
180
# cpu emulator library
181
LIBOBJS=exec.o kqemu.o translate-op.o translate-all.o cpu-exec.o\
182
        translate.o op.o 
183
ifdef CONFIG_SOFTFLOAT
184
LIBOBJS+=fpu/softfloat.o
185
else
186
LIBOBJS+=fpu/softfloat-native.o
187
endif
188
DEFINES+=-I$(SRC_PATH)/fpu
189

    
190
ifeq ($(TARGET_ARCH), i386)
191
LIBOBJS+=helper.o helper2.o
192
ifeq ($(ARCH), i386)
193
LIBOBJS+=translate-copy.o
194
endif
195
endif
196

    
197
ifeq ($(TARGET_ARCH), x86_64)
198
LIBOBJS+=helper.o helper2.o
199
endif
200

    
201
ifeq ($(TARGET_BASE_ARCH), ppc)
202
LIBOBJS+= op_helper.o helper.o
203
endif
204

    
205
ifeq ($(TARGET_ARCH), mips)
206
LIBOBJS+= op_helper.o helper.o
207
endif
208

    
209
ifeq ($(TARGET_BASE_ARCH), sparc)
210
LIBOBJS+= op_helper.o helper.o
211
endif
212

    
213
ifeq ($(TARGET_BASE_ARCH), arm)
214
LIBOBJS+= op_helper.o
215
endif
216

    
217
# NOTE: the disassembler code is only needed for debugging
218
LIBOBJS+=disas.o 
219
ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
220
USE_I386_DIS=y
221
endif
222
ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
223
USE_I386_DIS=y
224
endif
225
ifdef USE_I386_DIS
226
LIBOBJS+=i386-dis.o
227
endif
228
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
229
LIBOBJS+=alpha-dis.o
230
endif
231
ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
232
LIBOBJS+=ppc-dis.o
233
endif
234
ifeq ($(findstring mips, $(TARGET_ARCH) $(ARCH)),mips)
235
LIBOBJS+=mips-dis.o
236
endif
237
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
238
LIBOBJS+=sparc-dis.o
239
endif
240
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
241
LIBOBJS+=arm-dis.o
242
endif
243

    
244
ifeq ($(ARCH),ia64)
245
OBJS += ia64-syscall.o
246
endif
247
ifdef CONFIG_GDBSTUB
248
OBJS+=gdbstub.o
249
endif
250

    
251
all: $(PROGS)
252

    
253
$(QEMU_USER): $(OBJS)
254
	$(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
255
ifeq ($(ARCH),alpha)
256
# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
257
# the address space (31 bit so sign extending doesn't matter)
258
	echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
259
endif
260

    
261
# must use static linking to avoid leaving stuff in virtual address space
262
VL_OBJS=vl.o osdep.o block.o readline.o monitor.o pci.o console.o
263
VL_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
264

    
265
SOUND_HW = sb16.o es1370.o
266
AUDIODRV = audio.o noaudio.o wavaudio.o
267
ifdef CONFIG_SDL
268
AUDIODRV += sdlaudio.o
269
endif
270
ifdef CONFIG_OSS
271
AUDIODRV += ossaudio.o
272
endif
273
ifdef CONFIG_COREAUDIO
274
AUDIODRV += coreaudio.o
275
endif
276
ifdef CONFIG_ALSA
277
AUDIODRV += alsaaudio.o
278
LIBS += -lasound
279
endif
280
ifdef CONFIG_DSOUND
281
AUDIODRV += dsoundaudio.o
282
LIBS += -lole32 -ldxguid
283
endif
284
ifdef CONFIG_FMOD
285
AUDIODRV += fmodaudio.o
286
audio.o fmodaudio.o: DEFINES := -I$(CONFIG_FMOD_INC) $(DEFINES)
287
LIBS += $(CONFIG_FMOD_LIB)
288
endif
289
ifdef CONFIG_ADLIB
290
SOUND_HW += fmopl.o adlib.o
291
endif
292

    
293
# USB layer
294
VL_OBJS+= usb.o usb-uhci.o usb-linux.o usb-hid.o
295

    
296
ifeq ($(TARGET_BASE_ARCH), i386)
297
# Hardware support
298
VL_OBJS+= ide.o ne2000.o pckbd.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
299
VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pc.o
300
VL_OBJS+= cirrus_vga.o mixeng.o apic.o parallel.o
301
DEFINES += -DHAS_AUDIO
302
endif
303
ifeq ($(TARGET_BASE_ARCH), ppc)
304
VL_OBJS+= ppc.o ide.o ne2000.o pckbd.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
305
VL_OBJS+= mc146818rtc.o serial.o i8259.o i8254.o fdc.o m48t59.o
306
VL_OBJS+= ppc_prep.o ppc_chrp.o cuda.o adb.o openpic.o heathrow_pic.o mixeng.o
307
DEFINES += -DHAS_AUDIO
308
endif
309
ifeq ($(TARGET_ARCH), mips)
310
VL_OBJS+= mips_r4k.o dma.o vga.o serial.o ne2000.o i8254.o i8259.o
311
#VL_OBJS+= #ide.o pckbd.o fdc.o m48t59.o
312
endif
313
ifeq ($(TARGET_BASE_ARCH), sparc)
314
ifeq ($(TARGET_ARCH), sparc64)
315
VL_OBJS+= sun4u.o ide.o ne2000.o pckbd.o vga.o
316
VL_OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
317
VL_OBJS+= cirrus_vga.o parallel.o
318
VL_OBJS+= magic-load.o
319
else
320
VL_OBJS+= sun4m.o tcx.o lance.o iommu.o m48t59.o magic-load.o slavio_intctl.o
321
VL_OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o
322
endif
323
endif
324
ifdef CONFIG_GDBSTUB
325
VL_OBJS+=gdbstub.o 
326
endif
327
ifdef CONFIG_SDL
328
VL_OBJS+=sdl.o
329
endif
330
ifdef CONFIG_COCOA
331
VL_OBJS+=cocoa.o
332
COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
333
ifdef CONFIG_COREAUDIO
334
COCOA_LIBS+=-framework CoreAudio
335
endif
336
endif
337
ifdef CONFIG_SLIRP
338
DEFINES+=-I$(SRC_PATH)/slirp
339
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
340
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
341
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
342
VL_OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
343
endif
344

    
345
VL_LDFLAGS=
346
# specific flags are needed for non soft mmu emulator
347
ifdef CONFIG_STATIC
348
VL_LDFLAGS+=-static
349
endif
350
ifndef CONFIG_SOFTMMU
351
VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld 
352
endif
353
ifndef CONFIG_DARWIN
354
ifndef CONFIG_WIN32
355
VL_LIBS=-lutil
356
endif
357
endif
358
ifdef TARGET_GPROF
359
vl.o: CFLAGS+=-p
360
VL_LDFLAGS+=-p
361
endif
362

    
363
ifeq ($(ARCH),ia64)
364
VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
365
endif
366

    
367
ifdef CONFIG_WIN32
368
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
369
endif
370

    
371
$(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
372
	$(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
373

    
374
cocoa.o: cocoa.m
375
	$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
376

    
377
sdl.o: sdl.c keymaps.c sdl_keysym.h
378
	$(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
379

    
380
sdlaudio.o: sdlaudio.c
381
	$(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
382

    
383
depend: $(SRCS)
384
	$(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
385

    
386
vldepend: $(VL_OBJS:.o=.c)
387
	$(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
388

    
389
# libqemu 
390

    
391
libqemu.a: $(LIBOBJS)
392
	rm -f $@
393
	$(AR) rcs $@ $(LIBOBJS)
394

    
395
translate.o: translate.c gen-op.h opc.h cpu.h
396

    
397
translate-all.o: translate-all.c opc.h cpu.h
398

    
399
translate-op.o: translate-all.c op.h opc.h cpu.h
400

    
401
op.h: op.o $(DYNGEN)
402
	$(DYNGEN) -o $@ $<
403

    
404
opc.h: op.o $(DYNGEN)
405
	$(DYNGEN) -c -o $@ $<
406

    
407
gen-op.h: op.o $(DYNGEN)
408
	$(DYNGEN) -g -o $@ $<
409

    
410
op.o: op.c
411
	$(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
412

    
413
helper.o: helper.c
414
	$(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
415

    
416
ifeq ($(TARGET_BASE_ARCH), i386)
417
op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h
418
endif
419

    
420
ifeq ($(TARGET_ARCH), arm)
421
op.o: op.c op_template.h
422
endif
423

    
424
ifeq ($(TARGET_BASE_ARCH), sparc)
425
op.o: op.c op_template.h op_mem.h fop_template.h fbranch_template.h
426
magic_load.o: elf_op.h
427
endif
428

    
429
ifeq ($(TARGET_BASE_ARCH), ppc)
430
op.o: op.c op_template.h op_mem.h
431
op_helper.o: op_helper_mem.h
432
translate.o: translate.c translate_init.c
433
endif
434

    
435
ifeq ($(TARGET_ARCH), mips)
436
op.o: op.c op_template.c op_mem.c
437
op_helper.o: op_helper_mem.c
438
endif
439

    
440
%.o: %.c
441
	$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
442

    
443
%.o: %.S
444
	$(CC) $(DEFINES) -c -o $@ $<
445

    
446
clean:
447
	rm -f *.o  *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o slirp/*.o fpu/*.o
448

    
449
install: all 
450
ifneq ($(PROGS),)
451
	install -m 755 -s $(PROGS) "$(bindir)"
452
endif
453

    
454
ifneq ($(wildcard .depend),)
455
include .depend
456
endif
457

    
458
ifeq (1, 0)
459
audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \
460
fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \
461
CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare
462
endif