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