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)
40 ifeq ($(TARGET_ARCH), ppc)
52 endif # TARGET_ARCH = ppc
53 endif # !CONFIG_USER_ONLY
60 CFLAGS+=-fomit-frame-pointer
61 OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
62 ifeq ($(HAVE_GCC3_OPTIONS),yes)
63 OP_CFLAGS+= -falign-functions=0
65 OP_CFLAGS+= -malign-functions=0
75 LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386.ld
77 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
78 # that the kernel ELF loader considers as an executable. I think this
79 # is the simplest way to make it self virtualizable!
86 LDFLAGS+=-Wl,-T,$(SRC_PATH)/ppc.ld
91 LDFLAGS+=-Wl,-T,$(SRC_PATH)/s390.ld
95 CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
97 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
98 HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
99 # -static is used to avoid g1/g3 usage by the dynamic linker
100 LDFLAGS+=-Wl,-T,$(SRC_PATH)/sparc.ld -static
103 ifeq ($(ARCH),sparc64)
104 CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
106 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
110 # -msmall-data is not used because we want two-instruction relocations
111 # for the constant constructions
112 OP_CFLAGS=-Wall -O2 -g
113 # Ensure there's only a single GP
114 CFLAGS += -msmall-data
115 LDFLAGS+=-Wl,-T,$(SRC_PATH)/alpha.ld
123 OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
124 LDFLAGS+=-Wl,-T,$(SRC_PATH)/arm.ld
128 OP_CFLAGS=$(CFLAGS) -fomit-frame-pointer
129 LDFLAGS+=-Wl,-T,m68k.ld
132 ifeq ($(HAVE_GCC3_OPTIONS),yes)
133 # very important to generate a return at the end of every operation
134 OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
137 #########################################################
139 DEFINES+=-D_GNU_SOURCE
148 OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
149 ifeq ($(TARGET_ARCH), i386)
155 # cpu emulator library
156 LIBOBJS=thunk.o exec.o translate-all.o cpu-exec.o gdbstub.o \
159 ifeq ($(TARGET_ARCH), i386)
160 LIBOBJS+=helper.o helper2.o
163 ifeq ($(TARGET_ARCH), ppc)
164 LIBOBJS+= op_helper.o helper.o
167 # NOTE: the disassembler code is only needed for debugging
169 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
172 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
175 ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
178 ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
181 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
186 OBJS += ia64-syscall.o
191 $(QEMU_USER): $(OBJS)
192 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
194 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
195 # the address space (31 bit so sign extending doesn't matter)
196 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
199 # must use static linking to avoid leaving stuff in virtual address space
200 VL_OBJS=vl.o block.o ide.o vga.o sb16.o dma.o oss.o fdc.o
201 ifeq ($(TARGET_ARCH), ppc)
207 SDL_LIBS:=$(SDL_STATIC_LIBS)
212 # specific flags are needed for non soft mmu emulator
216 ifndef CONFIG_SOFTMMU
217 VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld
220 $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
221 $(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS)
224 $(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
227 $(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
231 libqemu.a: $(LIBOBJS)
233 $(AR) rcs $@ $(LIBOBJS)
235 translate.o: translate.c gen-op.h opc.h cpu.h
237 translate-all.o: translate-all.c op.h opc.h cpu.h
242 opc.h: op.o $(DYNGEN)
243 $(DYNGEN) -c -o $@ $<
245 gen-op.h: op.o $(DYNGEN)
246 $(DYNGEN) -g -o $@ $<
249 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
252 $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
254 ifeq ($(TARGET_ARCH), i386)
255 op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h
258 ifeq ($(TARGET_ARCH), arm)
259 op.o: op.c op_template.h
262 ifeq ($(TARGET_ARCH), sparc)
263 op.o: op.c op_template.h
266 ifeq ($(TARGET_ARCH), ppc)
267 op.o: op.c op_template.h op_mem.h
268 op_helper.o: op_helper_mem.h
272 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
275 rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h
278 install -m 755 -s $(PROGS) $(prefix)/bin
280 ifneq ($(wildcard .depend),)