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