2003-03-06 23:23:54 +00:00
|
|
|
include config.mak
|
2003-02-18 23:35:48 +00:00
|
|
|
|
2003-03-06 23:23:54 +00:00
|
|
|
CFLAGS=-Wall -O2 -g
|
2003-02-18 22:55:36 +00:00
|
|
|
LDFLAGS=-g
|
2003-02-18 23:35:48 +00:00
|
|
|
LIBS=
|
|
|
|
DEFINES=-DHAVE_BYTESWAP_H
|
2003-03-06 23:23:54 +00:00
|
|
|
|
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
CFLAGS+=-fomit-frame-pointer
|
2003-03-18 20:41:34 +00:00
|
|
|
OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
|
|
|
|
ifeq ($(GCC_MAJOR),3)
|
|
|
|
OP_CFLAGS+= -falign-functions=0
|
|
|
|
else
|
|
|
|
OP_CFLAGS+= -malign-functions=0
|
|
|
|
endif
|
2003-02-18 23:35:48 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),ppc)
|
2003-03-02 19:39:42 +00:00
|
|
|
OP_CFLAGS=$(CFLAGS)
|
2003-02-18 23:35:48 +00:00
|
|
|
endif
|
|
|
|
|
2003-03-18 20:41:34 +00:00
|
|
|
ifeq ($(GCC_MAJOR),3)
|
|
|
|
# very important to generate a return at the end of every operation
|
|
|
|
OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
|
|
|
|
endif
|
|
|
|
|
2003-02-18 23:35:48 +00:00
|
|
|
#########################################################
|
|
|
|
|
2003-03-03 14:32:43 +00:00
|
|
|
DEFINES+=-D_GNU_SOURCE
|
2003-02-18 23:35:48 +00:00
|
|
|
LDSCRIPT=$(ARCH).ld
|
2003-03-02 19:39:42 +00:00
|
|
|
LIBS+=-ldl -lm
|
2003-03-06 23:23:54 +00:00
|
|
|
|
|
|
|
# profiling code
|
|
|
|
ifdef TARGET_GPROF
|
|
|
|
LDFLAGS+=-p
|
2003-03-19 00:00:28 +00:00
|
|
|
main.o: CFLAGS+=-p
|
2003-03-06 23:23:54 +00:00
|
|
|
endif
|
2003-02-18 22:55:36 +00:00
|
|
|
|
2003-03-23 01:06:05 +00:00
|
|
|
OBJS= elfload.o main.o thunk.o syscall.o signal.o libgemu.a
|
2003-03-22 17:31:19 +00:00
|
|
|
|
|
|
|
LIBOBJS+=translate-i386.o op-i386.o exec-i386.o
|
2003-03-03 14:32:43 +00:00
|
|
|
# NOTE: the disassembler code is only needed for debugging
|
2003-03-22 17:31:19 +00:00
|
|
|
LIBOBJS+=i386-dis.o dis-buf.o
|
2003-02-18 22:55:36 +00:00
|
|
|
SRCS = $(OBJS:.o=.c)
|
|
|
|
|
|
|
|
all: gemu
|
|
|
|
|
|
|
|
gemu: $(OBJS)
|
2003-03-22 17:31:19 +00:00
|
|
|
$(CC) -Wl,-T,$(LDSCRIPT) $(LDFLAGS) -o $@ $^ $(LIBS)
|
2003-02-18 22:55:36 +00:00
|
|
|
|
|
|
|
depend: $(SRCS)
|
|
|
|
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
|
|
|
|
2003-03-22 17:31:19 +00:00
|
|
|
# libgemu
|
|
|
|
|
|
|
|
libgemu.a: $(LIBOBJS)
|
|
|
|
rm -f $@
|
|
|
|
$(AR) rcs $@ $(LIBOBJS)
|
|
|
|
|
2003-03-01 17:13:26 +00:00
|
|
|
dyngen: dyngen.c
|
|
|
|
$(HOST_CC) -O2 -Wall -g $< -o $@
|
|
|
|
|
|
|
|
translate-i386.o: translate-i386.c op-i386.h cpu-i386.h
|
|
|
|
|
|
|
|
op-i386.h: op-i386.o dyngen
|
|
|
|
./dyngen -o $@ $<
|
|
|
|
|
|
|
|
op-i386.o: op-i386.c opreg_template.h ops_template.h
|
2003-03-02 19:39:42 +00:00
|
|
|
$(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
|
2003-03-01 17:13:26 +00:00
|
|
|
|
2003-02-18 22:55:36 +00:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
|
|
|
|
|
|
|
|
clean:
|
2003-03-06 23:23:54 +00:00
|
|
|
$(MAKE) -C tests clean
|
2003-03-22 17:31:19 +00:00
|
|
|
rm -f *.o *.a *~ gemu dyngen TAGS
|
2003-02-18 22:55:36 +00:00
|
|
|
|
2003-03-06 23:23:54 +00:00
|
|
|
distclean: clean
|
|
|
|
rm -f config.mak config.h
|
|
|
|
|
2003-03-22 17:31:19 +00:00
|
|
|
install: gemu
|
|
|
|
install -m755 -s gemu $(prefix)/bin
|
|
|
|
|
2003-03-01 17:13:26 +00:00
|
|
|
# various test targets
|
|
|
|
test speed: gemu
|
|
|
|
make -C tests $@
|
2003-02-18 22:55:36 +00:00
|
|
|
|
2003-03-01 17:13:26 +00:00
|
|
|
TAGS:
|
|
|
|
etags *.[ch] i386/*.[ch]
|
2003-02-18 22:55:36 +00:00
|
|
|
|
2003-03-03 15:02:29 +00:00
|
|
|
FILES= \
|
|
|
|
COPYING.LIB dyngen.c ioctls.h ops_template.h syscall_types.h\
|
|
|
|
Makefile elf.h linux_bin.h segment.h thunk.c\
|
|
|
|
TODO elfload.c main.c signal.c thunk.h\
|
2003-03-19 00:05:32 +00:00
|
|
|
cpu-i386.h gemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\
|
2003-03-03 15:02:29 +00:00
|
|
|
dis-asm.h gen-i386.h op-i386.h syscall.c\
|
|
|
|
dis-buf.c i386-dis.c opreg_template.h syscall_defs.h\
|
2003-03-06 23:23:54 +00:00
|
|
|
i386.ld ppc.ld exec-i386.h exec-i386.c configure VERSION \
|
2003-03-05 22:24:48 +00:00
|
|
|
tests/Makefile\
|
2003-03-03 15:02:29 +00:00
|
|
|
tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
|
2003-03-22 17:31:19 +00:00
|
|
|
tests/test-i386-muldiv.h tests/test-i386-code16.S\
|
|
|
|
tests/hello.c tests/hello tests/sha1.c \
|
|
|
|
tests/testsig.c tests/testclone.c tests/testthread.c
|
2003-03-03 15:02:29 +00:00
|
|
|
|
|
|
|
FILE=gemu-$(VERSION)
|
|
|
|
|
|
|
|
tar:
|
|
|
|
rm -rf /tmp/$(FILE)
|
|
|
|
mkdir -p /tmp/$(FILE)
|
|
|
|
cp -P $(FILES) /tmp/$(FILE)
|
|
|
|
( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
|
|
|
|
rm -rf /tmp/$(FILE)
|
|
|
|
|
2003-02-18 22:55:36 +00:00
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|