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