]> git.proxmox.com Git - mirror_qemu.git/blame - Makefile
better 16 bit code support
[mirror_qemu.git] / Makefile
CommitLineData
7d13299d 1include config.mak
766a487a 2
7d13299d 3CFLAGS=-Wall -O2 -g
31e31b8a 4LDFLAGS=-g
766a487a 5LIBS=
766a487a 6DEFINES=-DHAVE_BYTESWAP_H
7d13299d
FB
7
8ifeq ($(ARCH),i386)
9CFLAGS+=-fomit-frame-pointer
ca735206
FB
10OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
11ifeq ($(GCC_MAJOR),3)
12OP_CFLAGS+= -falign-functions=0
13else
14OP_CFLAGS+= -malign-functions=0
15endif
766a487a
FB
16endif
17
18ifeq ($(ARCH),ppc)
927f621e 19OP_CFLAGS=$(CFLAGS)
766a487a
FB
20endif
21
ca735206
FB
22ifeq ($(GCC_MAJOR),3)
23# very important to generate a return at the end of every operation
24OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
25endif
26
766a487a
FB
27#########################################################
28
0ecfa993 29DEFINES+=-D_GNU_SOURCE
766a487a 30LDSCRIPT=$(ARCH).ld
927f621e 31LIBS+=-ldl -lm
7d13299d
FB
32
33# profiling code
34ifdef TARGET_GPROF
35LDFLAGS+=-p
dc99065b 36main.o: CFLAGS+=-p
7d13299d 37endif
31e31b8a 38
586314f2 39OBJS= elfload.o main.o thunk.o syscall.o
7d13299d 40OBJS+=translate-i386.o op-i386.o exec-i386.o
0ecfa993
FB
41# NOTE: the disassembler code is only needed for debugging
42OBJS+=i386-dis.o dis-buf.o
31e31b8a
FB
43SRCS = $(OBJS:.o=.c)
44
45all: gemu
46
47gemu: $(OBJS)
367e86e8 48 $(CC) -Wl,-T,$(LDSCRIPT) $(LDFLAGS) -o $@ $^ $(LIBS)
31e31b8a
FB
49
50depend: $(SRCS)
51 $(CC) -MM $(CFLAGS) $^ 1>.depend
52
367e86e8
FB
53# new i386 emulator
54dyngen: dyngen.c
55 $(HOST_CC) -O2 -Wall -g $< -o $@
56
57translate-i386.o: translate-i386.c op-i386.h cpu-i386.h
58
59op-i386.h: op-i386.o dyngen
60 ./dyngen -o $@ $<
61
62op-i386.o: op-i386.c opreg_template.h ops_template.h
927f621e 63 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
367e86e8 64
31e31b8a
FB
65%.o: %.c
66 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
67
68clean:
7d13299d 69 $(MAKE) -C tests clean
586314f2 70 rm -f *.o *~ gemu dyngen TAGS
31e31b8a 71
7d13299d
FB
72distclean: clean
73 rm -f config.mak config.h
74
367e86e8
FB
75# various test targets
76test speed: gemu
77 make -C tests $@
31e31b8a 78
367e86e8
FB
79TAGS:
80 etags *.[ch] i386/*.[ch]
31e31b8a 81
586314f2
FB
82FILES= \
83COPYING.LIB dyngen.c ioctls.h ops_template.h syscall_types.h\
84Makefile elf.h linux_bin.h segment.h thunk.c\
85TODO elfload.c main.c signal.c thunk.h\
68decc7c 86cpu-i386.h gemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\
586314f2
FB
87dis-asm.h gen-i386.h op-i386.h syscall.c\
88dis-buf.c i386-dis.c opreg_template.h syscall_defs.h\
7d13299d 89i386.ld ppc.ld exec-i386.h exec-i386.c configure VERSION \
77f8dd5a 90tests/Makefile\
586314f2 91tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
d57c4e01 92tests/test-i386-muldiv.h\
04369ff2 93tests/test2.c tests/hello.c tests/hello tests/sha1.c
586314f2
FB
94
95FILE=gemu-$(VERSION)
96
97tar:
98 rm -rf /tmp/$(FILE)
99 mkdir -p /tmp/$(FILE)
100 cp -P $(FILES) /tmp/$(FILE)
101 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
102 rm -rf /tmp/$(FILE)
103
31e31b8a
FB
104ifneq ($(wildcard .depend),)
105include .depend
106endif