]> git.proxmox.com Git - qemu.git/blame_incremental - Makefile
added getrusage
[qemu.git] / Makefile
... / ...
CommitLineData
1include config.mak
2
3CFLAGS=-Wall -O2 -g
4LDFLAGS=-g
5LIBS=
6DEFINES=-DHAVE_BYTESWAP_H
7
8ifeq ($(ARCH),i386)
9CFLAGS+=-fomit-frame-pointer
10OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
11ifeq ($(GCC_MAJOR),3)
12OP_CFLAGS+= -falign-functions=0
13else
14OP_CFLAGS+= -malign-functions=0
15endif
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
20endif
21
22ifeq ($(ARCH),ppc)
23OP_CFLAGS=$(CFLAGS)
24LDFLAGS+=-Wl,-T,ppc.ld
25endif
26
27ifeq ($(ARCH),s390)
28OP_CFLAGS=$(CFLAGS)
29LDFLAGS+=-Wl,-T,s390.ld
30endif
31
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
44ifeq ($(ARCH),alpha)
45# -msmall-data is not used because we want two-instruction relocations
46# for the constant constructions
47OP_CFLAGS=-Wall -O2 -g
48# Ensure there's only a single GP
49CFLAGS += -msmall-data -msmall-text
50LDFLAGS+=-Wl,-T,alpha.ld
51endif
52
53ifeq ($(ARCH),ia64)
54OP_CFLAGS=$(CFLAGS)
55endif
56
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
62#########################################################
63
64DEFINES+=-D_GNU_SOURCE
65LIBS+=-lm
66
67# profiling code
68ifdef TARGET_GPROF
69LDFLAGS+=-p
70main.o: CFLAGS+=-p
71endif
72
73OBJS= elfload.o main.o syscall.o mmap.o signal.o vm86.o path.o
74SRCS:= $(OBJS:.o=.c)
75OBJS+= libqemu.a
76
77LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o exec.o
78# NOTE: the disassembler code is only needed for debugging
79LIBOBJS+=disas.o ppc-dis.o i386-dis.o alpha-dis.o dis-buf.o
80
81ifeq ($(ARCH),ia64)
82OBJS += ia64-syscall.o
83endif
84
85all: qemu qemu-doc.html
86
87qemu: $(OBJS)
88 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
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
94
95depend: $(SRCS)
96 $(CC) -MM $(CFLAGS) $^ 1>.depend
97
98# libqemu
99
100libqemu.a: $(LIBOBJS)
101 rm -f $@
102 $(AR) rcs $@ $(LIBOBJS)
103
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
113 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
114
115%.o: %.c
116 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
117
118clean:
119 $(MAKE) -C tests clean
120 rm -f *.o *.a *~ qemu dyngen TAGS
121
122distclean: clean
123 rm -f config.mak config.h
124
125install: qemu
126 install -m 755 -s qemu $(prefix)/bin
127
128# various test targets
129test speed: qemu
130 make -C tests $@
131
132TAGS:
133 etags *.[ch] tests/*.[ch]
134
135# documentation
136qemu-doc.html: qemu-doc.texi
137 texi2html -monolithic -number $<
138
139FILES= \
140README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
141dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\
142Makefile elf.h thunk.c\
143elfload.c main.c signal.c thunk.h\
144cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\
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 \
148tests/Makefile\
149tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
150tests/test-i386-muldiv.h tests/test-i386-code16.S\
151tests/hello.c tests/hello tests/sha1.c \
152tests/testsig.c tests/testclone.c tests/testthread.c \
153tests/runcom.c tests/pi_10.com \
154tests/test_path.c \
155qemu-doc.texi qemu-doc.html
156
157FILE=qemu-$(VERSION)
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
166# generate a binary distribution including the test binary environnment
167BINPATH=/usr/local/qemu-i386
168
169tarbin:
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
174
175ifneq ($(wildcard .depend),)
176include .depend
177endif