Makefile revision 2080
277N/A#
277N/A# Copyright 1998-2005 Sun Microsystems, Inc. All Rights Reserved.
277N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
277N/A#
851N/A# This code is free software; you can redistribute it and/or modify it
851N/A# under the terms of the GNU General Public License version 2 only, as
277N/A# published by the Free Software Foundation. Sun designates this
277N/A# particular file as subject to the "Classpath" exception as provided
277N/A# by Sun in the LICENSE file that accompanied this code.
277N/A#
277N/A# This code is distributed in the hope that it will be useful, but WITHOUT
277N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
277N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
277N/A# version 2 for more details (a copy is included in the LICENSE file that
277N/A# accompanied this code).
277N/A#
277N/A# You should have received a copy of the GNU General Public License version
277N/A# 2 along with this work; if not, write to the Free Software Foundation,
277N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
277N/A#
277N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
277N/A# CA 95054 USA or visit www.sun.com if you need additional information or
277N/A# have any questions.
277N/A#
277N/A
277N/A#
277N/A# Makefile for building the tty (aka JDB) on JDI
277N/A#
277N/A
277N/ABUILDDIR = ../..
277N/AMODULE = jdb
277N/APACKAGE = com.sun.tools.example.debug.tty
277N/APRODUCT = jpda
277N/APROGRAM = jdb
277N/Ainclude $(BUILDDIR)/common/Defs.gmk
493N/A
277N/A# This program must contain a manifest that defines the execution level
277N/A# needed to follow standard Vista User Access Control Guidelines
851N/A# This must be set before Program.gmk is included
277N/A#
277N/ABUILD_MANIFEST=true
277N/A
277N/A#
277N/A# Java Files to compile are found automatically.
493N/A#
493N/AAUTO_FILES_JAVA_DIRS = com/sun/tools/example/debug/tty
493N/A
277N/A#
277N/A# Resources
#
LOCALE_SET_DEFINITION = jdk
RESOURCE_BUNDLES_JAVA = com/sun/tools/example/debug/tty/TTYResources.java
#
# Rules
#
include $(BUILDDIR)/common/Classes.gmk