6 DEFINES=-DHAVE_BYTESWAP_H
9 CFLAGS+=-fomit-frame-pointer
10 OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
12 OP_CFLAGS+= -falign-functions=0
14 OP_CFLAGS+= -malign-functions=0
17 LDFLAGS+=-Wl,-T,i386.ld
19 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
20 # that the kernel ELF loader considers as an executable. I think this
21 # is the simplest way to make it self virtualizable!
28 LDFLAGS+=-Wl,-T,ppc.ld
33 LDFLAGS+=-Wl,-T,s390.ld
37 CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
39 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
42 ifeq ($(ARCH),sparc64)
43 CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
45 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
49 # -msmall-data is not used because we want two-instruction relocations
50 # for the constant constructions
51 OP_CFLAGS=-Wall -O2 -g
52 # Ensure there's only a single GP
53 CFLAGS += -msmall-data -msmall-text
54 LDFLAGS+=-Wl,-T,alpha.ld
62 # very important to generate a return at the end of every operation
63 OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
66 #########################################################
68 DEFINES+=-D_GNU_SOURCE
77 OBJS= elfload.o main.o syscall.o mmap.o signal.o vm86.o path.o
81 LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o exec.o
83 # NOTE: the disassembler code is only needed for debugging
84 LIBOBJS+=disas.o i386-dis.o dis-buf.o
93 OBJS += ia64-syscall.o
96 all: qemu qemu-doc.html
99 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
101 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
102 # the address space (31 bit so sign extending doesn't matter)
103 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
107 $(CC) -MM $(CFLAGS) $^ 1>.depend
111 libqemu.a: $(LIBOBJS)
113 $(AR) rcs $@ $(LIBOBJS)
116 $(HOST_CC) -O2 -Wall -g $< -o $@
118 translate-i386.o: translate-i386.c op-i386.h opc-i386.h cpu-i386.h
120 op-i386.h: op-i386.o dyngen
123 opc-i386.h: op-i386.o dyngen
126 op-i386.o: op-i386.c opreg_template.h ops_template.h
127 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
130 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
133 $(MAKE) -C tests clean
134 rm -f *.o *.a *~ qemu dyngen TAGS
137 rm -f config.mak config.h
140 install -m 755 -s qemu $(prefix)/bin
142 # various test targets
147 etags *.[ch] tests/*.[ch]
150 qemu-doc.html: qemu-doc.texi
151 texi2html -monolithic -number $<
154 README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
155 dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\
156 Makefile elf.h thunk.c\
157 elfload.c main.c signal.c thunk.h exec.h\
158 cpu-i386.h qemu.h op-i386.c syscall-i386.h translate-i386.c\
159 syscall.c opreg_template.h syscall_defs.h vm86.c\
160 dis-asm.h dis-buf.c disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c\
161 ppc.ld s390.ld exec-i386.h exec-i386.c path.c exec.c mmap.c configure \
163 tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
164 tests/test-i386-muldiv.h tests/test-i386-code16.S\
165 tests/hello.c tests/hello tests/sha1.c \
166 tests/testsig.c tests/testclone.c tests/testthread.c \
167 tests/runcom.c tests/pi_10.com \
169 qemu-doc.texi qemu-doc.html
175 mkdir -p /tmp/$(FILE)
176 cp -P $(FILES) /tmp/$(FILE)
177 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
180 # generate a binary distribution including the test binary environnment
181 BINPATH=/usr/local/qemu-i386
184 tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
185 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
186 tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
189 ifneq ($(wildcard .depend),)