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