From 612384d77146639cebdc9b71c87ee4a94bf44501 Mon Sep 17 00:00:00 2001 From: bellard Date: Sat, 22 Mar 2003 17:31:19 +0000 Subject: [PATCH] added libgemu.a build git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@39 c046a42c-6fe2-441c-8c8c-71466251a162 --- Makefile | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 7f0f8be2b..ea67590c3 100644 --- a/Makefile +++ b/Makefile @@ -36,21 +36,27 @@ LDFLAGS+=-p main.o: CFLAGS+=-p endif -OBJS= elfload.o main.o thunk.o syscall.o -OBJS+=translate-i386.o op-i386.o exec-i386.o +OBJS= elfload.o main.o thunk.o syscall.o libgemu.a + +LIBOBJS+=translate-i386.o op-i386.o exec-i386.o # NOTE: the disassembler code is only needed for debugging -OBJS+=i386-dis.o dis-buf.o +LIBOBJS+=i386-dis.o dis-buf.o SRCS = $(OBJS:.o=.c) all: gemu gemu: $(OBJS) - $(CC) -Wl,-T,$(LDSCRIPT) $(LDFLAGS) -o $@ $^ $(LIBS) + $(CC) -Wl,-T,$(LDSCRIPT) $(LDFLAGS) -o $@ $^ $(LIBS) depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend -# new i386 emulator +# libgemu + +libgemu.a: $(LIBOBJS) + rm -f $@ + $(AR) rcs $@ $(LIBOBJS) + dyngen: dyngen.c $(HOST_CC) -O2 -Wall -g $< -o $@ @@ -67,11 +73,14 @@ op-i386.o: op-i386.c opreg_template.h ops_template.h clean: $(MAKE) -C tests clean - rm -f *.o *~ gemu dyngen TAGS + rm -f *.o *.a *~ gemu dyngen TAGS distclean: clean rm -f config.mak config.h +install: gemu + install -m755 -s gemu $(prefix)/bin + # various test targets test speed: gemu make -C tests $@ @@ -89,8 +98,9 @@ dis-buf.c i386-dis.c opreg_template.h syscall_defs.h\ i386.ld ppc.ld exec-i386.h exec-i386.c configure VERSION \ tests/Makefile\ tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\ -tests/test-i386-muldiv.h\ -tests/test2.c tests/hello.c tests/hello tests/sha1.c +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 FILE=gemu-$(VERSION) -- 2.39.2