first self virtualizable version
[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 # 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 ($(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
37 #########################################################
38
39 DEFINES+=-D_GNU_SOURCE
40 LIBS+=-lm
41
42 # profiling code
43 ifdef TARGET_GPROF
44 LDFLAGS+=-p
45 main.o: CFLAGS+=-p
46 endif
47
48 OBJS= elfload.o main.o syscall.o signal.o
49 SRCS:= $(OBJS:.o=.c)
50 OBJS+= libqemu.a
51
52 LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o
53 # NOTE: the disassembler code is only needed for debugging
54 LIBOBJS+=i386-dis.o dis-buf.o
55
56 all: qemu qemu-doc.html
57
58 qemu: $(OBJS)
59         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
60
61 depend: $(SRCS)
62         $(CC) -MM $(CFLAGS) $^ 1>.depend
63
64 # libqemu 
65
66 libqemu.a: $(LIBOBJS)
67         rm -f $@
68         $(AR) rcs $@ $(LIBOBJS)
69
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
79         $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
80
81 %.o: %.c
82         $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
83
84 clean:
85         $(MAKE) -C tests clean
86         rm -f *.o  *.a *~ qemu dyngen TAGS
87
88 distclean: clean
89         rm -f config.mak config.h
90
91 install: qemu
92         install -m 755 -s qemu $(prefix)/bin
93
94 # various test targets
95 test speed: qemu
96         make -C tests $@
97
98 TAGS: 
99         etags *.[ch] i386/*.[ch]
100
101 # documentation
102 qemu-doc.html: qemu-doc.texi
103         texi2html -monolithic -number $<
104
105 FILES= \
106 README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
107 dyngen.c ioctls.h ops_template.h op_string.h  syscall_types.h\
108 Makefile     elf.h       thunk.c\
109 elfload.c   main.c            signal.c        thunk.h\
110 cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h  translate-i386.c\
111 dis-asm.h    gen-i386.h  syscall.c\
112 dis-buf.c    i386-dis.c  opreg_template.h  syscall_defs.h\
113 ppc.ld s390.ld exec-i386.h exec-i386.c configure \
114 tests/Makefile\
115 tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
116 tests/test-i386-muldiv.h tests/test-i386-code16.S\
117 tests/hello.c tests/hello tests/sha1.c \
118 tests/testsig.c tests/testclone.c tests/testthread.c \
119 tests/runcom.c tests/pi_10.com \
120 qemu-doc.texi qemu-doc.html
121
122 FILE=qemu-$(VERSION)
123
124 tar:
125         rm -rf /tmp/$(FILE)
126         mkdir -p /tmp/$(FILE)
127         cp -P $(FILES) /tmp/$(FILE)
128         ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
129         rm -rf /tmp/$(FILE)
130
131 # generate a binary distribution including the test binary environnment 
132 BINPATH=/usr/local/qemu-i386
133
134 tarbin:
135         tar zcvf /tmp/qemu-i386-glibc21.tar.gz \
136                  $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin
137         tar zcvf /tmp/qemu-i386-wine.tar.gz \
138                  $(BINPATH)/X11R6 $(BINPATH)/wine
139
140 ifneq ($(wildcard .depend),)
141 include .depend
142 endif