From: stefan Date: Thu, 13 Nov 2003 09:39:28 +0000 (+0000) Subject: more X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=cacao.git;a=commitdiff_plain;h=b9062822337f064fcdd8518dfea10754cb74ebf3 more --- diff --git a/Makefile.am b/Makefile.am index 0d2e1eefd..4bbbed2be 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -# $Id: Makefile.am 557 2003-11-02 22:51:59Z twisti $ +# $Id: Makefile.am 618 2003-11-13 09:39:28Z stefan $ @SET_MAKE@ @@ -14,6 +14,7 @@ EXTRA_DIST = \ html/cacaoman.html \ html/index.html \ jni.c \ + main.h \ natcalls.h \ nativecalls.h diff --git a/jit/Makefile.am b/jit/Makefile.am index f2b6f5e7b..6fec45451 100644 --- a/jit/Makefile.am +++ b/jit/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -# $Id: Makefile.am 617 2003-11-13 09:20:03Z stefan $ +# $Id: Makefile.am 618 2003-11-13 09:39:28Z stefan $ SUBDIRS = . loop @ARCH_DIR@ @@ -22,6 +22,14 @@ EXTRA_DIST = \ parseRTprint.h \ parseRTstats.c +noinst_HEADERS = \ + parse.h \ + stack.h \ + reg.h \ + inline.h \ + parseRT.h \ + parseRTstats.h + noinst_LIBRARIES = libjit.a libjit_a_SOURCES = jit.c parse.c stack.c inline.c sets.c parseRT.c parseRTstats.c diff --git a/jit/loop/Makefile.am b/jit/loop/Makefile.am index 23dc9413e..464ab393e 100644 --- a/jit/loop/Makefile.am +++ b/jit/loop/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -# $Id: Makefile.am 557 2003-11-02 22:51:59Z twisti $ +# $Id: Makefile.am 618 2003-11-13 09:39:28Z stefan $ INCLUDES = -I$(top_srcdir)/jit/@ARCH_DIR@ -I$(top_srcdir)/jit @@ -11,6 +11,11 @@ EXTRA_DIST = \ analyze.c \ tracing.c +noinst_HEADERS = \ + graph.h \ + analyze.h \ + tracing.h + noinst_LIBRARIES = libloop.a libloop_a_SOURCES = loop.c analyze.c graph.c tracing.c diff --git a/mm/Makefile.am b/mm/Makefile.am index 89ae48f12..341455c3e 100644 --- a/mm/Makefile.am +++ b/mm/Makefile.am @@ -1,11 +1,13 @@ ## Process this file with automake to produce Makefile.in -# $Id: Makefile.am 557 2003-11-02 22:51:59Z twisti $ +# $Id: Makefile.am 618 2003-11-13 09:39:28Z stefan $ SUBDIRS = boehm-gc noinst_LIBRARIES = libboehm.a +noinst_HEADERS = boehm.h + libboehm_a_SOURCES = boehm.c INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/jit -I$(top_srcdir)/jit/@ARCH_DIR@ -I./boehm-gc/include diff --git a/src/mm/Makefile.am b/src/mm/Makefile.am index 89ae48f12..341455c3e 100644 --- a/src/mm/Makefile.am +++ b/src/mm/Makefile.am @@ -1,11 +1,13 @@ ## Process this file with automake to produce Makefile.in -# $Id: Makefile.am 557 2003-11-02 22:51:59Z twisti $ +# $Id: Makefile.am 618 2003-11-13 09:39:28Z stefan $ SUBDIRS = boehm-gc noinst_LIBRARIES = libboehm.a +noinst_HEADERS = boehm.h + libboehm_a_SOURCES = boehm.c INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/jit -I$(top_srcdir)/jit/@ARCH_DIR@ -I./boehm-gc/include diff --git a/src/vm/jit/Makefile.am b/src/vm/jit/Makefile.am index f2b6f5e7b..6fec45451 100644 --- a/src/vm/jit/Makefile.am +++ b/src/vm/jit/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -# $Id: Makefile.am 617 2003-11-13 09:20:03Z stefan $ +# $Id: Makefile.am 618 2003-11-13 09:39:28Z stefan $ SUBDIRS = . loop @ARCH_DIR@ @@ -22,6 +22,14 @@ EXTRA_DIST = \ parseRTprint.h \ parseRTstats.c +noinst_HEADERS = \ + parse.h \ + stack.h \ + reg.h \ + inline.h \ + parseRT.h \ + parseRTstats.h + noinst_LIBRARIES = libjit.a libjit_a_SOURCES = jit.c parse.c stack.c inline.c sets.c parseRT.c parseRTstats.c diff --git a/src/vm/jit/loop/Makefile.am b/src/vm/jit/loop/Makefile.am index 23dc9413e..464ab393e 100644 --- a/src/vm/jit/loop/Makefile.am +++ b/src/vm/jit/loop/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -# $Id: Makefile.am 557 2003-11-02 22:51:59Z twisti $ +# $Id: Makefile.am 618 2003-11-13 09:39:28Z stefan $ INCLUDES = -I$(top_srcdir)/jit/@ARCH_DIR@ -I$(top_srcdir)/jit @@ -11,6 +11,11 @@ EXTRA_DIST = \ analyze.c \ tracing.c +noinst_HEADERS = \ + graph.h \ + analyze.h \ + tracing.h + noinst_LIBRARIES = libloop.a libloop_a_SOURCES = loop.c analyze.c graph.c tracing.c