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