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