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