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