Makefile revision 6046
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
5680N/A# questions.
236N/A#
5680N/A
236N/A#
236N/A# Makefile for building com/sun
236N/A#
5953N/A
236N/ABUILDDIR = ../..
236N/APRODUCT = sun
844N/Ainclude $(BUILDDIR)/common/Defs.gmk
5953N/A
5953N/Aifndef OPENJDK
236N/A ORG_EXISTS := $(call DirExists,$(CLOSED_SRC)/share/classes/sun/org,,)
5953N/A ifneq ("$(ORG_EXISTS)", "")
2899N/A SCRIPT_SUBDIR = script
5680N/A endif
5680N/Aendif
236N/A
236N/A# jarsigner is part of JRE
236N/ASUBDIRS = java security net/ssl jarsigner
5935N/A
5935N/ASUBDIRS_management = jmx
5935N/ASUBDIRS_desktop = image
5935N/ASUBDIRS_enterprise = crypto/provider jndi \
236N/A org rowset net/httpserver
236N/ASUBDIRS_misc = $(SCRIPT_SUBDIR) tracing nio demo
5953N/A
5953N/A# Omit mirror since it's built with the apt tool.
5953N/ASUBDIRS_tools = tools
3817N/A
5092N/Ainclude $(BUILDDIR)/common/Subdirs.gmk
3817N/A
5008N/Aall build clean clobber::
5795N/A $(SUBDIRS-loop)
3817N/A
3817N/A