Statistics
| Branch: | Revision:

root / Makefile @ 2c1794c4

History | View | Annotate | Download (6.2 kB)

1
include config.mak
2

    
3
CFLAGS=-Wall -O2 -g
4
LDFLAGS=-g
5
LIBS=
6
DEFINES=-DHAVE_BYTESWAP_H
7
HELPER_CFLAGS=$(CFLAGS)
8
PROGS=qemu
9

    
10
ifdef CONFIG_STATIC
11
LDFLAGS+=-static
12
endif
13

    
14
ifeq ($(ARCH),i386)
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
19
else
20
OP_CFLAGS+= -malign-functions=0
21
endif
22
ifdef TARGET_GPROF
23
LDFLAGS+=-Wl,-T,i386.ld
24
else
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!
28
LDFLAGS+=-Wl,-shared
29
endif
30
ifeq ($(TARGET_ARCH), i386)
31
PROGS+=vl vlmkcow
32
endif
33
endif
34

    
35
ifeq ($(ARCH),ppc)
36
OP_CFLAGS=$(CFLAGS)
37
LDFLAGS+=-Wl,-T,ppc.ld
38
endif
39

    
40
ifeq ($(ARCH),s390)
41
OP_CFLAGS=$(CFLAGS)
42
LDFLAGS+=-Wl,-T,s390.ld
43
endif
44

    
45
ifeq ($(ARCH),sparc)
46
CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
47
LDFLAGS+=-m32
48
OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
49
HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
50
# -static is used to avoid g1/g3 usage by the dynamic linker
51
LDFLAGS+=-Wl,-T,sparc.ld -static
52
endif
53

    
54
ifeq ($(ARCH),sparc64)
55
CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
56
LDFLAGS+=-m64
57
OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
58
endif
59

    
60
ifeq ($(ARCH),alpha)
61
# -msmall-data is not used because we want two-instruction relocations
62
# for the constant constructions
63
OP_CFLAGS=-Wall -O2 -g
64
# Ensure there's only a single GP
65
CFLAGS += -msmall-data
66
LDFLAGS+=-Wl,-T,alpha.ld
67
endif
68

    
69
ifeq ($(ARCH),ia64)
70
OP_CFLAGS=$(CFLAGS)
71
endif
72

    
73
ifeq ($(ARCH),arm)
74
OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
75
LDFLAGS+=-Wl,-T,arm.ld
76
endif
77

    
78
ifeq ($(HAVE_GCC3_OPTIONS),yes)
79
# very important to generate a return at the end of every operation
80
OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
81
endif
82

    
83
#########################################################
84

    
85
DEFINES+=-D_GNU_SOURCE
86
LIBS+=-lm
87

    
88
# profiling code
89
ifdef TARGET_GPROF
90
LDFLAGS+=-p
91
main.o: CFLAGS+=-p
92
endif
93

    
94
OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
95
ifeq ($(TARGET_ARCH), i386)
96
OBJS+= vm86.o
97
endif
98
SRCS:= $(OBJS:.o=.c)
99
OBJS+= libqemu.a
100

    
101
# cpu emulator library
102
LIBOBJS=thunk.o exec.o translate.o cpu-exec.o gdbstub.o
103

    
104
ifeq ($(TARGET_ARCH), i386)
105
LIBOBJS+=translate-i386.o op-i386.o helper-i386.o
106
endif
107
ifeq ($(TARGET_ARCH), arm)
108
LIBOBJS+=translate-arm.o op-arm.o
109
endif
110

    
111
# NOTE: the disassembler code is only needed for debugging
112
LIBOBJS+=disas.o 
113
ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
114
LIBOBJS+=i386-dis.o
115
endif
116
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
117
LIBOBJS+=alpha-dis.o
118
endif
119
ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
120
LIBOBJS+=ppc-dis.o
121
endif
122
ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
123
LIBOBJS+=sparc-dis.o
124
endif
125
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
126
LIBOBJS+=arm-dis.o
127
endif
128

    
129
ifeq ($(ARCH),ia64)
130
OBJS += ia64-syscall.o
131
endif
132

    
133
all: $(PROGS) qemu-doc.html
134

    
135
qemu: $(OBJS)
136
	$(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
137
ifeq ($(ARCH),alpha)
138
# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
139
# the address space (31 bit so sign extending doesn't matter)
140
	echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
141
endif
142

    
143
# must use static linking to avoid leaving stuff in virtual address space
144
vl: vl.o block.o libqemu.a
145
	$(CC) -static -Wl,-T,i386-vl.ld -o $@ $^  $(LIBS)
146

    
147
vlmkcow: vlmkcow.o
148
	$(CC) -o $@ $^  $(LIBS)
149

    
150
depend: $(SRCS)
151
	$(CC) -MM $(CFLAGS) $^ 1>.depend
152

    
153
# libqemu 
154

    
155
libqemu.a: $(LIBOBJS)
156
	rm -f $@
157
	$(AR) rcs $@ $(LIBOBJS)
158

    
159
dyngen: dyngen.c
160
	$(HOST_CC) -O2 -Wall -g $< -o $@
161

    
162
translate-$(TARGET_ARCH).o: translate-$(TARGET_ARCH).c gen-op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
163

    
164
translate.o: translate.c op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
165

    
166
op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
167
	./dyngen -o $@ $<
168

    
169
opc-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
170
	./dyngen -c -o $@ $<
171

    
172
gen-op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
173
	./dyngen -g -o $@ $<
174

    
175
op-$(TARGET_ARCH).o: op-$(TARGET_ARCH).c
176
	$(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
177

    
178
helper-$(TARGET_ARCH).o: helper-$(TARGET_ARCH).c
179
	$(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
180

    
181
op-i386.o: op-i386.c opreg_template.h ops_template.h ops_template_mem.h
182

    
183
op-arm.o: op-arm.c op-arm-template.h
184

    
185
%.o: %.c
186
	$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
187

    
188
clean:
189
	$(MAKE) -C tests clean
190
	rm -f *.o  *.a *~ qemu dyngen TAGS
191

    
192
distclean: clean
193
	rm -f config.mak config.h
194

    
195
install: $(PROGS)
196
	mkdir -p $(prefix)/bin
197
	install -m 755 -s $(PROGS) $(prefix)/bin
198

    
199
# various test targets
200
test speed: qemu
201
	make -C tests $@
202

    
203
TAGS: 
204
	etags *.[ch] tests/*.[ch]
205

    
206
# documentation
207
qemu-doc.html: qemu-doc.texi
208
	texi2html -monolithic -number $<
209

    
210
FILES= \
211
README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
212
configure \
213
dyngen.c dyngen.h dyngen-exec.h ioctls.h syscall_types.h \
214
Makefile elf.h elfload.c main.c signal.c qemu.h \
215
syscall.c syscall_defs.h vm86.c path.c mmap.c \
216
i386.ld ppc.ld alpha.ld s390.ld sparc.ld arm.ld\
217
vl.c i386-vl.ld vl.h block.c vlmkcow.c\
218
thunk.c cpu-exec.c translate.c cpu-all.h thunk.h exec.h\
219
exec.c cpu-exec.c gdbstub.c\
220
cpu-i386.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c \
221
exec-i386.h ops_template.h ops_template_mem.h op_string.h opreg_template.h \
222
cpu-arm.h syscall-arm.h exec-arm.h op-arm.c translate-arm.c op-arm-template.h \
223
dis-asm.h disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c sparc-dis.c \
224
arm-dis.c \
225
tests/Makefile \
226
tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h \
227
tests/test-i386-muldiv.h tests/test-i386-code16.S tests/test-i386-vm86.S \
228
tests/hello-i386.c tests/hello-i386 \
229
tests/hello-arm.c tests/hello-arm \
230
tests/sha1.c \
231
tests/testsig.c tests/testclone.c tests/testthread.c \
232
tests/runcom.c tests/pi_10.com \
233
tests/test_path.c \
234
qemu-doc.texi qemu-doc.html
235

    
236
FILE=qemu-$(VERSION)
237

    
238
tar:
239
	rm -rf /tmp/$(FILE)
240
	mkdir -p /tmp/$(FILE)
241
	cp -P $(FILES) /tmp/$(FILE)
242
	( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
243
	rm -rf /tmp/$(FILE)
244

    
245
# generate a binary distribution including the test binary environnment 
246
BINPATH=/usr/local/qemu-i386
247

    
248
tarbin:
249
	tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
250
                 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
251
	tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
252
                 $(BINPATH)/wine
253

    
254
ifneq ($(wildcard .depend),)
255
include .depend
256
endif