Makefile revision 316
230N/A#
230N/A# Copyright 1998-2005 Sun Microsystems, Inc. All Rights Reserved.
230N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
230N/A#
230N/A# This code is free software; you can redistribute it and/or modify it
230N/A# under the terms of the GNU General Public License version 2 only, as
230N/A# published by the Free Software Foundation. Sun designates this
230N/A# particular file as subject to the "Classpath" exception as provided
230N/A# by Sun in the LICENSE file that accompanied this code.
230N/A#
230N/A# This code is distributed in the hope that it will be useful, but WITHOUT
230N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
230N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
230N/A# version 2 for more details (a copy is included in the LICENSE file that
230N/A# accompanied this code).
230N/A#
230N/A# You should have received a copy of the GNU General Public License version
230N/A# 2 along with this work; if not, write to the Free Software Foundation,
230N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
230N/A#
230N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
758N/A# CA 95054 USA or visit www.sun.com if you need additional information or
230N/A# have any questions.
230N/A#
230N/A
230N/A#
230N/A# Makefile for building all of the transports
758N/A#
230N/A
230N/ABUILDDIR = ../..
844N/APRODUCT = jpda
844N/Ainclude $(BUILDDIR)/common/Defs.gmk
230N/A
618N/ASUBDIRS = socket
230N/Aifeq ($(PLATFORM), windows)
230N/ASUBDIRS += shmem
230N/Aendif # PLATFORM
230N/Aall build clean clobber::
230N/A $(SUBDIRS-loop)
230N/A
230N/A#
230N/A# Copy jdwpTransport.h into the SDK include directory
230N/A#
230N/AFILES_h = $(INCLUDEDIR)/jdwpTransport.h
230N/A
230N/A$(INCLUDEDIR)/%.h: $(SHARE_SRC)/javavm/export/%.h
230N/A $(install-file)
230N/A
230N/Aall:: $(FILES_h)
230N/A
230N/Aclean clobber::
230N/A $(RM) $(FILES_h)
230N/A
230N/A