X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=Makefile.am;h=069cd4fe1196f180db2fe4ff65cc1ed96980fa5d;hb=03349a3953e0f217d686d88b99fa176509a27559;hp=e56350ea1080e52b65b4f486c8499f6d1a35bbc7;hpb=3551ef4a232d78ac8fe33cbb3509f80c40184ff3;p=cacao.git diff --git a/Makefile.am b/Makefile.am index e56350ea1..069cd4fe1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,105 +1,55 @@ -## Process this file with automake to produce Makefile.in - -# $Id: Makefile.am 124 1999-01-28 19:49:32Z phil $ +## Makefile.am +## +## Copyright (C) 1996-2005, 2006, 2008 +## CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO +## +## This file is part of CACAO. +## +## This program is free software; you can redistribute it and/or +## modify it under the terms of the GNU General Public License as +## published by the Free Software Foundation; either version 2, or (at +## your option) any later version. +## +## This program is distributed in the hope that it will be useful, but +## WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +## 02111-1307, USA. + + +ACLOCAL_AMFLAGS = -I m4 MAINTAINERCLEANFILES = Makefile.in configure -SUBDIRS = toolbox mm alpha jit comp nat threads mips tst doc - -EXTRA_DIST = html/cacaoinstall.html html/cacaoman.html html/index.html \ - -CLEANFILES = @SYSDEP_DIR@/asmpart.o \ - @SYSDEP_DIR@/asmpart.s \ - @SYSDEP_DIR@/offsets.h \ - nativetable.hh \ - nativetypes.hh - -bin_PROGRAMS = cacao -noinst_PROGRAMS = cacaoh - -INCLUDES=-I/usr/include -I$(top_srcdir)/@SYSDEP_DIR@ -I$(top_srcdir)/jit -I@SYSDEP_DIR@ -I$(top_srcdir) - -cacao_SOURCES = \ - asmpart.h \ - builtin.c \ - builtin.h \ - callargs.h \ - @COMPILER_SOURCES@ \ - global.h \ - jit.c \ - jit.h \ - loader.c \ - loader.h \ - main.c \ - native.c \ - native.h \ - tables.c \ - tables.h - -EXTRA_cacao_SOURCES = compiler.c compiler.h - -cacao_LDADD = \ - @SYSDEP_DIR@/asmpart.o \ - @COMPILER_OBJECTS@ \ - toolbox/libtoolbox.a \ - @GC_OBJ@ \ - @THREAD_OBJ@ - -cacao_DEPENDENCIES = \ - @SYSDEP_DIR@/asmpart.o \ - @COMPILER_OBJECTS@ \ - toolbox/libtoolbox.a \ - @GC_OBJ@ \ - @THREAD_OBJ@ - -cacaoh_SOURCES = headers.c tables.c loader.c builtin.c -cacaoh_LDADD = toolbox/libtoolbox.a @GC_OBJ@ @THREAD_OBJ@ -cacaoh_DEPENDENCIES = toolbox/libtoolbox.a @GC_OBJ@ @THREAD_OBJ@ - -native.c: nativetypes.hh @SYSDEP_DIR@/offsets.h nativetable.hh - -nativetypes.hh @SYSDEP_DIR@/offsets.h nativetable.hh: cacaoh - ./cacaoh \ - java.lang.Object \ - java.lang.String \ - java.lang.Class \ - java.lang.ClassLoader \ - java.lang.Compiler \ - java.lang.Double \ - java.lang.Float \ - java.lang.Math \ - java.lang.Runtime \ - java.lang.SecurityManager \ - java.lang.System \ - java.lang.Thread \ - java.lang.ThreadGroup \ - java.lang.Throwable \ - java.io.File \ - java.io.FileDescriptor \ - java.io.FileInputStream \ - java.io.FileOutputStream \ - java.io.PrintStream \ - java.io.RandomAccessFile \ - java.util.Properties \ - java.util.Date - -@SYSDEP_DIR@/asmpart.o: $(top_srcdir)/@SYSDEP_DIR@/asmpart.c @SYSDEP_DIR@/offsets.h - rm -f @SYSDEP_DIR@/asmpart.s - @CPP@ $(INCLUDES) $(top_srcdir)/@SYSDEP_DIR@/asmpart.c \ - > @SYSDEP_DIR@/asmpart.s - @CC@ $(CFLAGS) $(INCLUDES) -c -o @SYSDEP_DIR@/asmpart.o \ - @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 +SUBDIRS = \ + contrib \ + doc \ + man \ + src \ + tests + +EXTRA_DIST = \ + ChangeLog-1998 \ + ChangeLog-1999 \ + ChangeLog-2000 \ + ChangeLog-2001 \ + ChangeLog-2002 \ + ChangeLog-2003 \ + ChangeLog-2004 \ + ChangeLog-2005 \ + ChangeLog-2006 \ + ChangeLog-2007 \ + THIRDPARTY ## Local variables: ## mode: Makefile ## indent-tabs-mode: t ## c-basic-offset: 4 -## tab-width: 4 +## tab-width: 8 ## compile-command: "automake --add-missing" ## End: