* Updated header: Added 2006. Changed address of FSF. Changed email
[cacao.git] / Makefile.am
index ba763581f4997752038788e8da5052e3918cfb96..f5bfe2720fd9cb2461849530582e3514747df134 100644 (file)
@@ -1,97 +1,57 @@
+## Makefile.am
+##
+## Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
+## C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+## E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+## J. Wenninger, Institut f. Computersprachen - TU Wien
+##
+## 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.
+##
+## Contact: cacao@cacaojvm.org
+##
+## Authors: Christian Thalinger
+##
+## Changes:
+##
+## $Id: Makefile.am 4357 2006-01-22 23:33:38Z twisti $
+
 ## Process this file with automake to produce Makefile.in
 
-# $Id: Makefile.am 115 1999-01-20 01:52:45Z phil $
+ACLOCAL_AMFLAGS = -I m4
 
 MAINTAINERCLEANFILES = Makefile.in configure
-SUBDIRS = toolbox mm alpha jit nat comp threads mips
-
-EXTRA_DIST = html/cacaoinstall.html html/cacaoman.html html/index.html \
-                        doc/cacao.1
-
-CLEANFILES = @SYSDEP_DIR@/asmpart.o \
-                        @SYSDEP_DIR@/asmpart.s \
-             @SYSDEP_DIR@/offsets.h \
-                nativetable.hh \
-                nativetypes.hh
-
-bin_PROGRAMS = cacao
-noinst_PROGRAMS = cacaoh
-man_MANS = doc/cacao.1
-
-INCLUDES=-I/usr/include -I$(top_srcdir)/@SYSDEP_DIR@ -I$(top_srcdir)/jit
-
-cacao_SOURCES = \
-       asmpart.h \
-       builtin.c \
-       builtin.h \
-       callargs.h \
-       compiler.c \
-       compiler.h \
-       global.h \
-       jit.c \
-       jit.h \
-       loader.c \
-       loader.h \
-       main.c \
-       native.c \
-       native.h \
-       tables.c \
-       tables.h
-
-cacao_LDADD = \
-       @SYSDEP_DIR@/asmpart.o \
-       toolbox/libtoolbox.a \
-       @GC_OBJ@ \
-    @THREAD_OBJ@
-
-cacao_DEPENDENCIES = \
-       @SYSDEP_DIR@/asmpart.o \
-       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@ $(top_srcdir)/@SYSDEP_DIR@/asmpart.c > @SYSDEP_DIR@/asmpart.s
-       @CC@ -c -o @SYSDEP_DIR@/asmpart.o @SYSDEP_DIR@/asmpart.s
-       rm -f asmpart.s
+SUBDIRS = contrib doc man src tests
 
+EXTRA_DIST = \
+       ChangeLog-1998 \
+       ChangeLog-1999 \
+       ChangeLog-2000 \
+       ChangeLog-2001 \
+       ChangeLog-2002 \
+       ChangeLog-2003 \
+       ChangeLog-2004 \
+       ChangeLog-2005
 
 ## Local variables:
 ## mode: Makefile
 ## indent-tabs-mode: t
 ## c-basic-offset: 4
-## tab-width: 4
+## tab-width: 8
 ## compile-command: "automake --add-missing"
 ## End: