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