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