Makefile revision 5092
7418N/A#
7418N/A# Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
7418N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7418N/A#
7418N/A# This code is free software; you can redistribute it and/or modify it
7418N/A# under the terms of the GNU General Public License version 2 only, as
7418N/A# published by the Free Software Foundation. Oracle designates this
7418N/A# particular file as subject to the "Classpath" exception as provided
7418N/A# by Oracle in the LICENSE file that accompanied this code.
7418N/A#
7418N/A# This code is distributed in the hope that it will be useful, but WITHOUT
7418N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7418N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
7418N/A# version 2 for more details (a copy is included in the LICENSE file that
7418N/A# accompanied this code).
7418N/A#
7418N/A# You should have received a copy of the GNU General Public License version
7418N/A# 2 along with this work; if not, write to the Free Software Foundation,
7418N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7418N/A#
7418N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7418N/A# or visit www.oracle.com if you need additional information or have any
7418N/A# questions.
7418N/A#
7418N/A
7418N/A#
7418N/A# Makefile for building com/sun
7418N/A#
7418N/A
7418N/ABUILDDIR = ../..
7418N/APRODUCT = sun
7418N/Ainclude $(BUILDDIR)/common/Defs.gmk
7418N/A
7418N/Aifndef OPENJDK
7418N/A ORG_EXISTS := $(call DirExists,$(CLOSED_SRC)/share/classes/sun/org,,)
7418N/A ifneq ("$(ORG_EXISTS)", "")
7418N/A SCRIPT_SUBDIR = script
7418N/A endif
7418N/Aendif
7418N/A
7418N/A# jarsigner is part of JRE
7418N/ASUBDIRS = java security net/ssl jarsigner
7418N/A
7418N/ASUBDIRS_management = jmx
7418N/ASUBDIRS_desktop = image
7418N/ASUBDIRS_enterprise = crypto/provider jndi \
7418N/A org rowset net/httpserver
7418N/ASUBDIRS_misc = $(SCRIPT_SUBDIR) tracing servicetag nio demo
7418N/A
7418N/A# Omit mirror since it's built with the apt tool.
7418N/ASUBDIRS_tools = tools
7418N/A
7418N/Ainclude $(BUILDDIR)/common/Subdirs.gmk
7418N/A
7418N/Aall build clean clobber::
7418N/A $(SUBDIRS-loop)
7418N/A
7418N/A