Makefile revision 851
8N/A#
8N/A# Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
606N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
747N/A#
8N/A# This code is free software; you can redistribute it and/or modify it
8N/A# under the terms of the GNU General Public License version 2 only, as
8N/A# published by the Free Software Foundation. Sun designates this
8N/A# particular file as subject to the "Classpath" exception as provided
8N/A# by Sun in the LICENSE file that accompanied this code.
8N/A#
8N/A# This code is distributed in the hope that it will be useful, but WITHOUT
8N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
8N/A# version 2 for more details (a copy is included in the LICENSE file that
8N/A# accompanied this code).
8N/A#
8N/A# You should have received a copy of the GNU General Public License version
8N/A# 2 along with this work; if not, write to the Free Software Foundation,
8N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8N/A#
8N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
8N/A# CA 95054 USA or visit www.sun.com if you need additional information or
8N/A# have any questions.
8N/A#
8N/A
8N/A#
8N/A# Makefile for building all the samples
8N/A#
8N/A
8N/ABUILDDIR = ..
851N/APRODUCT = java
8N/Ainclude $(BUILDDIR)/common/Defs.gmk
8N/A
8N/Aifdef OPENJDK
606N/A WEBSERVICES_SUBDIR =
606N/Aelse
606N/A WEBSERVICES_SUBDIR = webservices
606N/Aendif
606N/A
705N/ASUBDIRS = nio jmx scripting $(WEBSERVICES_SUBDIR) nbproject
606N/A
606N/A# include dtrace samples in Solaris builds
606N/Aifeq ($(PLATFORM), solaris)
606N/A SUBDIRS += dtrace
606N/Aendif
606N/A
606N/Aall build clean clobber::
606N/A $(SUBDIRS-loop)
606N/A
606N/Aclobber clean ::
606N/A $(RM) -r $(SAMPLEDIR)
606N/A