]> git.proxmox.com Git - qemu.git/blame - Makefile
use bswap.h
[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
9c5d1246 7HELPER_CFLAGS=$(CFLAGS)
6b1534cc 8PROGS=qemu
7d13299d 9
43ce4dfe
FB
10ifdef CONFIG_STATIC
11LDFLAGS+=-static
12endif
13
7d13299d
FB
14ifeq ($(ARCH),i386)
15CFLAGS+=-fomit-frame-pointer
ca735206 16OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
6b1534cc 17ifeq ($(HAVE_GCC3_OPTIONS),yes)
ca735206
FB
18OP_CFLAGS+= -falign-functions=0
19else
20OP_CFLAGS+= -malign-functions=0
21endif
2d92f0b8
FB
22ifdef TARGET_GPROF
23LDFLAGS+=-Wl,-T,i386.ld
24else
27c75a9a
FB
25# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
26# that the kernel ELF loader considers as an executable. I think this
27# is the simplest way to make it self virtualizable!
28LDFLAGS+=-Wl,-shared
766a487a 29endif
6b1534cc 30ifeq ($(TARGET_ARCH), i386)
33e3963e 31PROGS+=vl vlmkcow
6b1534cc 32endif
2d92f0b8 33endif
766a487a
FB
34
35ifeq ($(ARCH),ppc)
927f621e 36OP_CFLAGS=$(CFLAGS)
27c75a9a 37LDFLAGS+=-Wl,-T,ppc.ld
766a487a
FB
38endif
39
fd429f2f
FB
40ifeq ($(ARCH),s390)
41OP_CFLAGS=$(CFLAGS)
27c75a9a 42LDFLAGS+=-Wl,-T,s390.ld
fd429f2f
FB
43endif
44
ae228531
FB
45ifeq ($(ARCH),sparc)
46CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
47LDFLAGS+=-m32
48OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
9c5d1246 49HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
a96fc003
FB
50# -static is used to avoid g1/g3 usage by the dynamic linker
51LDFLAGS+=-Wl,-T,sparc.ld -static
ae228531
FB
52endif
53
54ifeq ($(ARCH),sparc64)
55CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
56LDFLAGS+=-m64
57OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
58endif
59
d6cdca95 60ifeq ($(ARCH),alpha)
a993ba85
FB
61# -msmall-data is not used because we want two-instruction relocations
62# for the constant constructions
63OP_CFLAGS=-Wall -O2 -g
d6cdca95 64# Ensure there's only a single GP
82d19daf 65CFLAGS += -msmall-data
d6cdca95
FB
66LDFLAGS+=-Wl,-T,alpha.ld
67endif
68
69ifeq ($(ARCH),ia64)
70OP_CFLAGS=$(CFLAGS)
71endif
72
9c5d1246
FB
73ifeq ($(ARCH),arm)
74OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
75LDFLAGS+=-Wl,-T,arm.ld
76endif
77
6b1534cc 78ifeq ($(HAVE_GCC3_OPTIONS),yes)
ca735206
FB
79# very important to generate a return at the end of every operation
80OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
81endif
82
766a487a
FB
83#########################################################
84
0ecfa993 85DEFINES+=-D_GNU_SOURCE
3ef693a0 86LIBS+=-lm
7d13299d
FB
87
88# profiling code
89ifdef TARGET_GPROF
90LDFLAGS+=-p
dc99065b 91main.o: CFLAGS+=-p
7d13299d 92endif
31e31b8a 93
de83cd02
FB
94OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
95ifeq ($(TARGET_ARCH), i386)
96OBJS+= vm86.o
97endif
3ef693a0
FB
98SRCS:= $(OBJS:.o=.c)
99OBJS+= libqemu.a
612384d7 100
de83cd02 101# cpu emulator library
b4608c04 102LIBOBJS=thunk.o exec.o translate.o cpu-exec.o gdbstub.o
de83cd02
FB
103
104ifeq ($(TARGET_ARCH), i386)
105LIBOBJS+=translate-i386.o op-i386.o helper-i386.o
106endif
107ifeq ($(TARGET_ARCH), arm)
108LIBOBJS+=translate-arm.o op-arm.o
109endif
aa05ae6f 110
0ecfa993 111# NOTE: the disassembler code is only needed for debugging
de83cd02
FB
112LIBOBJS+=disas.o
113ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
114LIBOBJS+=i386-dis.o
115endif
116ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
aa05ae6f
FB
117LIBOBJS+=alpha-dis.o
118endif
de83cd02 119ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
aa05ae6f
FB
120LIBOBJS+=ppc-dis.o
121endif
de83cd02 122ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
9c5d1246
FB
123LIBOBJS+=sparc-dis.o
124endif
de83cd02 125ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
9c5d1246
FB
126LIBOBJS+=arm-dis.o
127endif
31e31b8a 128
d6cdca95
FB
129ifeq ($(ARCH),ia64)
130OBJS += ia64-syscall.o
131endif
132
6b1534cc 133all: $(PROGS) qemu-doc.html
31e31b8a 134
3ef693a0 135qemu: $(OBJS)
27c75a9a 136 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
a993ba85
FB
137ifeq ($(ARCH),alpha)
138# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
139# the address space (31 bit so sign extending doesn't matter)
140 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
141endif
31e31b8a 142
0824d6fc 143# must use static linking to avoid leaving stuff in virtual address space
8c9b861e 144vl: vl.o block.o libqemu.a
4690764b 145 $(CC) -static -Wl,-T,i386-vl.ld -o $@ $^ $(LIBS)
33e3963e
FB
146
147vlmkcow: vlmkcow.o
148 $(CC) -o $@ $^ $(LIBS)
0824d6fc 149
31e31b8a
FB
150depend: $(SRCS)
151 $(CC) -MM $(CFLAGS) $^ 1>.depend
152
3ef693a0 153# libqemu
612384d7 154
3ef693a0 155libqemu.a: $(LIBOBJS)
612384d7
FB
156 rm -f $@
157 $(AR) rcs $@ $(LIBOBJS)
158
367e86e8
FB
159dyngen: dyngen.c
160 $(HOST_CC) -O2 -Wall -g $< -o $@
161
de83cd02
FB
162translate-$(TARGET_ARCH).o: translate-$(TARGET_ARCH).c gen-op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
163
164translate.o: translate.c op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
367e86e8 165
de83cd02 166op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
367e86e8
FB
167 ./dyngen -o $@ $<
168
de83cd02 169opc-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
2d92f0b8
FB
170 ./dyngen -c -o $@ $<
171
de83cd02
FB
172gen-op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
173 ./dyngen -g -o $@ $<
174
175op-$(TARGET_ARCH).o: op-$(TARGET_ARCH).c
927f621e 176 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
367e86e8 177
de83cd02 178helper-$(TARGET_ARCH).o: helper-$(TARGET_ARCH).c
9c5d1246
FB
179 $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
180
e477b8b8 181op-i386.o: op-i386.c opreg_template.h ops_template.h ops_template_mem.h
de83cd02
FB
182
183op-arm.o: op-arm.c op-arm-template.h
184
31e31b8a
FB
185%.o: %.c
186 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
187
188clean:
7d13299d 189 $(MAKE) -C tests clean
3ef693a0 190 rm -f *.o *.a *~ qemu dyngen TAGS
31e31b8a 191
7d13299d
FB
192distclean: clean
193 rm -f config.mak config.h
194
6b1534cc 195install: $(PROGS)
d5a0b50c 196 mkdir -p $(prefix)/bin
6b1534cc 197 install -m 755 -s $(PROGS) $(prefix)/bin
612384d7 198
367e86e8 199# various test targets
3ef693a0 200test speed: qemu
367e86e8 201 make -C tests $@
31e31b8a 202
367e86e8 203TAGS:
b9adb4a6 204 etags *.[ch] tests/*.[ch]
31e31b8a 205
3ef693a0
FB
206# documentation
207qemu-doc.html: qemu-doc.texi
208 texi2html -monolithic -number $<
209
586314f2 210FILES= \
fd429f2f 211README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
de83cd02
FB
212configure \
213dyngen.c dyngen.h dyngen-exec.h ioctls.h syscall_types.h \
214Makefile elf.h elfload.c main.c signal.c qemu.h \
215syscall.c syscall_defs.h vm86.c path.c mmap.c \
6b1534cc 216i386.ld ppc.ld alpha.ld s390.ld sparc.ld arm.ld\
4690764b 217vl.c i386-vl.ld vl.h block.c vlmkcow.c\
de83cd02 218thunk.c cpu-exec.c translate.c cpu-all.h thunk.h exec.h\
4690764b 219exec.c cpu-exec.c gdbstub.c\
de83cd02 220cpu-i386.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c \
4690764b 221exec-i386.h ops_template.h ops_template_mem.h op_string.h opreg_template.h \
de83cd02
FB
222cpu-arm.h syscall-arm.h exec-arm.h op-arm.c translate-arm.c op-arm-template.h \
223dis-asm.h disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c sparc-dis.c \
224arm-dis.c \
225tests/Makefile \
226tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h \
227tests/test-i386-muldiv.h tests/test-i386-code16.S tests/test-i386-vm86.S \
322d0c66 228tests/hello-i386.c tests/hello-i386 \
de83cd02
FB
229tests/hello-arm.c tests/hello-arm \
230tests/sha1.c \
3ef693a0 231tests/testsig.c tests/testclone.c tests/testthread.c \
fd429f2f 232tests/runcom.c tests/pi_10.com \
1eb87257 233tests/test_path.c \
3ef693a0 234qemu-doc.texi qemu-doc.html
586314f2 235
3ef693a0 236FILE=qemu-$(VERSION)
586314f2
FB
237
238tar:
239 rm -rf /tmp/$(FILE)
240 mkdir -p /tmp/$(FILE)
241 cp -P $(FILES) /tmp/$(FILE)
242 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
243 rm -rf /tmp/$(FILE)
244
d691f669
FB
245# generate a binary distribution including the test binary environnment
246BINPATH=/usr/local/qemu-i386
247
248tarbin:
1eb87257
FB
249 tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
250 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
251 tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
252 $(BINPATH)/wine
d691f669 253
31e31b8a
FB
254ifneq ($(wildcard .depend),)
255include .depend
256endif