jdk/make/com/sun/jmx/Makefile
author mchung
Wed, 10 Feb 2010 17:51:07 -0800
changeset 4917 c98da2209f8c
parent 2285 37fdbed8178f
child 5506 202f599c92aa
permissions -rw-r--r--
6915413: Module build: building of specified jdk components instead of all Summary: Define new SUBDIRS_* variables for specifying components for one group Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
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
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# have any questions.
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
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    45
# When building the openjdk, build snmp only if importing binary plugs,
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    46
ifdef OPENJDK
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    47
  ifeq ($(IMPORT_BINARY_PLUGS),true)
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    48
    SUBDIRS = snmp
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    49
  endif
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    50
else
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    51
  SUBDIRS = snmp
37fdbed8178f 6661448: Make the SNMP agent optional when OPENJDK=true and IMPORT_BINARY_PLUGS=false
dfuchs
parents: 2
diff changeset
    52
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
4917
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 2285
diff changeset
    54
include $(BUILDDIR)/common/Subdirs.gmk
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 2285
diff changeset
    55
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
all build:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
	$(SUBDIRS-loop)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
clean clobber::
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
	$(SUBDIRS-loop)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
# Rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
include $(BUILDDIR)/common/Classes.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
build: stubs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
# Clean up internal-use-only package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
clean ::
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
	$(RM) -r $(CLASSDESTDIR)/com/sun/jmx \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                 $(CLASSDESTDIR)/com/sun/management/jmx \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                 $(CLASSDESTDIR)/org/omg/stub/javax/management/remote/rmi \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
# The remainder of this makefile contains defs and rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
# for generating RMI stubs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
# With inspiration from com/sun/jndi/rmi/registry
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
# Full class names of implementations requiring stubs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
REMOTE_impls = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    javax.management.remote.rmi.RMIConnectionImpl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    javax.management.remote.rmi.RMIServerImpl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
REMOTE_files = $(subst .,/,$(REMOTE_impls))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
FILES_stubs  = $(REMOTE_files:%=$(CLASSDESTDIR)/%_Stub.class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
FILES_ties   = $(subst javax/management/remote/rmi/,javax/management/remote/rmi/_,$(REMOTE_files:%=$(CLASSDESTDIR)/%_Tie.class))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
# Compile stubs and skeletons for remote implementations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
# Keep generated RMI/JRMP Stub source files and copy them to GENSRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
# so that javadoc can include them in the API (4997471)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
# For RMI/IIOP call rmic a second time with -standardPackage option
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
# so that *_tie classes are generated in package without the prefix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
# org.omg.stub (6375696)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
# 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
$(CLASSDESTDIR)/%_Stub.class: $(CLASSDESTDIR)/%.class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
	$(RMIC) -classpath "$(CLASSDESTDIR)"    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                -d $(CLASSDESTDIR)              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                -v1.2                           \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                -keepgenerated                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                $(subst /,.,$(<:$(CLASSDESTDIR)/%.class=%))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
	$(MKDIR) -p $(@D:$(CLASSDESTDIR)/%=$(GENSRCDIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
	$(CP)       $(@:%.class=%.java)                                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                    $(@D:$(CLASSDESTDIR)/%=$(GENSRCDIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
	$(RMIC) -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
                $(subst /,.,$(<:$(CLASSDESTDIR)/%.class=%))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
	$(RMIC) $(HOTSPOT_INTERPRETER_FLAG) -classpath "$(CLASSDESTDIR)"    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                -d $(CLASSDESTDIR)              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                -iiop -v1.2                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                -standardPackage                \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                $(subst /,.,$(<:$(CLASSDESTDIR)/%.class=%))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
stubs: $(FILES_stubs)