2003-03-07 00:23:54 +01:00
|
|
|
include config.mak
|
2003-02-19 00:35:48 +01:00
|
|
|
|
2003-03-07 00:23:54 +01:00
|
|
|
CFLAGS=-Wall -O2 -g
|
2003-02-18 23:55:36 +01:00
|
|
|
LDFLAGS=-g
|
2003-02-19 00:35:48 +01:00
|
|
|
LIBS=
|
|
|
|
DEFINES=-DHAVE_BYTESWAP_H
|
2003-03-07 00:23:54 +01:00
|
|
|
|
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
CFLAGS+=-fomit-frame-pointer
|
2003-03-18 21:41:34 +01: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-04-07 23:35:21 +02:00
|
|
|
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
|
|
|
|
# that the kernel ELF loader considers as an executable. I think this
|
|
|
|
# is the simplest way to make it self virtualizable!
|
|
|
|
LDFLAGS+=-Wl,-shared
|
2003-02-19 00:35:48 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),ppc)
|
2003-03-02 20:39:42 +01:00
|
|
|
OP_CFLAGS=$(CFLAGS)
|
2003-04-07 23:35:21 +02:00
|
|
|
LDFLAGS+=-Wl,-T,ppc.ld
|
2003-02-19 00:35:48 +01:00
|
|
|
endif
|
|
|
|
|
2003-03-30 22:59:46 +02:00
|
|
|
ifeq ($(ARCH),s390)
|
|
|
|
OP_CFLAGS=$(CFLAGS)
|
2003-04-07 23:35:21 +02:00
|
|
|
LDFLAGS+=-Wl,-T,s390.ld
|
2003-03-30 22:59:46 +02:00
|
|
|
endif
|
|
|
|
|
2003-04-29 23:24:00 +02:00
|
|
|
ifeq ($(ARCH),alpha)
|
|
|
|
# Ensure there's only a single GP
|
|
|
|
CFLAGS += -msmall-data -msmall-text
|
|
|
|
# FIXME Too lazy to deal with gprelhigh/gprellow for now, inhibit them
|
|
|
|
OP_CFLAGS=$(CFLAGS) -mno-explicit-relocs
|
|
|
|
LDFLAGS+=-Wl,-T,alpha.ld
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),ia64)
|
|
|
|
OP_CFLAGS=$(CFLAGS)
|
|
|
|
endif
|
|
|
|
|
2003-03-18 21:41:34 +01: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-19 00:35:48 +01:00
|
|
|
#########################################################
|
|
|
|
|
2003-03-03 15:32:43 +01:00
|
|
|
DEFINES+=-D_GNU_SOURCE
|
2003-03-23 21:17:16 +01:00
|
|
|
LIBS+=-lm
|
2003-03-07 00:23:54 +01:00
|
|
|
|
|
|
|
# profiling code
|
|
|
|
ifdef TARGET_GPROF
|
|
|
|
LDFLAGS+=-p
|
2003-03-19 01:00:28 +01:00
|
|
|
main.o: CFLAGS+=-p
|
2003-03-07 00:23:54 +01:00
|
|
|
endif
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-04-11 03:12:28 +02:00
|
|
|
OBJS= elfload.o main.o syscall.o signal.o path.o
|
2003-03-23 21:17:16 +01:00
|
|
|
SRCS:= $(OBJS:.o=.c)
|
|
|
|
OBJS+= libqemu.a
|
2003-03-22 18:31:19 +01:00
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o
|
2003-03-03 15:32:43 +01:00
|
|
|
# NOTE: the disassembler code is only needed for debugging
|
2003-04-29 22:41:16 +02:00
|
|
|
LIBOBJS+=disas.o ppc-dis.o i386-dis.o dis-buf.o
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-04-29 23:24:00 +02:00
|
|
|
ifeq ($(ARCH),ia64)
|
|
|
|
OBJS += ia64-syscall.o
|
|
|
|
endif
|
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
all: qemu qemu-doc.html
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
qemu: $(OBJS)
|
2003-04-07 23:35:21 +02:00
|
|
|
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
|
2003-02-18 23:55:36 +01:00
|
|
|
|
|
|
|
depend: $(SRCS)
|
|
|
|
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
# libqemu
|
2003-03-22 18:31:19 +01:00
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
libqemu.a: $(LIBOBJS)
|
2003-03-22 18:31:19 +01:00
|
|
|
rm -f $@
|
|
|
|
$(AR) rcs $@ $(LIBOBJS)
|
|
|
|
|
2003-03-01 18:13:26 +01: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 20:39:42 +01:00
|
|
|
$(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
|
2003-03-01 18:13:26 +01:00
|
|
|
|
2003-02-18 23:55:36 +01:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
|
|
|
|
|
|
|
|
clean:
|
2003-03-07 00:23:54 +01:00
|
|
|
$(MAKE) -C tests clean
|
2003-03-23 21:17:16 +01:00
|
|
|
rm -f *.o *.a *~ qemu dyngen TAGS
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-03-07 00:23:54 +01:00
|
|
|
distclean: clean
|
|
|
|
rm -f config.mak config.h
|
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
install: qemu
|
|
|
|
install -m 755 -s qemu $(prefix)/bin
|
2003-03-22 18:31:19 +01:00
|
|
|
|
2003-03-01 18:13:26 +01:00
|
|
|
# various test targets
|
2003-03-23 21:17:16 +01:00
|
|
|
test speed: qemu
|
2003-03-01 18:13:26 +01:00
|
|
|
make -C tests $@
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-03-01 18:13:26 +01:00
|
|
|
TAGS:
|
2003-04-29 22:41:16 +02:00
|
|
|
etags *.[ch] tests/*.[ch]
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
# documentation
|
|
|
|
qemu-doc.html: qemu-doc.texi
|
|
|
|
texi2html -monolithic -number $<
|
|
|
|
|
2003-03-03 16:02:29 +01:00
|
|
|
FILES= \
|
2003-03-30 22:59:46 +02:00
|
|
|
README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
|
|
|
|
dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\
|
2003-04-10 02:03:40 +02:00
|
|
|
Makefile elf.h thunk.c\
|
2003-03-23 21:17:16 +01:00
|
|
|
elfload.c main.c signal.c thunk.h\
|
2003-03-30 22:59:46 +02:00
|
|
|
cpu-i386.h qemu.h op-i386.c opc-i386.h syscall-i386.h translate-i386.c\
|
2003-04-07 23:35:21 +02:00
|
|
|
dis-asm.h gen-i386.h syscall.c\
|
2003-04-29 22:41:16 +02:00
|
|
|
dis-buf.c disas.c disas.h ppc-dis.c i386-dis.c opreg_template.h syscall_defs.h\
|
2003-04-11 03:12:28 +02:00
|
|
|
ppc.ld s390.ld exec-i386.h exec-i386.c path.c configure \
|
2003-03-05 23:24:48 +01:00
|
|
|
tests/Makefile\
|
2003-03-03 16:02:29 +01:00
|
|
|
tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\
|
2003-03-22 18:31:19 +01:00
|
|
|
tests/test-i386-muldiv.h tests/test-i386-code16.S\
|
|
|
|
tests/hello.c tests/hello tests/sha1.c \
|
2003-03-23 21:17:16 +01:00
|
|
|
tests/testsig.c tests/testclone.c tests/testthread.c \
|
2003-03-30 22:59:46 +02:00
|
|
|
tests/runcom.c tests/pi_10.com \
|
2003-04-11 03:12:28 +02:00
|
|
|
tests/test_path.c \
|
2003-03-23 21:17:16 +01:00
|
|
|
qemu-doc.texi qemu-doc.html
|
2003-03-03 16:02:29 +01:00
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
FILE=qemu-$(VERSION)
|
2003-03-03 16:02:29 +01:00
|
|
|
|
|
|
|
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-03-24 22:58:34 +01:00
|
|
|
# generate a binary distribution including the test binary environnment
|
|
|
|
BINPATH=/usr/local/qemu-i386
|
|
|
|
|
|
|
|
tarbin:
|
2003-04-11 03:12:28 +02:00
|
|
|
tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
|
|
|
|
$(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
|
|
|
|
tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
|
|
|
|
$(BINPATH)/wine
|
2003-03-24 22:58:34 +01:00
|
|
|
|
2003-02-18 23:55:36 +01:00
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|