Statistics
| Branch: | Revision:

root / Makefile @ 0ecfa993

History | View | Annotate | Download (2.1 kB)

1
ARCH=i386
2
#ARCH=ppc
3
HOST_CC=gcc
4

    
5
ifeq ($(ARCH),i386)
6
CFLAGS=-Wall -O2 -g -fomit-frame-pointer
7
LDFLAGS=-g
8
LIBS=
9
CC=gcc
10
DEFINES=-DHAVE_BYTESWAP_H
11
OP_CFLAGS=$(CFLAGS) -malign-functions=0 -mpreferred-stack-boundary=2
12
endif
13

    
14
ifeq ($(ARCH),ppc)
15
GCC_LIBS_DIR=/usr/netgem/tools/lib/gcc-lib/powerpc-linux/2.95.2
16
DIST=/home/fbe/nsv/dist/hw/n6-dtt
17
CC=powerpc-linux-gcc -msoft-float 
18
CFLAGS=-Wall -pipe -O2 -mcpu=405 -mbig -nostdinc -g -I$(GCC_LIBS_DIR)/include -I$(DIST)/include
19
LIBS_DIR=$(DIST)/lib
20
CRT1=$(LIBS_DIR)/crt1.o
21
CRTI=$(LIBS_DIR)/crti.o
22
CRTN=$(LIBS_DIR)/crtn.o
23
CRTBEGIN=$(GCC_LIBS_DIR)/crtbegin.o
24
CRTEND=$(GCC_LIBS_DIR)/crtend.o
25
LDFLAGS=-static -g -nostdlib $(CRT1) $(CRTI) $(CRTBEGIN) 
26
LIBS=-L$(LIBS_DIR) -ltinyc -lgcc $(CRTEND) $(CRTN)
27
DEFINES=-Dsocklen_t=int
28
OP_CFLAGS=$(CFLAGS)
29
endif
30

    
31
#########################################################
32

    
33
DEFINES+=-D_GNU_SOURCE
34
DEFINES+=-DCONFIG_PREFIX=\"/usr/local\"
35
LDSCRIPT=$(ARCH).ld
36
LIBS+=-ldl -lm
37

    
38
#DEFINES+= -DGEMU -DDOSEMU -DNO_TRACE_MSGS
39
#OBJS= i386/fp87.o i386/interp_main.o i386/interp_modrm.o i386/interp_16_32.o \
40
#      i386/interp_32_16.o i386/interp_32_32.o i386/emu-utils.o \
41
#      i386/dis8086.o i386/emu-ldt.o
42
OBJS+=translate-i386.o op-i386.o
43
OBJS+= elfload.o main.o thunk.o syscall.o
44
# NOTE: the disassembler code is only needed for debugging
45
OBJS+=i386-dis.o dis-buf.o
46
SRCS = $(OBJS:.o=.c)
47

    
48
all: gemu
49

    
50
gemu: $(OBJS)
51
	$(CC) -Wl,-T,$(LDSCRIPT) $(LDFLAGS) -o $@ $^ $(LIBS)
52

    
53
depend: $(SRCS)
54
	$(CC) -MM $(CFLAGS) $^ 1>.depend
55

    
56
# old i386 emulator
57
i386/interp_32_32.o: i386/interp_32_32.c i386/interp_gen.h
58

    
59
i386/interp_gen.h: i386/gencode
60
	./i386/gencode > $@
61

    
62
i386/gencode: i386/gencode.c
63
	$(CC) -O2 -Wall -g $< -o $@
64

    
65
# new i386 emulator
66
dyngen: dyngen.c
67
	$(HOST_CC) -O2 -Wall -g $< -o $@
68

    
69
translate-i386.o: translate-i386.c op-i386.h cpu-i386.h
70

    
71
op-i386.h: op-i386.o dyngen
72
	./dyngen -o $@ $<
73

    
74
op-i386.o: op-i386.c opreg_template.h ops_template.h
75
	$(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
76

    
77
%.o: %.c
78
	$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
79

    
80
clean:
81
	rm -f *.o *~ i386/*.o i386/*~ gemu TAGS
82

    
83
# various test targets
84
test speed: gemu
85
	make -C tests $@
86

    
87
TAGS: 
88
	etags *.[ch] i386/*.[ch]
89

    
90
ifneq ($(wildcard .depend),)
91
include .depend
92
endif