3 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_ARCH)
4 VPATH=$(SRC_PATH):$(TARGET_PATH)
8 DEFINES=-I. -I$(TARGET_PATH) -I$(SRC_PATH)
9 HELPER_CFLAGS=$(CFLAGS)
12 QEMU_USER=qemu-$(TARGET_ARCH)
13 # system emulator name
20 ifdef CONFIG_USER_ONLY
24 ifeq ($(TARGET_ARCH), i386)
35 CFLAGS+=-fomit-frame-pointer
36 OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
37 ifeq ($(HAVE_GCC3_OPTIONS),yes)
38 OP_CFLAGS+= -falign-functions=0
40 OP_CFLAGS+= -malign-functions=0
50 LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386.ld
52 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
53 # that the kernel ELF loader considers as an executable. I think this
54 # is the simplest way to make it self virtualizable!
61 LDFLAGS+=-Wl,-T,$(SRC_PATH)/ppc.ld
66 LDFLAGS+=-Wl,-T,$(SRC_PATH)/s390.ld
70 CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
72 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
73 HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
74 # -static is used to avoid g1/g3 usage by the dynamic linker
75 LDFLAGS+=-Wl,-T,$(SRC_PATH)/sparc.ld -static
78 ifeq ($(ARCH),sparc64)
79 CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
81 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
85 # -msmall-data is not used because we want two-instruction relocations
86 # for the constant constructions
87 OP_CFLAGS=-Wall -O2 -g
88 # Ensure there's only a single GP
89 CFLAGS += -msmall-data
90 LDFLAGS+=-Wl,-T,$(SRC_PATH)/alpha.ld
98 OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
99 LDFLAGS+=-Wl,-T,$(SRC_PATH)/arm.ld
103 OP_CFLAGS=$(CFLAGS) -fomit-frame-pointer
104 LDFLAGS+=-Wl,-T,m68k.ld
107 ifeq ($(HAVE_GCC3_OPTIONS),yes)
108 # very important to generate a return at the end of every operation
109 OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
112 #########################################################
114 DEFINES+=-D_GNU_SOURCE
123 OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
124 ifeq ($(TARGET_ARCH), i386)
130 # cpu emulator library
131 LIBOBJS=thunk.o exec.o translate-all.o cpu-exec.o gdbstub.o \
134 ifeq ($(TARGET_ARCH), i386)
135 LIBOBJS+=helper.o helper2.o
138 # NOTE: the disassembler code is only needed for debugging
140 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
143 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
146 ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
149 ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
152 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
157 OBJS += ia64-syscall.o
162 $(QEMU_USER): $(OBJS)
163 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
165 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
166 # the address space (31 bit so sign extending doesn't matter)
167 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
170 # must use static linking to avoid leaving stuff in virtual address space
171 VL_OBJS=vl.o block.o vga.o
174 SDL_LIBS+=-L/usr/X11R6/lib -lX11 -lXext -lXv -ldl -lm
177 $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
178 $(CC) -static -Wl,-T,$(SRC_PATH)/i386-vl.ld -o $@ $^ $(LIBS) $(SDL_LIBS)
181 $(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
184 $(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
188 libqemu.a: $(LIBOBJS)
190 $(AR) rcs $@ $(LIBOBJS)
192 translate.o: translate.c gen-op.h opc.h cpu.h
194 translate-all.o: translate-all.c op.h opc.h cpu.h
199 opc.h: op.o $(DYNGEN)
200 $(DYNGEN) -c -o $@ $<
202 gen-op.h: op.o $(DYNGEN)
203 $(DYNGEN) -g -o $@ $<
206 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
209 $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
211 ifeq ($(TARGET_ARCH), i386)
212 op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h
215 ifeq ($(TARGET_ARCH), arm)
216 op.o: op.c op_template.h
219 ifeq ($(TARGET_ARCH), sparc)
220 op.o: op.c op_template.h
224 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
227 rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h
230 install -m 755 -s $(PROGS) $(prefix)/bin
232 ifneq ($(wildcard .depend),)