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