Makefile revision 3510
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw#
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw#
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# This code is free software; you can redistribute it and/or modify it
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# under the terms of the GNU General Public License version 2 only, as
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# published by the Free Software Foundation. Oracle designates this
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# particular file as subject to the "Classpath" exception as provided
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# by Oracle in the LICENSE file that accompanied this code.
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw#
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# This code is distributed in the hope that it will be useful, but WITHOUT
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# version 2 for more details (a copy is included in the LICENSE file that
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# accompanied this code).
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw#
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# You should have received a copy of the GNU General Public License version
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# 2 along with this work; if not, write to the Free Software Foundation,
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw#
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# or visit www.oracle.com if you need additional information or have any
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# questions.
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw#
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw#
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# Makefile for building all of sun tools
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw#
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xwBUILDDIR = ..
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xwPRODUCT = sun
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xwinclude $(BUILDDIR)/common/Defs.gmk
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# Rhino/Mozilla java sources
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xwORG_EXISTS := $(call DirExists,$(CLOSED_SRC)/share/classes/sun/org,,)
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xwifneq ("$(ORG_EXISTS)", "")
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw ORG_SUBDIR = org
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xwendif
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw# Non windows subdirs
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xwifneq ($(PLATFORM), windows)
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw ifndef OPENJDK
d39a76e7b087a3d0927cbe6898dc0a6770fa6c68xw ifeq ($(PLATFORM), solaris)
ifneq ($(ARCH), amd64)
# Solaris 11 does not have support for new compilation of DGA code.
OS_VERSION = $(shell uname -r)
OS_MAJOR_VERSION := $(call MajorVersion,$(OS_VERSION))
OS_MINOR_VERSION := $(call MinorVersion,$(OS_VERSION))
ifeq ($(shell $(EXPR) $(OS_MAJOR_VERSION) == 5), 1)
ifeq ($(shell $(EXPR) $(OS_MINOR_VERSION) \<= 10), 1)
DGA_SUBDIR = jdga
endif
endif
endif
endif
endif
HEADLESS_SUBDIR = headless
XAWT_SUBDIR = xawt
endif
ifndef OPENJDK
JDBC_SUBDIR = jdbc
endif
ifdef OPENJDK
RENDER_SUBDIR = pisces
else
RENDER_SUBDIR = dcpr
endif
# nio need to be compiled before awt to have all charsets ready
SUBDIRS = jar security javazic misc net nio text launcher
SUBDIRS_desktop = audio $(RENDER_SUBDIR) image \
awt splashscreen $(XAWT_SUBDIR) \
$(HEADLESS_SUBDIR) $(DGA_SUBDIR) \
jawt font jpeg cmm applet beans
SUBDIRS_management = management
SUBDIRS_misc = $(ORG_SUBDIR) rmi $(JDBC_SUBDIR) tracing
SUBDIRS_tools = native2ascii serialver tools jconsole
include $(BUILDDIR)/common/Subdirs.gmk
all build clean clobber::
$(SUBDIRS-loop)