From: chris Date: Mon, 27 Sep 1999 15:33:16 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=cacao.git;a=commitdiff_plain;h=2741dd74fe2ce50395129bf8dde165589a65b2a3 *** empty log message *** --- diff --git a/Makefile.am b/Makefile.am index 045714df4..31126a850 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 diff --git a/configure.in b/configure.in index 4f0f485ef..6606cbd16 100644 --- a/configure.in +++ b/configure.in @@ -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 index 000000000..d296d84df --- /dev/null +++ b/doc/Makefile.am @@ -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 index 000000000..482b09881 --- /dev/null +++ b/narray/Makefile.am @@ -0,0 +1 @@ +EXTRA_DIST = graph.c loop.c analyze.c tracing.c loop.h