Makefile revision 618
279N/A#
279N/A# Copyright 1995-2007 Sun Microsystems, Inc. All Rights Reserved.
279N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
279N/A#
279N/A# This code is free software; you can redistribute it and/or modify it
279N/A# under the terms of the GNU General Public License version 2 only, as
279N/A# published by the Free Software Foundation. Sun designates this
279N/A# particular file as subject to the "Classpath" exception as provided
279N/A# by Sun in the LICENSE file that accompanied this code.
279N/A#
279N/A# This code is distributed in the hope that it will be useful, but WITHOUT
279N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
279N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
279N/A# version 2 for more details (a copy is included in the LICENSE file that
279N/A# accompanied this code).
279N/A#
279N/A# You should have received a copy of the GNU General Public License version
279N/A# 2 along with this work; if not, write to the Free Software Foundation,
279N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
279N/A#
279N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
279N/A# CA 95054 USA or visit www.sun.com if you need additional information or
279N/A# have any questions.
279N/A#
279N/A
279N/A#
279N/A# Makefile for building all of sun tools
279N/A#
279N/A
279N/ABUILDDIR = ..
279N/APRODUCT = sun
279N/Ainclude $(BUILDDIR)/common/Defs.gmk
279N/A
279N/A# Rhino/Mozilla java sources
279N/AORG_EXISTS := $(call DirExists,$(CLOSED_SRC)/share/classes/sun/org,,)
279N/Aifneq ("$(ORG_EXISTS)", "")
279N/A ORG_SUBDIR = org
279N/Aendif
279N/A
279N/A# Non windows subdirs
279N/Aifneq ($(PLATFORM), windows)
279N/A ifndef OPENJDK
279N/A ifeq ($(PLATFORM), solaris)
279N/A ifneq ($(ARCH), amd64)
279N/A DGA_SUBDIR = jdga
279N/A endif
279N/A endif
279N/A endif
279N/A HEADLESS_SUBDIR = headless
279N/A XAWT_SUBDIR = xawt
279N/Aendif
279N/A
279N/Aifndef OPENJDK
279N/A JDBC_SUBDIR = jdbc
279N/Aendif
279N/Aifdef OPENJDK
279N/A RENDER_SUBDIR = pisces
279N/Aelse
279N/A RENDER_SUBDIR = dcpr
279N/Aendif
279N/ASUBDIRS = jar security javazic misc net audio $(RENDER_SUBDIR) image \
279N/A awt splashscreen $(XAWT_SUBDIR) \
279N/A $(HEADLESS_SUBDIR) $(DGA_SUBDIR) \
279N/A font jpeg cmm applet rmi beans $(JDBC_SUBDIR) \
279N/A jawt text nio launcher management $(ORG_SUBDIR) \
279N/A native2ascii serialver tools jconsole tracing
279N/A
279N/Aall build clean clobber::
279N/A $(SUBDIRS-loop)
279N/A
279N/A