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