static config for SDL
[qemu/qemu_0_9_1_stable.git] / Makefile.target
blobb88887641fe3bbb8440822d86e9b48dc7e006267
1 include config.mak
3 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_ARCH)
4 VPATH=$(SRC_PATH):$(TARGET_PATH)
5 CFLAGS=-Wall -O2 -g
6 LDFLAGS=-g
7 LIBS=
8 DEFINES=-I. -I$(TARGET_PATH) -I$(SRC_PATH)
9 HELPER_CFLAGS=$(CFLAGS)
10 DYNGEN=../dyngen
11 # user emulator name
12 QEMU_USER=qemu-$(TARGET_ARCH)
13 # system emulator name
14 ifdef CONFIG_SOFTMMU
15 QEMU_SYSTEM=qemu
16 else
17 QEMU_SYSTEM=qemu-fast
18 endif
20 ifdef CONFIG_USER_ONLY
21 PROGS=$(QEMU_USER)
22 else
23 ifeq ($(TARGET_ARCH), i386)
25 ifeq ($(ARCH), i386)
26 PROGS+=$(QEMU_SYSTEM)
27 ifndef CONFIG_SOFTMMU
28 CONFIG_STATIC=y
29 endif
30 endif
32 ifeq ($(ARCH), ppc)
33 ifdef CONFIG_SOFTMMU
34 PROGS+=$(QEMU_SYSTEM)
35 endif
36 endif
38 endif
39 endif
41 ifdef CONFIG_STATIC
42 LDFLAGS+=-static
43 endif
45 ifeq ($(ARCH),i386)
46 CFLAGS+=-fomit-frame-pointer
47 OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
48 ifeq ($(HAVE_GCC3_OPTIONS),yes)
49 OP_CFLAGS+= -falign-functions=0
50 else
51 OP_CFLAGS+= -malign-functions=0
52 endif
54 ifdef TARGET_GPROF
55 USE_I386_LD=y
56 endif
57 ifdef CONFIG_STATIC
58 USE_I386_LD=y
59 endif
60 ifdef USE_I386_LD
61 LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386.ld
62 else
63 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
64 # that the kernel ELF loader considers as an executable. I think this
65 # is the simplest way to make it self virtualizable!
66 LDFLAGS+=-Wl,-shared
67 endif
68 endif
70 ifeq ($(ARCH),ppc)
71 OP_CFLAGS=$(CFLAGS)
72 LDFLAGS+=-Wl,-T,$(SRC_PATH)/ppc.ld
73 endif
75 ifeq ($(ARCH),s390)
76 OP_CFLAGS=$(CFLAGS)
77 LDFLAGS+=-Wl,-T,$(SRC_PATH)/s390.ld
78 endif
80 ifeq ($(ARCH),sparc)
81 CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
82 LDFLAGS+=-m32
83 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
84 HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
85 # -static is used to avoid g1/g3 usage by the dynamic linker
86 LDFLAGS+=-Wl,-T,$(SRC_PATH)/sparc.ld -static
87 endif
89 ifeq ($(ARCH),sparc64)
90 CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
91 LDFLAGS+=-m64
92 OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
93 endif
95 ifeq ($(ARCH),alpha)
96 # -msmall-data is not used because we want two-instruction relocations
97 # for the constant constructions
98 OP_CFLAGS=-Wall -O2 -g
99 # Ensure there's only a single GP
100 CFLAGS += -msmall-data
101 LDFLAGS+=-Wl,-T,$(SRC_PATH)/alpha.ld
102 endif
104 ifeq ($(ARCH),ia64)
105 OP_CFLAGS=$(CFLAGS)
106 endif
108 ifeq ($(ARCH),arm)
109 OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
110 LDFLAGS+=-Wl,-T,$(SRC_PATH)/arm.ld
111 endif
113 ifeq ($(ARCH),m68k)
114 OP_CFLAGS=$(CFLAGS) -fomit-frame-pointer
115 LDFLAGS+=-Wl,-T,m68k.ld
116 endif
118 ifeq ($(HAVE_GCC3_OPTIONS),yes)
119 # very important to generate a return at the end of every operation
120 OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
121 endif
123 #########################################################
125 DEFINES+=-D_GNU_SOURCE
126 LIBS+=-lm
128 # profiling code
129 ifdef TARGET_GPROF
130 LDFLAGS+=-p
131 main.o: CFLAGS+=-p
132 endif
134 OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
135 ifeq ($(TARGET_ARCH), i386)
136 OBJS+= vm86.o
137 endif
138 SRCS:= $(OBJS:.o=.c)
139 OBJS+= libqemu.a
141 # cpu emulator library
142 LIBOBJS=thunk.o exec.o translate-all.o cpu-exec.o gdbstub.o \
143         translate.o op.o
145 ifeq ($(TARGET_ARCH), i386)
146 LIBOBJS+=helper.o helper2.o
147 endif
149 # NOTE: the disassembler code is only needed for debugging
150 LIBOBJS+=disas.o 
151 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
152 LIBOBJS+=i386-dis.o
153 endif
154 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
155 LIBOBJS+=alpha-dis.o
156 endif
157 ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
158 LIBOBJS+=ppc-dis.o
159 endif
160 ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
161 LIBOBJS+=sparc-dis.o
162 endif
163 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
164 LIBOBJS+=arm-dis.o
165 endif
167 ifeq ($(ARCH),ia64)
168 OBJS += ia64-syscall.o
169 endif
171 all: $(PROGS)
173 $(QEMU_USER): $(OBJS)
174         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
175 ifeq ($(ARCH),alpha)
176 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
177 # the address space (31 bit so sign extending doesn't matter)
178         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
179 endif
181 # must use static linking to avoid leaving stuff in virtual address space
182 VL_OBJS=vl.o block.o ide.o vga.o sb16.o dma.o oss.o
183 ifdef CONFIG_SDL
184 VL_OBJS+=sdl.o
185 ifdef CONFIG_STATIC
186 SDL_LIBS:=$(SDL_STATIC_LIBS)
187 endif
188 endif
190 VL_LDFLAGS=
191 # specific flags are needed for non soft mmu emulator
192 ifdef CONFIG_STATIC
193 VL_LDFLAGS+=-static
194 endif
195 ifndef CONFIG_SOFTMMU
196 VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld 
197 endif
199 $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
200         $(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS)
202 sdl.o: sdl.c
203         $(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
205 depend: $(SRCS)
206         $(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
208 # libqemu 
210 libqemu.a: $(LIBOBJS)
211         rm -f $@
212         $(AR) rcs $@ $(LIBOBJS)
214 translate.o: translate.c gen-op.h opc.h cpu.h
216 translate-all.o: translate-all.c op.h opc.h cpu.h
218 op.h: op.o $(DYNGEN)
219         $(DYNGEN) -o $@ $<
221 opc.h: op.o $(DYNGEN)
222         $(DYNGEN) -c -o $@ $<
224 gen-op.h: op.o $(DYNGEN)
225         $(DYNGEN) -g -o $@ $<
227 op.o: op.c
228         $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
230 helper.o: helper.c
231         $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
233 ifeq ($(TARGET_ARCH), i386)
234 op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h
235 endif
237 ifeq ($(TARGET_ARCH), arm)
238 op.o: op.c op_template.h
239 endif
241 ifeq ($(TARGET_ARCH), sparc)
242 op.o: op.c op_template.h
243 endif
245 %.o: %.c
246         $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
248 clean:
249         rm -f *.o  *.a *~ $(PROGS) gen-op.h opc.h op.h
251 install: all 
252         install -m 755 -s $(PROGS) $(prefix)/bin
254 ifneq ($(wildcard .depend),)
255 include .depend
256 endif