]>
Commit | Line | Data |
---|---|---|
7d13299d | 1 | include config.mak |
766a487a | 2 | |
7d13299d | 3 | CFLAGS=-Wall -O2 -g |
31e31b8a | 4 | LDFLAGS=-g |
766a487a | 5 | LIBS= |
766a487a | 6 | DEFINES=-DHAVE_BYTESWAP_H |
7d13299d FB |
7 | |
8 | ifeq ($(ARCH),i386) | |
9 | CFLAGS+=-fomit-frame-pointer | |
ca735206 FB |
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 | |
27c75a9a FB |
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 | |
766a487a FB |
20 | endif |
21 | ||
22 | ifeq ($(ARCH),ppc) | |
927f621e | 23 | OP_CFLAGS=$(CFLAGS) |
27c75a9a | 24 | LDFLAGS+=-Wl,-T,ppc.ld |
766a487a FB |
25 | endif |
26 | ||
fd429f2f FB |
27 | ifeq ($(ARCH),s390) |
28 | OP_CFLAGS=$(CFLAGS) | |
27c75a9a | 29 | LDFLAGS+=-Wl,-T,s390.ld |
fd429f2f FB |
30 | endif |
31 | ||
ca735206 FB |
32 | ifeq ($(GCC_MAJOR),3) |
33 | # very important to generate a return at the end of every operation | |
34 | OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls | |
35 | endif | |
36 | ||
766a487a FB |
37 | ######################################################### |
38 | ||
0ecfa993 | 39 | DEFINES+=-D_GNU_SOURCE |
3ef693a0 | 40 | LIBS+=-lm |
7d13299d FB |
41 | |
42 | # profiling code | |
43 | ifdef TARGET_GPROF | |
44 | LDFLAGS+=-p | |
dc99065b | 45 | main.o: CFLAGS+=-p |
7d13299d | 46 | endif |
31e31b8a | 47 | |
1eb87257 | 48 | OBJS= elfload.o main.o syscall.o signal.o path.o |
3ef693a0 FB |
49 | SRCS:= $(OBJS:.o=.c) |
50 | OBJS+= libqemu.a | |
612384d7 | 51 | |
3ef693a0 | 52 | LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o |
0ecfa993 | 53 | # NOTE: the disassembler code is only needed for debugging |
b9adb4a6 | 54 | LIBOBJS+=disas.o ppc-dis.o i386-dis.o dis-buf.o |
31e31b8a | 55 | |
3ef693a0 | 56 | all: qemu qemu-doc.html |
31e31b8a | 57 | |
3ef693a0 | 58 | qemu: $(OBJS) |
27c75a9a | 59 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) |
31e31b8a FB |
60 | |
61 | depend: $(SRCS) | |
62 | $(CC) -MM $(CFLAGS) $^ 1>.depend | |
63 | ||
3ef693a0 | 64 | # libqemu |
612384d7 | 65 | |
3ef693a0 | 66 | libqemu.a: $(LIBOBJS) |
612384d7 FB |
67 | rm -f $@ |
68 | $(AR) rcs $@ $(LIBOBJS) | |
69 | ||
367e86e8 FB |
70 | dyngen: dyngen.c |
71 | $(HOST_CC) -O2 -Wall -g $< -o $@ | |
72 | ||
73 | translate-i386.o: translate-i386.c op-i386.h cpu-i386.h | |
74 | ||
75 | op-i386.h: op-i386.o dyngen | |
76 | ./dyngen -o $@ $< | |
77 | ||
78 | op-i386.o: op-i386.c opreg_template.h ops_template.h | |
927f621e | 79 | $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $< |
367e86e8 | 80 | |
31e31b8a FB |
81 | %.o: %.c |
82 | $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $< | |
83 | ||
84 | clean: | |
7d13299d | 85 | $(MAKE) -C tests clean |
3ef693a0 | 86 | rm -f *.o *.a *~ qemu dyngen TAGS |
31e31b8a | 87 | |
7d13299d FB |
88 | distclean: clean |
89 | rm -f config.mak config.h | |
90 | ||
3ef693a0 FB |
91 | install: qemu |
92 | install -m 755 -s qemu $(prefix)/bin | |
612384d7 | 93 | |
367e86e8 | 94 | # various test targets |
3ef693a0 | 95 | test speed: qemu |
367e86e8 | 96 | make -C tests $@ |
31e31b8a | 97 | |
367e86e8 | 98 | TAGS: |
b9adb4a6 | 99 | etags *.[ch] tests/*.[ch] |
31e31b8a | 100 | |
3ef693a0 FB |
101 | # documentation |
102 | qemu-doc.html: qemu-doc.texi | |
103 | texi2html -monolithic -number $< | |
104 | ||
586314f2 | 105 | FILES= \ |
fd429f2f FB |
106 | README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \ |
107 | dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\ | |
09bfb054 | 108 | Makefile elf.h thunk.c\ |
3ef693a0 | 109 | elfload.c main.c signal.c thunk.h\ |
fd429f2f | 110 | cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\ |
27c75a9a | 111 | dis-asm.h gen-i386.h syscall.c\ |
b9adb4a6 | 112 | dis-buf.c disas.c disas.h ppc-dis.c i386-dis.c opreg_template.h syscall_defs.h\ |
1eb87257 | 113 | ppc.ld s390.ld exec-i386.h exec-i386.c path.c configure \ |
77f8dd5a | 114 | tests/Makefile\ |
586314f2 | 115 | tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\ |
612384d7 FB |
116 | tests/test-i386-muldiv.h tests/test-i386-code16.S\ |
117 | tests/hello.c tests/hello tests/sha1.c \ | |
3ef693a0 | 118 | tests/testsig.c tests/testclone.c tests/testthread.c \ |
fd429f2f | 119 | tests/runcom.c tests/pi_10.com \ |
1eb87257 | 120 | tests/test_path.c \ |
3ef693a0 | 121 | qemu-doc.texi qemu-doc.html |
586314f2 | 122 | |
3ef693a0 | 123 | FILE=qemu-$(VERSION) |
586314f2 FB |
124 | |
125 | tar: | |
126 | rm -rf /tmp/$(FILE) | |
127 | mkdir -p /tmp/$(FILE) | |
128 | cp -P $(FILES) /tmp/$(FILE) | |
129 | ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) ) | |
130 | rm -rf /tmp/$(FILE) | |
131 | ||
d691f669 FB |
132 | # generate a binary distribution including the test binary environnment |
133 | BINPATH=/usr/local/qemu-i386 | |
134 | ||
135 | tarbin: | |
1eb87257 FB |
136 | tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \ |
137 | $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr | |
138 | tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \ | |
139 | $(BINPATH)/wine | |
d691f669 | 140 | |
31e31b8a FB |
141 | ifneq ($(wildcard .depend),) |
142 | include .depend | |
143 | endif |