* configure.ac (AC_CONFIG_FILES): Added
authortwisti <none@none>
Tue, 2 Jan 2007 21:52:43 +0000 (21:52 +0000)
committertwisti <none@none>
Tue, 2 Jan 2007 21:52:43 +0000 (21:52 +0000)
src/vm/jit/parisc/linux/Makefile.
* src/vm/jit/parisc/Makefile.am (SUBDIRS): Set to $(OS_DIR).
* src/vm/jit/parisc/linux/Makefile.am: New file.

configure.ac
src/vm/jit/parisc/Makefile.am
src/vm/jit/parisc/linux/Makefile.am [new file with mode: 0644]

index 2ddbdf87dfcaa2bd7791feda8db7f659529205f8..81448f96f32a5c4da82c51a8c430fe1ed84cc130 100644 (file)
@@ -1010,8 +1010,9 @@ AC_CONFIG_FILES([Makefile]
                [src/vm/jit/mips/Makefile]
                [src/vm/jit/mips/irix/Makefile]
                [src/vm/jit/mips/linux/Makefile]
-                [src/vm/jit/optimizing/Makefile]
+               [src/vm/jit/optimizing/Makefile]
                [src/vm/jit/parisc/Makefile]
+               [src/vm/jit/parisc/linux/Makefile]
                [src/vm/jit/powerpc/Makefile]
                [src/vm/jit/powerpc/darwin/Makefile]
                [src/vm/jit/powerpc/linux/Makefile]
index 270e0238f2a234f31bb574d4589d3d5baba4a1f6..c22eaba43946b5fc015a14736551882ffd6c57aa 100644 (file)
@@ -1,6 +1,6 @@
 ## src/vm/jit/parisc/Makefile.am
 ##
-## Copyright (C) 2006 R. Grafl, A. Krall, C. Kruegel,
+## Copyright (C) 2006, 2007 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
@@ -26,8 +26,6 @@
 ##
 ## Authors: Christian Thalinger
 ##
-## Changes:
-##
 ## $Id: Makefile.am 4826 2006-04-24 16:06:16Z twisti $
 
 ## Process this file with automake to produce Makefile.in
@@ -35,8 +33,7 @@
 DIST_SUBDIRS = \
        linux
 
-#SUBDIRS = $(OS_DIR)
-SUBDIRS =
+SUBDIRS = $(OS_DIR)
 
 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir) -I$(top_builddir)/src
 AM_CCASFLAGS = $(AM_CPPFLAGS)
diff --git a/src/vm/jit/parisc/linux/Makefile.am b/src/vm/jit/parisc/linux/Makefile.am
new file mode 100644 (file)
index 0000000..708faae
--- /dev/null
@@ -0,0 +1,50 @@
+## src/vm/jit/parisc/linux/Makefile.am
+##
+## Copyright (C) 2007 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., 51 Franklin Street, Fifth Floor, Boston, MA
+## 02110-1301, USA.
+##
+## Contact: cacao@cacaojvm.org
+##
+## Authors: Christian Thalinger
+##
+## $Id: Makefile.am 4563 2006-03-06 13:03:05Z twisti $
+
+## Process this file with automake to produce Makefile.in
+
+AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)
+
+LIBS =
+
+noinst_HEADERS =
+
+noinst_LTLIBRARIES =
+
+libmd_la_SOURCES =
+
+
+## Local variables:
+## mode: Makefile
+## indent-tabs-mode: t
+## c-basic-offset: 4
+## tab-width: 8
+## compile-command: "automake --add-missing"
+## End: