jdk/make/com/sun/jmx/Makefile
author ohair
Thu, 23 Dec 2010 18:50:21 -0800
changeset 7666 7b994e3dd41d
parent 5506 202f599c92aa
child 7668 d4a77089c587
permissions -rw-r--r--
7008723: Remove binary plugs creation and use from openjdk Reviewed-by: mchung, andrew, aph, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4917
diff changeset
     2
# Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4917
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4917
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4917
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4917
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4917
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# Makefile for building RMI stubs of JMX Remote
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
BUILDDIR = ../../..
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
PACKAGE = javax.management
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
PRODUCT = sun
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
include $(BUILDDIR)/common/Defs.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
# Files to compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
# NO java files to compile: already compiled in javax/management/Makefile
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
# Note : some targets are double colon rules and some single colon rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# within common included gmk files : that is why the following for loop
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
# has been duplicated.
2285
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    44
7666
7b994e3dd41d 7008723: Remove binary plugs creation and use from openjdk
ohair
parents: 5506
diff changeset
    45
# When building the openjdk, no snmp
7b994e3dd41d 7008723: Remove binary plugs creation and use from openjdk
ohair
parents: 5506
diff changeset
    46
ifndef OPENJDK
2285
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    47
  SUBDIRS = snmp
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    48
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
4917
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 2285
diff changeset
    50
include $(BUILDDIR)/common/Subdirs.gmk
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 2285
diff changeset
    51
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
all build:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
	$(SUBDIRS-loop)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
clean clobber::
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
	$(SUBDIRS-loop)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
# Rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
include $(BUILDDIR)/common/Classes.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
build: stubs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
# Clean up internal-use-only package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
clean ::
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
	$(RM) -r $(CLASSDESTDIR)/com/sun/jmx \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                 $(CLASSDESTDIR)/com/sun/management/jmx \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                 $(CLASSDESTDIR)/org/omg/stub/javax/management/remote/rmi \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
# The remainder of this makefile contains defs and rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
# for generating RMI stubs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
# With inspiration from com/sun/jndi/rmi/registry
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
# Full class names of implementations requiring stubs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
REMOTE_impls = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    javax.management.remote.rmi.RMIConnectionImpl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    javax.management.remote.rmi.RMIServerImpl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
REMOTE_files = $(subst .,/,$(REMOTE_impls))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
FILES_stubs  = $(REMOTE_files:%=$(CLASSDESTDIR)/%_Stub.class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
FILES_ties   = $(subst javax/management/remote/rmi/,javax/management/remote/rmi/_,$(REMOTE_files:%=$(CLASSDESTDIR)/%_Tie.class))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
# Compile stubs and skeletons for remote implementations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
# Keep generated RMI/JRMP Stub source files and copy them to GENSRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
# so that javadoc can include them in the API (4997471)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
# For RMI/IIOP call rmic a second time with -standardPackage option
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
# so that *_tie classes are generated in package without the prefix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
# org.omg.stub (6375696)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
# 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
$(CLASSDESTDIR)/%_Stub.class: $(CLASSDESTDIR)/%.class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
	$(RMIC) -classpath "$(CLASSDESTDIR)"    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                -d $(CLASSDESTDIR)              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                -v1.2                           \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                -keepgenerated                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                $(subst /,.,$(<:$(CLASSDESTDIR)/%.class=%))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
	$(MKDIR) -p $(@D:$(CLASSDESTDIR)/%=$(GENSRCDIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
	$(CP)       $(@:%.class=%.java)                                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                    $(@D:$(CLASSDESTDIR)/%=$(GENSRCDIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
	$(RMIC) -classpath "$(CLASSDESTDIR)"    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                -d $(CLASSDESTDIR)              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                -iiop -v1.2                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                $(subst /,.,$(<:$(CLASSDESTDIR)/%.class=%))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
	$(RMIC) $(HOTSPOT_INTERPRETER_FLAG) -classpath "$(CLASSDESTDIR)"    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                -d $(CLASSDESTDIR)              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                -iiop -v1.2                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                -standardPackage                \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                $(subst /,.,$(<:$(CLASSDESTDIR)/%.class=%))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
stubs: $(FILES_stubs)