X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fvm%2Fjit%2FMakefile.am;h=7834c9ab118f343d076642b8a094669445540777;hb=c820f5bbac4a3f5f54e2f9bda87b140366f32a86;hp=81818fdef388d74afc86cebc8fda4dd741e9002f;hpb=bc81bbd861c41dd3d2d93b7b2a79197faeb4f9cc;p=cacao.git diff --git a/src/vm/jit/Makefile.am b/src/vm/jit/Makefile.am index 81818fdef..7834c9ab1 100644 --- a/src/vm/jit/Makefile.am +++ b/src/vm/jit/Makefile.am @@ -1 +1,47 @@ -EXTRA_DIST = mcode.c parse.c reg.c stack.c jitdef.h parseRT.h +## Process this file with automake to produce Makefile.in + +# $Id: Makefile.am 696 2003-12-06 20:10:05Z edwin $ + + +SUBDIRS = . loop @ARCH_DIR@ +DIST_SUBDIRS = loop alpha i386 mips powerpc x86_64 + +INCLUDES = -I$(top_srcdir)/jit/@ARCH_DIR@ -I$(top_srcdir)/jit + +EXTRA_DIST = \ + jit.c \ + jit.h \ + codegen.inc \ + parse.c \ + reg.inc \ + stack.c \ + inline.c \ + sets.c \ + sets.h \ + parseRT.c \ + parseRTprint.h \ + parseRTstats.c \ + typecheck.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 typecheck.c + +all-local: + $(MAKE) $(AM_MAKEFLAGS) -C .. jit/@ARCH_DIR@/offsets.h + +## Local variables: +## mode: Makefile +## indent-tabs-mode: t +## c-basic-offset: 4 +## tab-width: 8 +## compile-command: "automake --add-missing" +## End: