*** empty log message ***
authorchris <none@none>
Mon, 27 Sep 1999 15:33:16 +0000 (15:33 +0000)
committerchris <none@none>
Mon, 27 Sep 1999 15:33:16 +0000 (15:33 +0000)
Makefile.am
configure.in
doc/Makefile.am [new file with mode: 0644]
narray/Makefile.am [new file with mode: 0644]

index 045714df4caf9e0d1d2d44a2309ed87db7bd57a0..31126a85023f0044c37f9d0afb5e97fb6bc273eb 100644 (file)
@@ -1,9 +1,9 @@
 ## Process this file with automake to produce Makefile.in
 
-# $Id: Makefile.am 128 1999-03-03 15:54:06Z phil $
+# $Id: Makefile.am 131 1999-09-27 15:33:16Z chris $
 
 MAINTAINERCLEANFILES = Makefile.in configure
-SUBDIRS = toolbox mm alpha jit comp nat threads mips tst doc
+SUBDIRS = toolbox mm alpha jit comp nat threads mips tst doc narray
 
 EXTRA_DIST = html/cacaoinstall.html html/cacaoman.html html/index.html
 
@@ -33,7 +33,7 @@ cacao_SOURCES = \
        native.c \
        native.h \
        tables.c \
-       tables.h
+       tables.h 
 
 EXTRA_cacao_SOURCES = \
        compiler.c \
@@ -92,17 +92,24 @@ nativetypes.hh @SYSDEP_DIR@/offsets.h nativetable.hh: cacaoh
                        @SYSDEP_DIR@/asmpart.s
        rm -f asmpart.s
 
-compiler.o: builtin.h compiler.h global.h loader.h tables.h native.h \
-            asmpart.h compiler.c comp/*.c \
-            @SYSDEP_DIR@/gen.c @SYSDEP_DIR@/disass.c
-       @CC@ $(CFLAGS) $(INCLUDES) -c compiler.c
+compiler.o: $(top_srcdir)/builtin.h $(top_srcdir)/compiler.h \
+                   $(top_srcdir)/global.h $(top_srcdir)/loader.h \
+               $(top_srcdir)/tables.h $(top_srcdir)/native.h \
+            $(top_srcdir)/asmpart.h $(top_srcdir)/compiler.c $(top_srcdir)/comp/*.c \
+            $(top_srcdir)/@SYSDEP_DIR@/gen.c $(top_srcdir)/@SYSDEP_DIR@/disass.c
+       @CC@ $(CFLAGS) -I. $(INCLUDES) -c $(top_srcdir)/compiler.c
 
 jit.o: jit.c \
        jit/mcode.c \
        jit/parse.c \
        jit/reg.c \
        jit/stack.c \
-       jit/jitdef.h
+       jit/jitdef.h \
+       narray/graph.c \
+       narray/loop.c \
+       narray/analyze.c \
+       narray/tracing.c \
+       narray/loop.h
 
 ## Local variables:
 ## mode: Makefile
index 4f0f485efcf7b13533713e06a429683dbb15c71e..6606cbd165aca2f912bdf6aacfd999309822adc6 100644 (file)
@@ -141,6 +141,7 @@ AC_OUTPUT(Makefile \
           alpha/Makefile \
           mips/Makefile \
           nat/Makefile \
+          doc/Makefile \
           comp/Makefile \
-         doc/Makefile \
+         narray/Makefile \
          tst/Makefile )
diff --git a/doc/Makefile.am b/doc/Makefile.am
new file mode 100644 (file)
index 0000000..d296d84
--- /dev/null
@@ -0,0 +1 @@
+EXTRA_DIST=collect.doc thread.tex cacao.1 gen.doc
\ No newline at end of file
diff --git a/narray/Makefile.am b/narray/Makefile.am
new file mode 100644 (file)
index 0000000..482b098
--- /dev/null
@@ -0,0 +1 @@
+EXTRA_DIST = graph.c loop.c analyze.c tracing.c loop.h