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