]> git.proxmox.com Git - qemu.git/blame - Makefile
segment defines
[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
aa05ae6f 78
0ecfa993 79# NOTE: the disassembler code is only needed for debugging
aa05ae6f
FB
80LIBOBJS+=disas.o i386-dis.o dis-buf.o
81ifeq ($(ARCH),alpha)
82LIBOBJS+=alpha-dis.o
83endif
84ifeq ($(ARCH),ppc)
85LIBOBJS+=ppc-dis.o
86endif
31e31b8a 87
d6cdca95
FB
88ifeq ($(ARCH),ia64)
89OBJS += ia64-syscall.o
90endif
91
3ef693a0 92all: qemu qemu-doc.html
31e31b8a 93
3ef693a0 94qemu: $(OBJS)
27c75a9a 95 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
a993ba85
FB
96ifeq ($(ARCH),alpha)
97# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
98# the address space (31 bit so sign extending doesn't matter)
99 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
100endif
31e31b8a
FB
101
102depend: $(SRCS)
103 $(CC) -MM $(CFLAGS) $^ 1>.depend
104
3ef693a0 105# libqemu
612384d7 106
3ef693a0 107libqemu.a: $(LIBOBJS)
612384d7
FB
108 rm -f $@
109 $(AR) rcs $@ $(LIBOBJS)
110
367e86e8
FB
111dyngen: dyngen.c
112 $(HOST_CC) -O2 -Wall -g $< -o $@
113
114translate-i386.o: translate-i386.c op-i386.h cpu-i386.h
115
116op-i386.h: op-i386.o dyngen
117 ./dyngen -o $@ $<
118
119op-i386.o: op-i386.c opreg_template.h ops_template.h
927f621e 120 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
367e86e8 121
31e31b8a
FB
122%.o: %.c
123 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
124
125clean:
7d13299d 126 $(MAKE) -C tests clean
3ef693a0 127 rm -f *.o *.a *~ qemu dyngen TAGS
31e31b8a 128
7d13299d
FB
129distclean: clean
130 rm -f config.mak config.h
131
3ef693a0
FB
132install: qemu
133 install -m 755 -s qemu $(prefix)/bin
612384d7 134
367e86e8 135# various test targets
3ef693a0 136test speed: qemu
367e86e8 137 make -C tests $@
31e31b8a 138
367e86e8 139TAGS:
b9adb4a6 140 etags *.[ch] tests/*.[ch]
31e31b8a 141
3ef693a0
FB
142# documentation
143qemu-doc.html: qemu-doc.texi
144 texi2html -monolithic -number $<
145
586314f2 146FILES= \
fd429f2f
FB
147README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
148dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\
09bfb054 149Makefile elf.h thunk.c\
aa05ae6f 150elfload.c main.c signal.c thunk.h exec.h\
fd429f2f 151cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\
76c8b771
FB
152syscall.c opreg_template.h syscall_defs.h vm86.c\
153dis-asm.h dis-buf.c disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c\
154ppc.ld s390.ld exec-i386.h exec-i386.c path.c exec.c mmap.c configure \
77f8dd5a 155tests/Makefile\
586314f2 156tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
612384d7
FB
157tests/test-i386-muldiv.h tests/test-i386-code16.S\
158tests/hello.c tests/hello tests/sha1.c \
3ef693a0 159tests/testsig.c tests/testclone.c tests/testthread.c \
fd429f2f 160tests/runcom.c tests/pi_10.com \
1eb87257 161tests/test_path.c \
3ef693a0 162qemu-doc.texi qemu-doc.html
586314f2 163
3ef693a0 164FILE=qemu-$(VERSION)
586314f2
FB
165
166tar:
167 rm -rf /tmp/$(FILE)
168 mkdir -p /tmp/$(FILE)
169 cp -P $(FILES) /tmp/$(FILE)
170 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
171 rm -rf /tmp/$(FILE)
172
d691f669
FB
173# generate a binary distribution including the test binary environnment
174BINPATH=/usr/local/qemu-i386
175
176tarbin:
1eb87257
FB
177 tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
178 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
179 tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
180 $(BINPATH)/wine
d691f669 181
31e31b8a
FB
182ifneq ($(wildcard .depend),)
183include .depend
184endif