## src/lib/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., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. ## ## Contact: cacao@cacaojvm.org ## ## Authors: Christian Thalinger ## ## Changes: ## ## $Id: Makefile.am 5190 2006-07-31 12:28:23Z twisti $ ## Process this file with automake to produce Makefile.in EXTRA_DIST = \ $(VM_JAVA_FILES) CLEANFILES = vm.zip VM_JAVA_FILES = \ $(top_srcdir)/src/lib/vm/reference/gnu/classpath/VMStackWalker.java \ $(top_srcdir)/src/lib/vm/reference/gnu/java/lang/management/VMMemoryMXBeanImpl.java \ $(top_srcdir)/src/lib/vm/reference/gnu/java/lang/management/VMRuntimeMXBeanImpl.java \ $(top_srcdir)/src/lib/vm/reference/java/lang/VMClassLoader.java \ $(top_srcdir)/src/lib/vm/reference/java/lang/VMString.java \ $(top_srcdir)/src/lib/vm/reference/java/lang/VMThread.java \ $(top_srcdir)/src/lib/vm/reference/java/lang/VMThrowable.java \ $(top_srcdir)/src/lib/vm/reference/java/security/VMAccessController.java VM_CLASS_FILES = \ classes/gnu/classpath/VMStackWalker.class \ classes/gnu/java/lang/management/VMMemoryMXBeanImpl.class \ classes/gnu/java/lang/management/VMRuntimeMXBeanImpl.class \ classes/java/lang/VMClassLoader.class \ classes/java/lang/VMString.class \ classes/java/lang/VMThread.class \ classes/java/lang/VMThrowable.class \ classes/java/security/VMAccessController.class if ENABLE_ZLIB pkgdata_DATA = vm.zip VM_ZIP = ../vm.zip vm.zip: $(VM_JAVA_FILES) $(mkdir_p) classes $(JAVAC) -d classes $(VM_JAVA_FILES) @if test "$(JAR)" = "zip"; then \ cd classes && $(JAR) -r -D $(VM_ZIP) .; \ else \ cd classes && $(JAR) cvf $(VM_ZIP) .; \ fi else pkgdata_DATA = nozip nozip: $(VM_JAVA_FILES) $(mkdir_p) classes $(JAVAC) -d classes $(VM_JAVA_FILES) endif clean-local: -rm -rf classes ## Local variables: ## mode: Makefile ## indent-tabs-mode: t ## c-basic-offset: 4 ## tab-width: 8 ## compile-command: "automake --add-missing" ## End: