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