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