Makefile revision 2362
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved.
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# This code is free software; you can redistribute it and/or modify it
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# under the terms of the GNU General Public License version 2 only, as
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# published by the Free Software Foundation. Oracle designates this
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# particular file as subject to the "Classpath" exception as provided
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# by Oracle in the LICENSE file that accompanied this code.
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# This code is distributed in the hope that it will be useful, but WITHOUT
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# version 2 for more details (a copy is included in the LICENSE file that
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# accompanied this code).
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# You should have received a copy of the GNU General Public License version
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# 2 along with this work; if not, write to the Free Software Foundation,
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# or visit www.oracle.com if you need additional information or have any
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# questions.
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# Build Poller class demo.
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark AndrewsBUILDDIR = ../../..
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark AndrewsPRODUCT = demo/jni
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark AndrewsDEMONAME = Poller
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrewsinclude $(BUILDDIR)/common/Defs.gmk
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark AndrewsDEMO_ROOT = $(PLATFORM_SRC)/demo/jni/$(DEMONAME)
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark AndrewsDEMO_TOPFILES = ./README.txt
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark AndrewsDEMO_MAINCLASS = Client
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark AndrewsDEMO_NATIVECLASS= $(DEMONAME)
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark AndrewsDEMO_DESTDIR = $(DEMODIR)/jni/$(DEMONAME)
5efcb3a3e2d29a57311ea5123dbe7927c6ee90fcEvan Hunt
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews# Demo jar building rules.
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews#
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrewsinclude $(BUILDDIR)/common/Demo.gmk
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews
c07c2a862e0f9d671e2961cd179c7b28d7b04f10Mark Andrews