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