Makefile revision 3261
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin#
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3e14f97f673e8a630f076077de35afdd43dc1587Roger A. Faulkner#
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# This code is free software; you can redistribute it and/or modify it
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# under the terms of the GNU General Public License version 2 only, as
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# published by the Free Software Foundation. Oracle designates this
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# particular file as subject to the "Classpath" exception as provided
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# by Oracle in the LICENSE file that accompanied this code.
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin#
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# This code is distributed in the hope that it will be useful, but WITHOUT
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# version 2 for more details (a copy is included in the LICENSE file that
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# accompanied this code).
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin#
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# You should have received a copy of the GNU General Public License version
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# 2 along with this work; if not, write to the Free Software Foundation,
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin#
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# or visit www.oracle.com if you need additional information or have any
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# questions.
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin#
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin#
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin# Makefile for building the demo applets
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin#
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin
7c2fbfb345896881c631598ee3852ce9ce33fb07April ChinBUILDDIR = ../..
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chininclude $(BUILDDIR)/common/Defs.gmk
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin
7c2fbfb345896881c631598ee3852ce9ce33fb07April ChinSUBDIRS_CLOSED = Animator GraphLayout JumpingBox TicTacToe
7c2fbfb345896881c631598ee3852ce9ce33fb07April ChinSUBDIRS = ArcTest BarChart Blink CardTest Clock DitherTest DrawTest \
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin Fractal GraphicsTest MoleculeViewer \
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin NervousText SimpleGraph SortDemo SpreadSheet WireFrame
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chinifndef OPENJDK
7c2fbfb345896881c631598ee3852ce9ce33fb07April ChinSUBDIRS += $(SUBDIRS_CLOSED)
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chinendif
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin
7c2fbfb345896881c631598ee3852ce9ce33fb07April ChinSUBDIRS_MAKEFLAGS += DEMO_IS_APPLET=true
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chininclude $(BUILDDIR)/common/Subdirs.gmk
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chinall build clean clobber::
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin $(SUBDIRS-loop)
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chinclobber clean::
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin $(RM) -r $(DEMODIR)/applets
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin