Statistics
| Branch: | Revision:

root / Makefile @ 5132455e

History | View | Annotate | Download (4.2 kB)

1
include config.mak
2

    
3
CFLAGS=-Wall -O2 -g
4
LDFLAGS=-g
5
LIBS=
6
DEFINES=-DHAVE_BYTESWAP_H
7

    
8
ifeq ($(ARCH),i386)
9
CFLAGS+=-fomit-frame-pointer
10
OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
11
ifeq ($(GCC_MAJOR),3)
12
OP_CFLAGS+= -falign-functions=0
13
else
14
OP_CFLAGS+= -malign-functions=0
15
endif
16
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
17
# that the kernel ELF loader considers as an executable. I think this
18
# is the simplest way to make it self virtualizable!
19
LDFLAGS+=-Wl,-shared
20
endif
21

    
22
ifeq ($(ARCH),ppc)
23
OP_CFLAGS=$(CFLAGS)
24
LDFLAGS+=-Wl,-T,ppc.ld
25
endif
26

    
27
ifeq ($(ARCH),s390)
28
OP_CFLAGS=$(CFLAGS)
29
LDFLAGS+=-Wl,-T,s390.ld
30
endif
31

    
32
ifeq ($(ARCH),sparc)
33
CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
34
LDFLAGS+=-m32
35
OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
36
endif
37

    
38
ifeq ($(ARCH),sparc64)
39
CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
40
LDFLAGS+=-m64
41
OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
42
endif
43

    
44
ifeq ($(ARCH),alpha)
45
# -msmall-data is not used because we want two-instruction relocations
46
# for the constant constructions
47
OP_CFLAGS=-Wall -O2 -g
48
# Ensure there's only a single GP
49
CFLAGS += -msmall-data -msmall-text
50
LDFLAGS+=-Wl,-T,alpha.ld
51
endif
52

    
53
ifeq ($(ARCH),ia64)
54
OP_CFLAGS=$(CFLAGS)
55
endif
56

    
57
ifeq ($(GCC_MAJOR),3)
58
# very important to generate a return at the end of every operation
59
OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
60
endif
61

    
62
#########################################################
63

    
64
DEFINES+=-D_GNU_SOURCE
65
LIBS+=-lm
66

    
67
# profiling code
68
ifdef TARGET_GPROF
69
LDFLAGS+=-p
70
main.o: CFLAGS+=-p
71
endif
72

    
73
OBJS= elfload.o main.o syscall.o mmap.o signal.o vm86.o path.o
74
SRCS:= $(OBJS:.o=.c)
75
OBJS+= libqemu.a
76

    
77
LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o exec.o
78
# NOTE: the disassembler code is only needed for debugging
79
LIBOBJS+=disas.o ppc-dis.o i386-dis.o alpha-dis.o dis-buf.o
80

    
81
ifeq ($(ARCH),ia64)
82
OBJS += ia64-syscall.o
83
endif
84

    
85
all: qemu qemu-doc.html
86

    
87
qemu: $(OBJS)
88
	$(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
89
ifeq ($(ARCH),alpha)
90
# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
91
# the address space (31 bit so sign extending doesn't matter)
92
	echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
93
endif
94

    
95
depend: $(SRCS)
96
	$(CC) -MM $(CFLAGS) $^ 1>.depend
97

    
98
# libqemu 
99

    
100
libqemu.a: $(LIBOBJS)
101
	rm -f $@
102
	$(AR) rcs $@ $(LIBOBJS)
103

    
104
dyngen: dyngen.c
105
	$(HOST_CC) -O2 -Wall -g $< -o $@
106

    
107
translate-i386.o: translate-i386.c op-i386.h cpu-i386.h
108

    
109
op-i386.h: op-i386.o dyngen
110
	./dyngen -o $@ $<
111

    
112
op-i386.o: op-i386.c opreg_template.h ops_template.h
113
	$(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
114

    
115
%.o: %.c
116
	$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
117

    
118
clean:
119
	$(MAKE) -C tests clean
120
	rm -f *.o  *.a *~ qemu dyngen TAGS
121

    
122
distclean: clean
123
	rm -f config.mak config.h
124

    
125
install: qemu
126
	install -m 755 -s qemu $(prefix)/bin
127

    
128
# various test targets
129
test speed: qemu
130
	make -C tests $@
131

    
132
TAGS: 
133
	etags *.[ch] tests/*.[ch]
134

    
135
# documentation
136
qemu-doc.html: qemu-doc.texi
137
	texi2html -monolithic -number $<
138

    
139
FILES= \
140
README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
141
dyngen.c ioctls.h ops_template.h op_string.h  syscall_types.h\
142
Makefile     elf.h       thunk.c\
143
elfload.c   main.c            signal.c        thunk.h\
144
cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h  translate-i386.c\
145
syscall.c opreg_template.h  syscall_defs.h vm86.c\
146
dis-asm.h dis-buf.c disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c\
147
ppc.ld s390.ld exec-i386.h exec-i386.c path.c exec.c mmap.c configure \
148
tests/Makefile\
149
tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
150
tests/test-i386-muldiv.h tests/test-i386-code16.S\
151
tests/hello.c tests/hello tests/sha1.c \
152
tests/testsig.c tests/testclone.c tests/testthread.c \
153
tests/runcom.c tests/pi_10.com \
154
tests/test_path.c \
155
qemu-doc.texi qemu-doc.html
156

    
157
FILE=qemu-$(VERSION)
158

    
159
tar:
160
	rm -rf /tmp/$(FILE)
161
	mkdir -p /tmp/$(FILE)
162
	cp -P $(FILES) /tmp/$(FILE)
163
	( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
164
	rm -rf /tmp/$(FILE)
165

    
166
# generate a binary distribution including the test binary environnment 
167
BINPATH=/usr/local/qemu-i386
168

    
169
tarbin:
170
	tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
171
                 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
172
	tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
173
                 $(BINPATH)/wine
174

    
175
ifneq ($(wildcard .depend),)
176
include .depend
177
endif