]> git.proxmox.com Git - qemu.git/blame - Makefile
added missing link scripts
[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
54936004 89OBJS= elfload.o main.o syscall.o mmap.o signal.o vm86.o path.o
3ef693a0
FB
90SRCS:= $(OBJS:.o=.c)
91OBJS+= libqemu.a
612384d7 92
82d19daf 93LIBOBJS+=thunk.o translate-i386.o op-i386.o helper-i386.o exec-i386.o exec.o
aa05ae6f 94
0ecfa993 95# NOTE: the disassembler code is only needed for debugging
9c5d1246 96LIBOBJS+=disas.o i386-dis.o
aa05ae6f
FB
97ifeq ($(ARCH),alpha)
98LIBOBJS+=alpha-dis.o
99endif
100ifeq ($(ARCH),ppc)
101LIBOBJS+=ppc-dis.o
102endif
9c5d1246
FB
103ifeq ($(ARCH),sparc)
104LIBOBJS+=sparc-dis.o
105endif
106ifeq ($(ARCH),arm)
107LIBOBJS+=arm-dis.o
108endif
31e31b8a 109
d6cdca95
FB
110ifeq ($(ARCH),ia64)
111OBJS += ia64-syscall.o
112endif
113
3ef693a0 114all: qemu qemu-doc.html
31e31b8a 115
3ef693a0 116qemu: $(OBJS)
27c75a9a 117 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
a993ba85
FB
118ifeq ($(ARCH),alpha)
119# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
120# the address space (31 bit so sign extending doesn't matter)
121 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
122endif
31e31b8a
FB
123
124depend: $(SRCS)
125 $(CC) -MM $(CFLAGS) $^ 1>.depend
126
3ef693a0 127# libqemu
612384d7 128
3ef693a0 129libqemu.a: $(LIBOBJS)
612384d7
FB
130 rm -f $@
131 $(AR) rcs $@ $(LIBOBJS)
132
367e86e8
FB
133dyngen: dyngen.c
134 $(HOST_CC) -O2 -Wall -g $< -o $@
135
2d92f0b8 136translate-i386.o: translate-i386.c op-i386.h opc-i386.h cpu-i386.h
367e86e8
FB
137
138op-i386.h: op-i386.o dyngen
139 ./dyngen -o $@ $<
140
2d92f0b8
FB
141opc-i386.h: op-i386.o dyngen
142 ./dyngen -c -o $@ $<
143
367e86e8 144op-i386.o: op-i386.c opreg_template.h ops_template.h
927f621e 145 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
367e86e8 146
9c5d1246
FB
147helper-i386.o: helper-i386.c
148 $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
149
31e31b8a
FB
150%.o: %.c
151 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
152
153clean:
7d13299d 154 $(MAKE) -C tests clean
3ef693a0 155 rm -f *.o *.a *~ qemu dyngen TAGS
31e31b8a 156
7d13299d
FB
157distclean: clean
158 rm -f config.mak config.h
159
3ef693a0
FB
160install: qemu
161 install -m 755 -s qemu $(prefix)/bin
612384d7 162
367e86e8 163# various test targets
3ef693a0 164test speed: qemu
367e86e8 165 make -C tests $@
31e31b8a 166
367e86e8 167TAGS:
b9adb4a6 168 etags *.[ch] tests/*.[ch]
31e31b8a 169
3ef693a0
FB
170# documentation
171qemu-doc.html: qemu-doc.texi
172 texi2html -monolithic -number $<
173
586314f2 174FILES= \
fd429f2f 175README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
9c5d1246 176dyngen.c dyngen.h ioctls.h ops_template.h op_string.h syscall_types.h\
09bfb054 177Makefile elf.h thunk.c\
aa05ae6f 178elfload.c main.c signal.c thunk.h exec.h\
82d19daf 179cpu-i386.h qemu.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c\
76c8b771 180syscall.c opreg_template.h syscall_defs.h vm86.c\
9c5d1246
FB
181dis-asm.h disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c sparc-dis.c arm-dis.c\
182ppc.ld alpha.ld s390.ld sparc.ld arm.ld exec-i386.h exec-i386.c path.c exec.c mmap.c configure \
77f8dd5a 183tests/Makefile\
586314f2 184tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
612384d7
FB
185tests/test-i386-muldiv.h tests/test-i386-code16.S\
186tests/hello.c tests/hello tests/sha1.c \
3ef693a0 187tests/testsig.c tests/testclone.c tests/testthread.c \
fd429f2f 188tests/runcom.c tests/pi_10.com \
1eb87257 189tests/test_path.c \
3ef693a0 190qemu-doc.texi qemu-doc.html
586314f2 191
3ef693a0 192FILE=qemu-$(VERSION)
586314f2
FB
193
194tar:
195 rm -rf /tmp/$(FILE)
196 mkdir -p /tmp/$(FILE)
197 cp -P $(FILES) /tmp/$(FILE)
198 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
199 rm -rf /tmp/$(FILE)
200
d691f669
FB
201# generate a binary distribution including the test binary environnment
202BINPATH=/usr/local/qemu-i386
203
204tarbin:
1eb87257
FB
205 tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
206 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
207 tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
208 $(BINPATH)/wine
d691f669 209
31e31b8a
FB
210ifneq ($(wildcard .depend),)
211include .depend
212endif