* asmoffsets.h, disass.h: Removed if missed before.
[cacao.git] / src / vm / jit / alpha / Makefile.am
index 1484628df6cd5e6e33179d8d09bf580cba6f59c9..3d1643b014078be176e887d899d30f9d541e9d61 100644 (file)
@@ -1,30 +1,70 @@
+## src/vm/jit/alpha/Makefile.am
+##
+## Copyright (C) 1996-2005 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@complang.tuwien.ac.at
+##
+## Authors: Christian Thalinger
+##
+## Changes:
+##
+## $Id: Makefile.am 3765 2005-11-23 14:41:16Z twisti $
+
 ## Process this file with automake to produce Makefile.in
 
-# $Id: Makefile.am 1467 2004-11-08 13:13:00Z twisti $
+INCLUDES = -I$(top_srcdir)/src -I$(top_builddir) -I$(top_builddir)/src
 
+AM_CCASFLAGS = $(INCLUDES)
 
-INCLUDES = -I$(top_srcdir)
+BUILT_SOURCES = offsets.h
 
-EXTRA_DIST = \
-       asmpart.S \
-       disass.c \
-       disass.h \
-       native-math.h \
+CLEANFILES = offsets.h
+
+noinst_HEADERS = \
+       arch.h \
        machine-instr.h \
-       codegen.c \
-       codegen.h \
-       types.h
+       \
+       md-abi.inc \
+       md-asm.h
 
-noinst_LIBRARIES = libarch.a
+noinst_LTLIBRARIES = libarch.la
 
-libarch_a_SOURCES = asmpart.S codegen.c disass.c
+libarch_la_SOURCES = \
+       asmpart.S \
+       codegen.c \
+       codegen.h \
+       disass.c \
+       patcher.c \
+       \
+       md-abi.c \
+       md-abi.h \
+       md.c \
+       md.h
 
-asmpart.o: asmpart.S $(top_srcdir)/config.h offsets.h
-       $(COMPILE) -c $<
+$(srcdir)/asmpart.S: $(top_builddir)/config.h offsets.h
 
-offsets.h: $(top_srcdir)/config.h $(top_srcdir)/global.h $(top_srcdir)/threads/thread.h
-       $(COMPILE) -o $(top_srcdir)/genoffsets $(top_srcdir)/genoffsets.c
-       $(top_srcdir)/genoffsets > offsets.h
+offsets.h: $(top_builddir)/src/vm/jit/tools/genoffsets $(top_builddir)/config.h
+       $(top_builddir)/src/vm/jit/tools/genoffsets > offsets.h
 
 
 ## Local variables: