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