]> git.proxmox.com Git - mirror_qemu.git/blame - Makefile
arm emulation support
[mirror_qemu.git] / Makefile
CommitLineData
7d13299d 1include config.mak
766a487a 2
7d13299d 3CFLAGS=-Wall -O2 -g
31e31b8a 4LDFLAGS=-g
766a487a 5LIBS=
766a487a 6DEFINES=-DHAVE_BYTESWAP_H
9c5d1246 7HELPER_CFLAGS=$(CFLAGS)
7d13299d 8
43ce4dfe
FB
9ifdef CONFIG_STATIC
10LDFLAGS+=-static
11endif
12
7d13299d
FB
13ifeq ($(ARCH),i386)
14CFLAGS+=-fomit-frame-pointer
ca735206
FB
15OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
16ifeq ($(GCC_MAJOR),3)
17OP_CFLAGS+= -falign-functions=0
18else
19OP_CFLAGS+= -malign-functions=0
20endif
2d92f0b8
FB
21ifdef TARGET_GPROF
22LDFLAGS+=-Wl,-T,i386.ld
23else
27c75a9a
FB
24# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
25# that the kernel ELF loader considers as an executable. I think this
26# is the simplest way to make it self virtualizable!
27LDFLAGS+=-Wl,-shared
766a487a 28endif
2d92f0b8 29endif
766a487a
FB
30
31ifeq ($(ARCH),ppc)
927f621e 32OP_CFLAGS=$(CFLAGS)
27c75a9a 33LDFLAGS+=-Wl,-T,ppc.ld
766a487a
FB
34endif
35
fd429f2f
FB
36ifeq ($(ARCH),s390)
37OP_CFLAGS=$(CFLAGS)
27c75a9a 38LDFLAGS+=-Wl,-T,s390.ld
fd429f2f
FB
39endif
40
ae228531
FB
41ifeq ($(ARCH),sparc)
42CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
43LDFLAGS+=-m32
44OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
9c5d1246
FB
45HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
46LDFLAGS+=-Wl,-T,sparc.ld
ae228531
FB
47endif
48
49ifeq ($(ARCH),sparc64)
50CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
51LDFLAGS+=-m64
52OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
53endif
54
d6cdca95 55ifeq ($(ARCH),alpha)
a993ba85
FB
56# -msmall-data is not used because we want two-instruction relocations
57# for the constant constructions
58OP_CFLAGS=-Wall -O2 -g
d6cdca95 59# Ensure there's only a single GP
82d19daf 60CFLAGS += -msmall-data
d6cdca95
FB
61LDFLAGS+=-Wl,-T,alpha.ld
62endif
63
64ifeq ($(ARCH),ia64)
65OP_CFLAGS=$(CFLAGS)
66endif
67
9c5d1246
FB
68ifeq ($(ARCH),arm)
69OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
70LDFLAGS+=-Wl,-T,arm.ld
71endif
72
ca735206
FB
73ifeq ($(GCC_MAJOR),3)
74# very important to generate a return at the end of every operation
75OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
76endif
77
766a487a
FB
78#########################################################
79
0ecfa993 80DEFINES+=-D_GNU_SOURCE
3ef693a0 81LIBS+=-lm
7d13299d
FB
82
83# profiling code
84ifdef TARGET_GPROF
85LDFLAGS+=-p
dc99065b 86main.o: CFLAGS+=-p
7d13299d 87endif
31e31b8a 88
de83cd02
FB
89OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
90ifeq ($(TARGET_ARCH), i386)
91OBJS+= vm86.o
92endif
3ef693a0
FB
93SRCS:= $(OBJS:.o=.c)
94OBJS+= libqemu.a
612384d7 95
de83cd02
FB
96# cpu emulator library
97LIBOBJS=thunk.o exec.o translate.o cpu-exec.o
98
99ifeq ($(TARGET_ARCH), i386)
100LIBOBJS+=translate-i386.o op-i386.o helper-i386.o
101endif
102ifeq ($(TARGET_ARCH), arm)
103LIBOBJS+=translate-arm.o op-arm.o
104endif
aa05ae6f 105
0ecfa993 106# NOTE: the disassembler code is only needed for debugging
de83cd02
FB
107LIBOBJS+=disas.o
108ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
109LIBOBJS+=i386-dis.o
110endif
111ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
aa05ae6f
FB
112LIBOBJS+=alpha-dis.o
113endif
de83cd02 114ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
aa05ae6f
FB
115LIBOBJS+=ppc-dis.o
116endif
de83cd02 117ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
9c5d1246
FB
118LIBOBJS+=sparc-dis.o
119endif
de83cd02 120ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
9c5d1246
FB
121LIBOBJS+=arm-dis.o
122endif
31e31b8a 123
d6cdca95
FB
124ifeq ($(ARCH),ia64)
125OBJS += ia64-syscall.o
126endif
127
3ef693a0 128all: qemu qemu-doc.html
31e31b8a 129
3ef693a0 130qemu: $(OBJS)
27c75a9a 131 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
a993ba85
FB
132ifeq ($(ARCH),alpha)
133# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
134# the address space (31 bit so sign extending doesn't matter)
135 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
136endif
31e31b8a
FB
137
138depend: $(SRCS)
139 $(CC) -MM $(CFLAGS) $^ 1>.depend
140
3ef693a0 141# libqemu
612384d7 142
3ef693a0 143libqemu.a: $(LIBOBJS)
612384d7
FB
144 rm -f $@
145 $(AR) rcs $@ $(LIBOBJS)
146
367e86e8
FB
147dyngen: dyngen.c
148 $(HOST_CC) -O2 -Wall -g $< -o $@
149
de83cd02
FB
150translate-$(TARGET_ARCH).o: translate-$(TARGET_ARCH).c gen-op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
151
152translate.o: translate.c op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
367e86e8 153
de83cd02 154op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
367e86e8
FB
155 ./dyngen -o $@ $<
156
de83cd02 157opc-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
2d92f0b8
FB
158 ./dyngen -c -o $@ $<
159
de83cd02
FB
160gen-op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
161 ./dyngen -g -o $@ $<
162
163op-$(TARGET_ARCH).o: op-$(TARGET_ARCH).c
927f621e 164 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
367e86e8 165
de83cd02 166helper-$(TARGET_ARCH).o: helper-$(TARGET_ARCH).c
9c5d1246
FB
167 $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
168
de83cd02
FB
169op-i386.o: op-i386.c opreg_template.h ops_template.h
170
171op-arm.o: op-arm.c op-arm-template.h
172
31e31b8a
FB
173%.o: %.c
174 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
175
176clean:
7d13299d 177 $(MAKE) -C tests clean
3ef693a0 178 rm -f *.o *.a *~ qemu dyngen TAGS
31e31b8a 179
7d13299d
FB
180distclean: clean
181 rm -f config.mak config.h
182
3ef693a0
FB
183install: qemu
184 install -m 755 -s qemu $(prefix)/bin
612384d7 185
367e86e8 186# various test targets
3ef693a0 187test speed: qemu
367e86e8 188 make -C tests $@
31e31b8a 189
367e86e8 190TAGS:
b9adb4a6 191 etags *.[ch] tests/*.[ch]
31e31b8a 192
3ef693a0
FB
193# documentation
194qemu-doc.html: qemu-doc.texi
195 texi2html -monolithic -number $<
196
586314f2 197FILES= \
fd429f2f 198README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
de83cd02
FB
199configure \
200dyngen.c dyngen.h dyngen-exec.h ioctls.h syscall_types.h \
201Makefile elf.h elfload.c main.c signal.c qemu.h \
202syscall.c syscall_defs.h vm86.c path.c mmap.c \
203ppc.ld alpha.ld s390.ld sparc.ld arm.ld\
204thunk.c cpu-exec.c translate.c cpu-all.h thunk.h exec.h\
205exec.c cpu-exec.c\
206cpu-i386.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c \
207exec-i386.h ops_template.h op_string.h opreg_template.h \
208cpu-arm.h syscall-arm.h exec-arm.h op-arm.c translate-arm.c op-arm-template.h \
209dis-asm.h disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c sparc-dis.c \
210arm-dis.c \
211tests/Makefile \
212tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h \
213tests/test-i386-muldiv.h tests/test-i386-code16.S tests/test-i386-vm86.S \
214tests/hello.c tests/hello \
215tests/hello-arm.c tests/hello-arm \
216tests/sha1.c \
3ef693a0 217tests/testsig.c tests/testclone.c tests/testthread.c \
fd429f2f 218tests/runcom.c tests/pi_10.com \
1eb87257 219tests/test_path.c \
3ef693a0 220qemu-doc.texi qemu-doc.html
586314f2 221
3ef693a0 222FILE=qemu-$(VERSION)
586314f2
FB
223
224tar:
225 rm -rf /tmp/$(FILE)
226 mkdir -p /tmp/$(FILE)
227 cp -P $(FILES) /tmp/$(FILE)
228 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
229 rm -rf /tmp/$(FILE)
230
d691f669
FB
231# generate a binary distribution including the test binary environnment
232BINPATH=/usr/local/qemu-i386
233
234tarbin:
1eb87257
FB
235 tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
236 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
237 tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
238 $(BINPATH)/wine
d691f669 239
31e31b8a
FB
240ifneq ($(wildcard .depend),)
241include .depend
242endif