Makefile revision 1258
3837N/A#
3837N/A# Copyright 1997-2003 Sun Microsystems, Inc. All Rights Reserved.
3837N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3837N/A#
3837N/A# This code is free software; you can redistribute it and/or modify it
3837N/A# under the terms of the GNU General Public License version 2 only, as
3837N/A# published by the Free Software Foundation. Sun designates this
3837N/A# particular file as subject to the "Classpath" exception as provided
3837N/A# by Sun in the LICENSE file that accompanied this code.
3837N/A#
3837N/A# This code is distributed in the hope that it will be useful, but WITHOUT
3837N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3837N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
3837N/A# version 2 for more details (a copy is included in the LICENSE file that
3837N/A# accompanied this code).
3837N/A#
3837N/A# You should have received a copy of the GNU General Public License version
3837N/A# 2 along with this work; if not, write to the Free Software Foundation,
3837N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3837N/A#
3837N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
3837N/A# CA 95054 USA or visit www.sun.com if you need additional information or
3837N/A# have any questions.
3837N/A#
3837N/A
3837N/A#
3837N/A# Makefile for building the old java compiler.
3837N/A#
3837N/A
3837N/ABUILDDIR = ../../..
3837N/APRODUCT = oldjavac
3837N/A
3837N/Ainclude $(BUILDDIR)/common/Defs.gmk
3837N/A
3837N/A#
3837N/A# Files to compile.
3837N/A#
3837N/Ainclude FILES_java.gmk
3837N/A
3837N/A#
3837N/A# Resources
3837N/A#
3837N/ALOCALE_SET_DEFINITION = j2sdk
3837N/ARESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = sun/tools/javac/resources/javac.properties
3837N/A
3837N/A#
3837N/A# Rules
3837N/A#
3837N/Ainclude $(BUILDDIR)/common/Classes.gmk
3837N/A
3837N/Aclean clobber::
3837N/A $(RM) -r $(CLASSBINDIR)/sun/tools/asm
3837N/A $(RM) -r $(CLASSBINDIR)/sun/tools/java
3837N/A $(RM) -r $(CLASSBINDIR)/sun/tools/javac
3837N/A $(RM) -r $(CLASSBINDIR)/sun/tools/tree
3837N/A $(RM) -r $(CLASSBINDIR)/sun/tools/util
3837N/A
3837N/A