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
23 ifeq ($(TARGET_ARCH), i386)
43 CFLAGS+=-fomit-frame-pointer
44 OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
45 ifeq ($(HAVE_GCC3_OPTIONS),yes)
46 OP_CFLAGS+= -falign-functions=0
48 OP_CFLAGS+= -malign-functions=0
58 LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386.ld
60 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
61 # that the kernel ELF loader considers as an executable. I think this
62 # is the simplest way to make it self virtualizable!
69 LDFLAGS+=-Wl,-T,$(SRC_PATH)/ppc.ld
74 LDFLAGS+=-Wl,-T,$(SRC_PATH)/s390.ld
78 CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
80 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
81 HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
82 # -static is used to avoid g1/g3 usage by the dynamic linker
83 LDFLAGS+=-Wl,-T,$(SRC_PATH)/sparc.ld -static
86 ifeq ($(ARCH),sparc64)
87 CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
89 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
93 # -msmall-data is not used because we want two-instruction relocations
94 # for the constant constructions
95 OP_CFLAGS=-Wall -O2 -g
96 # Ensure there's only a single GP
97 CFLAGS += -msmall-data
98 LDFLAGS+=-Wl,-T,$(SRC_PATH)/alpha.ld
106 OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
107 LDFLAGS+=-Wl,-T,$(SRC_PATH)/arm.ld
111 OP_CFLAGS=$(CFLAGS) -fomit-frame-pointer
112 LDFLAGS+=-Wl,-T,m68k.ld
115 ifeq ($(HAVE_GCC3_OPTIONS),yes)
116 # very important to generate a return at the end of every operation
117 OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
120 #########################################################
122 DEFINES+=-D_GNU_SOURCE
131 OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
132 ifeq ($(TARGET_ARCH), i386)
138 # cpu emulator library
139 LIBOBJS=thunk.o exec.o translate-all.o cpu-exec.o gdbstub.o \
142 ifeq ($(TARGET_ARCH), i386)
143 LIBOBJS+=helper.o helper2.o
146 # NOTE: the disassembler code is only needed for debugging
148 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
151 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
154 ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
157 ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
160 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
165 OBJS += ia64-syscall.o
170 $(QEMU_USER): $(OBJS)
171 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
173 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
174 # the address space (31 bit so sign extending doesn't matter)
175 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
178 # must use static linking to avoid leaving stuff in virtual address space
179 VL_OBJS=vl.o block.o vga.o
182 SDL_LIBS+=-L/usr/X11R6/lib -lX11 -lXext -lXv -ldl -lm
186 # specific flags are needed for non soft mmu emulator
187 ifndef CONFIG_SOFTMMU
188 VL_LDFLAGS+=-static -Wl,-T,$(SRC_PATH)/i386-vl.ld
194 $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
195 $(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS)
198 $(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
201 $(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
205 libqemu.a: $(LIBOBJS)
207 $(AR) rcs $@ $(LIBOBJS)
209 translate.o: translate.c gen-op.h opc.h cpu.h
211 translate-all.o: translate-all.c op.h opc.h cpu.h
216 opc.h: op.o $(DYNGEN)
217 $(DYNGEN) -c -o $@ $<
219 gen-op.h: op.o $(DYNGEN)
220 $(DYNGEN) -g -o $@ $<
223 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
226 $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
228 ifeq ($(TARGET_ARCH), i386)
229 op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h
232 ifeq ($(TARGET_ARCH), arm)
233 op.o: op.c op_template.h
236 ifeq ($(TARGET_ARCH), sparc)
237 op.o: op.c op_template.h
241 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
244 rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h
247 install -m 755 -s $(PROGS) $(prefix)/bin
249 ifneq ($(wildcard .depend),)