]> git.proxmox.com Git - qemu.git/blame - Makefile
update
[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
ca735206
FB
32ifeq ($(GCC_MAJOR),3)
33# very important to generate a return at the end of every operation
34OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
35endif
36
766a487a
FB
37#########################################################
38
0ecfa993 39DEFINES+=-D_GNU_SOURCE
3ef693a0 40LIBS+=-lm
7d13299d
FB
41
42# profiling code
43ifdef TARGET_GPROF
44LDFLAGS+=-p
dc99065b 45main.o: CFLAGS+=-p
7d13299d 46endif
31e31b8a 47
1eb87257 48OBJS= elfload.o main.o syscall.o signal.o path.o
3ef693a0
FB
49SRCS:= $(OBJS:.o=.c)
50OBJS+= libqemu.a
612384d7 51
3ef693a0 52LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o
0ecfa993 53# NOTE: the disassembler code is only needed for debugging
612384d7 54LIBOBJS+=i386-dis.o dis-buf.o
31e31b8a 55
3ef693a0 56all: qemu qemu-doc.html
31e31b8a 57
3ef693a0 58qemu: $(OBJS)
27c75a9a 59 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
31e31b8a
FB
60
61depend: $(SRCS)
62 $(CC) -MM $(CFLAGS) $^ 1>.depend
63
3ef693a0 64# libqemu
612384d7 65
3ef693a0 66libqemu.a: $(LIBOBJS)
612384d7
FB
67 rm -f $@
68 $(AR) rcs $@ $(LIBOBJS)
69
367e86e8
FB
70dyngen: dyngen.c
71 $(HOST_CC) -O2 -Wall -g $< -o $@
72
73translate-i386.o: translate-i386.c op-i386.h cpu-i386.h
74
75op-i386.h: op-i386.o dyngen
76 ./dyngen -o $@ $<
77
78op-i386.o: op-i386.c opreg_template.h ops_template.h
927f621e 79 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
367e86e8 80
31e31b8a
FB
81%.o: %.c
82 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
83
84clean:
7d13299d 85 $(MAKE) -C tests clean
3ef693a0 86 rm -f *.o *.a *~ qemu dyngen TAGS
31e31b8a 87
7d13299d
FB
88distclean: clean
89 rm -f config.mak config.h
90
3ef693a0
FB
91install: qemu
92 install -m 755 -s qemu $(prefix)/bin
612384d7 93
367e86e8 94# various test targets
3ef693a0 95test speed: qemu
367e86e8 96 make -C tests $@
31e31b8a 97
367e86e8
FB
98TAGS:
99 etags *.[ch] i386/*.[ch]
31e31b8a 100
3ef693a0
FB
101# documentation
102qemu-doc.html: qemu-doc.texi
103 texi2html -monolithic -number $<
104
586314f2 105FILES= \
fd429f2f
FB
106README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
107dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\
09bfb054 108Makefile elf.h thunk.c\
3ef693a0 109elfload.c main.c signal.c thunk.h\
fd429f2f 110cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\
27c75a9a 111dis-asm.h gen-i386.h syscall.c\
586314f2 112dis-buf.c i386-dis.c opreg_template.h syscall_defs.h\
1eb87257 113ppc.ld s390.ld exec-i386.h exec-i386.c path.c configure \
77f8dd5a 114tests/Makefile\
586314f2 115tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
612384d7
FB
116tests/test-i386-muldiv.h tests/test-i386-code16.S\
117tests/hello.c tests/hello tests/sha1.c \
3ef693a0 118tests/testsig.c tests/testclone.c tests/testthread.c \
fd429f2f 119tests/runcom.c tests/pi_10.com \
1eb87257 120tests/test_path.c \
3ef693a0 121qemu-doc.texi qemu-doc.html
586314f2 122
3ef693a0 123FILE=qemu-$(VERSION)
586314f2
FB
124
125tar:
126 rm -rf /tmp/$(FILE)
127 mkdir -p /tmp/$(FILE)
128 cp -P $(FILES) /tmp/$(FILE)
129 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
130 rm -rf /tmp/$(FILE)
131
d691f669
FB
132# generate a binary distribution including the test binary environnment
133BINPATH=/usr/local/qemu-i386
134
135tarbin:
1eb87257
FB
136 tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
137 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
138 tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
139 $(BINPATH)/wine
d691f669 140
31e31b8a
FB
141ifneq ($(wildcard .depend),)
142include .depend
143endif