6 DEFINES=-DHAVE_BYTESWAP_H
7 HELPER_CFLAGS=$(CFLAGS)
15 CFLAGS+=-fomit-frame-pointer
16 OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
17 ifeq ($(HAVE_GCC3_OPTIONS),yes)
18 OP_CFLAGS+= -falign-functions=0
20 OP_CFLAGS+= -malign-functions=0
23 LDFLAGS+=-Wl,-T,i386.ld
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!
30 ifeq ($(TARGET_ARCH), i386)
37 LDFLAGS+=-Wl,-T,ppc.ld
42 LDFLAGS+=-Wl,-T,s390.ld
46 CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
48 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
49 HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
50 LDFLAGS+=-Wl,-T,sparc.ld
53 ifeq ($(ARCH),sparc64)
54 CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
56 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
60 # -msmall-data is not used because we want two-instruction relocations
61 # for the constant constructions
62 OP_CFLAGS=-Wall -O2 -g
63 # Ensure there's only a single GP
64 CFLAGS += -msmall-data
65 LDFLAGS+=-Wl,-T,alpha.ld
73 OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
74 LDFLAGS+=-Wl,-T,arm.ld
77 ifeq ($(HAVE_GCC3_OPTIONS),yes)
78 # very important to generate a return at the end of every operation
79 OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
82 #########################################################
84 DEFINES+=-D_GNU_SOURCE
93 OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
94 ifeq ($(TARGET_ARCH), i386)
100 # cpu emulator library
101 LIBOBJS=thunk.o exec.o translate.o cpu-exec.o gdbstub.o
103 ifeq ($(TARGET_ARCH), i386)
104 LIBOBJS+=translate-i386.o op-i386.o helper-i386.o
106 ifeq ($(TARGET_ARCH), arm)
107 LIBOBJS+=translate-arm.o op-arm.o
110 # NOTE: the disassembler code is only needed for debugging
112 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
115 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
118 ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
121 ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
124 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
129 OBJS += ia64-syscall.o
132 all: $(PROGS) qemu-doc.html
135 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
137 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
138 # the address space (31 bit so sign extending doesn't matter)
139 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
142 # must use static linking to avoid leaving stuff in virtual address space
144 $(CC) -static -Wl,-T,i386-vl.ld -o $@ $^ $(LIBS)
147 $(CC) -MM $(CFLAGS) $^ 1>.depend
151 libqemu.a: $(LIBOBJS)
153 $(AR) rcs $@ $(LIBOBJS)
156 $(HOST_CC) -O2 -Wall -g $< -o $@
158 translate-$(TARGET_ARCH).o: translate-$(TARGET_ARCH).c gen-op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
160 translate.o: translate.c op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
162 op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
165 opc-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
168 gen-op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
171 op-$(TARGET_ARCH).o: op-$(TARGET_ARCH).c
172 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
174 helper-$(TARGET_ARCH).o: helper-$(TARGET_ARCH).c
175 $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
177 op-i386.o: op-i386.c opreg_template.h ops_template.h
179 op-arm.o: op-arm.c op-arm-template.h
182 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
185 $(MAKE) -C tests clean
186 rm -f *.o *.a *~ qemu dyngen TAGS
189 rm -f config.mak config.h
192 mkdir -p $(prefix)/bin
193 install -m 755 -s $(PROGS) $(prefix)/bin
195 # various test targets
200 etags *.[ch] tests/*.[ch]
203 qemu-doc.html: qemu-doc.texi
204 texi2html -monolithic -number $<
207 README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
209 dyngen.c dyngen.h dyngen-exec.h ioctls.h syscall_types.h \
210 Makefile elf.h elfload.c main.c signal.c qemu.h \
211 syscall.c syscall_defs.h vm86.c path.c mmap.c \
212 i386.ld ppc.ld alpha.ld s390.ld sparc.ld arm.ld\
214 thunk.c cpu-exec.c translate.c cpu-all.h thunk.h exec.h\
216 cpu-i386.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c \
217 exec-i386.h ops_template.h op_string.h opreg_template.h \
218 cpu-arm.h syscall-arm.h exec-arm.h op-arm.c translate-arm.c op-arm-template.h \
219 dis-asm.h disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c sparc-dis.c \
222 tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h \
223 tests/test-i386-muldiv.h tests/test-i386-code16.S tests/test-i386-vm86.S \
224 tests/hello-i386.c tests/hello-i386 \
225 tests/hello-arm.c tests/hello-arm \
227 tests/testsig.c tests/testclone.c tests/testthread.c \
228 tests/runcom.c tests/pi_10.com \
230 qemu-doc.texi qemu-doc.html
236 mkdir -p /tmp/$(FILE)
237 cp -P $(FILES) /tmp/$(FILE)
238 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
241 # generate a binary distribution including the test binary environnment
242 BINPATH=/usr/local/qemu-i386
245 tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
246 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
247 tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
250 ifneq ($(wildcard .depend),)