From dbef2030737458e5053b6282635edc54f2cfa517 Mon Sep 17 00:00:00 2001 From: twisti Date: Mon, 6 Dec 2004 16:23:31 +0000 Subject: [PATCH] Use libtool. --- src/vm/jit/i386/Makefile.am | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/vm/jit/i386/Makefile.am b/src/vm/jit/i386/Makefile.am index 539a06e0c..286c78bbe 100644 --- a/src/vm/jit/i386/Makefile.am +++ b/src/vm/jit/i386/Makefile.am @@ -1,4 +1,4 @@ -## vm/jit/i386/Makefile.am +## src/vm/jit/i386/Makefile.am ## ## Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates, ## R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner, @@ -28,7 +28,7 @@ ## ## Changes: ## -## $Id: Makefile.am 1676 2004-12-03 16:52:15Z twisti $ +## $Id: Makefile.am 1714 2004-12-06 16:23:31Z twisti $ ## Process this file with automake to produce Makefile.in @@ -40,9 +40,10 @@ noinst_HEADERS = \ machine-instr.h \ types.h -noinst_LIBRARIES = libarch.a +noinst_LTLIBRARIES = libarch.la -libarch_a_SOURCES = \ +libarch_la_SOURCES = \ + asmoffsets.h \ asmpart.S \ codegen.c \ codegen.h \ @@ -55,7 +56,9 @@ libarch_a_SOURCES = \ i386-dis.c asmpart.o: asmpart.S $(top_srcdir)/config.h offsets.h - $(COMPILE) -c $< + +.S.lo: + $(LIBTOOL) --mode=compile $(COMPILE) -c $< offsets.h: $(top_srcdir)/src/vm/jit/tools/genoffsets $(top_srcdir)/config.h $(top_srcdir)/src/vm/global.h $(top_srcdir)/src/threads/native/threads.h $(top_srcdir)/src/vm/jit/tools/genoffsets > offsets.h -- 2.25.1