make/common/RMICompilation.gmk
author erikj
Thu, 12 Mar 2015 12:13:23 +0100
changeset 29312 f3f859137ce6
parent 28902 0c09b47449c8
child 32806 e0a88439f971
permissions -rw-r--r--
8074988: Reduce boilerplate in Setup* macro definitions Reviewed-by: tbell, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     1
#
27592
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
     2
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     4
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    10
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    15
# accompanied this code).
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    16
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    20
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    23
# questions.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    24
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    25
27592
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    26
# Setup make rules for creating an RMI compilation.
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    27
#
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    28
# Parameter 1 is the name of the rule. This name is used as variable prefix,
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    29
# and the targets generated are listed in a variable by that name.
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    30
#
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    31
# Remaining parameters are named arguments. These include:
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    32
#   CLASSES:=List of classes to generate stubs for
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    33
#   CLASSES_DIR:=Directory where to look for classes
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    34
#   STUB_CLASSES_DIR:=Directory in where to put stub classes
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    35
#   RUN_V11:=Set to run rmic with -v1.1
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    36
#   RUN_V12:=Set to run rmic with -v1.2
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    37
#   RUN_IIOP:=Set to run rmic with -iiop
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    38
#   RUN_IIOP_STDPKG:=Set to run rmic with -iiop -standardPackage
af7df0dd5ff7 8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents: 21759
diff changeset
    39
#   KEEP_GENERATED:=Set to keep generated sources around
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 28902
diff changeset
    40
SetupRMICompilation = $(NamedParamsMacroTemplate)
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 28902
diff changeset
    41
define SetupRMICompilationBody
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    42
20636
142c294d346e 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 20633
diff changeset
    43
  $1_DEP_FILE := $$($1_STUB_CLASSES_DIR)/_the.$1_rmic.generated
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    44
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    45
  $1_CLASSES_SLASH := $$(subst .,/,$$($1_CLASSES))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    46
  $1_CLASS_FILES := $$(addprefix $$($1_CLASSES_DIR)/,$$(addsuffix .class,$$($1_CLASSES_SLASH)))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    47
  $1_STUB_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Stub.class,$$($1_CLASSES_SLASH)))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    48
  $1_TARGETS := $$($1_STUB_FILES)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    49
  $1_ARGS :=
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    50
  ifneq (,$$($1_RUN_V11))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    51
    $1_SKEL_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Skel.class,$$($1_CLASSES_SLASH)))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    52
    $1_TARGETS += $$($1_SKEL_FILES)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    53
    $1_ARGS += -v1.1
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    54
  endif
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    55
  ifneq (,$$($1_RUN_V12))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    56
    $1_ARGS += -v1.2
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    57
  endif
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    58
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    59
  $1_TIE_BASE_FILES := $$(foreach f,$$($1_CLASSES_SLASH),$$(dir $$f)_$$(notdir $$f))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    60
  $1_TIE_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/org/omg/stub/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    61
  $1_TIE_STDPKG_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    62
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    63
  ifneq (,$$($1_RUN_IIOP))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    64
    $1_TARGETS += $$($1_TIE_FILES)
20638
lana
parents: 20636 20363
diff changeset
    65
    $1_ARGS += -iiop -emitPermissionCheck
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    66
  endif
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    67
  ifneq (,$$($1_RUN_IIOP_STDPKG))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    68
    $1_TARGETS += $$($1_TIE_STDPKG_FILES)
20638
lana
parents: 20636 20363
diff changeset
    69
    $1_ARGS2 := -iiop -emitPermissionCheck -standardPackage
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    70
  endif
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    71
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    72
  ifneq (,$$($1_KEEP_GENERATED))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    73
    $1_ARGS += -keepgenerated
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    74
    $1_TARGETS += $$(subst .class,.java,$$($1_TARGETS))
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    75
  endif
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    76
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    77
  $1_DOLLAR_SAFE_CLASSES := $$(subst $$$$,\$$$$,$$($1_CLASSES))
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    78
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    79
  $$($1_TARGETS): $$($1_DEP_FILE) $$($1_CLASS_FILES)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    80
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    81
  $$($1_DEP_FILE): $$($1_CLASS_FILES)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    82
	$(MKDIR) -p $$($1_STUB_CLASSES_DIR)
27595
cff167b3bfa2 8065914: Various improvements and cleanup of build system
ihse
parents: 27592
diff changeset
    83
	$(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS) for $$($1_DOLLAR_SAFE_CLASSES) && \
cff167b3bfa2 8065914: Various improvements and cleanup of build system
ihse
parents: 27592
diff changeset
    84
	$(RMIC) $$($1_ARGS) -classpath "$$($1_CLASSES_DIR)" \
cff167b3bfa2 8065914: Various improvements and cleanup of build system
ihse
parents: 27592
diff changeset
    85
	    -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    86
	if [ "x$$($1_ARGS2)" != "x" ]; then \
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    87
	  $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS2) for $$($1_DOLLAR_SAFE_CLASSES) && \
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    88
	  $(RMIC) $$($1_ARGS2) -classpath "$$($1_CLASSES_DIR)" \
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 14811
diff changeset
    89
	      -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    90
	fi;
20636
142c294d346e 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 20633
diff changeset
    91
	$(TOUCH) $$@
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    92
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    93
20636
142c294d346e 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 20633
diff changeset
    94
  $1 := $$($1_TARGETS) $$($1_DEP_FILE)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    95
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    96
endef