common/makefiles/RMICompilation.gmk

Thu, 10 Oct 2013 14:58:19 +0200

author
ihse
date
Thu, 10 Oct 2013 14:58:19 +0200
changeset 839
174a54ce39c4
parent 543
cd06b2ea58dd
child 852
77473affb9c0
permissions
-rw-r--r--

8001931: The new build system whitespace cleanup
Reviewed-by: tbell, simonis, erikj

erikj@459 1 #
katleman@543 2 # Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
erikj@459 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
erikj@459 4 #
erikj@459 5 # This code is free software; you can redistribute it and/or modify it
erikj@459 6 # under the terms of the GNU General Public License version 2 only, as
erikj@459 7 # published by the Free Software Foundation. Oracle designates this
erikj@459 8 # particular file as subject to the "Classpath" exception as provided
erikj@459 9 # by Oracle in the LICENSE file that accompanied this code.
erikj@459 10 #
erikj@459 11 # This code is distributed in the hope that it will be useful, but WITHOUT
erikj@459 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
erikj@459 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
erikj@459 14 # version 2 for more details (a copy is included in the LICENSE file that
erikj@459 15 # accompanied this code).
erikj@459 16 #
erikj@459 17 # You should have received a copy of the GNU General Public License version
erikj@459 18 # 2 along with this work; if not, write to the Free Software Foundation,
erikj@459 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
erikj@459 20 #
erikj@459 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
erikj@459 22 # or visit www.oracle.com if you need additional information or have any
erikj@459 23 # questions.
erikj@459 24 #
erikj@459 25
erikj@459 26 define SetupRMICompilation
ihse@839 27 # param 1 is a name for a variable to depend on.
ihse@839 28 # param 2 and up are named args.
ihse@839 29 # CLASSES:=List of classes to generate stubs for
ihse@839 30 # CLASSES_DIR:=Directory where to look for classes
ihse@839 31 # STUB_CLASSES_DIR:=Directory in where to put stub classes
ihse@839 32 # RUN_V11:=Set to run rmic with -v1.1
ihse@839 33 # RUN_V12:=Set to run rmic with -v1.2
ihse@839 34 # RUN_IIOP:=Set to run rmic with -iiop
ihse@839 35 # RUN_IIOP_STDPKG:=Set to run rmic with -iiop -standardPackage
ihse@839 36 # KEEP_GENERATED:=Set to keep generated sources around
ihse@839 37 $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
ihse@839 38 $(call LogSetupMacroEntry,SetupRMICompilation($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
ihse@839 39 $(if $(16),$(error Internal makefile error: Too many arguments to SetupRMICompilation, please update RMICompilation.gmk))
erikj@459 40
ihse@839 41 $1_DEP_FILE := $$($1_STUB_CLASSES_DIR)/$1_rmic
erikj@459 42
ihse@839 43 $1_CLASSES_SLASH := $$(subst .,/,$$($1_CLASSES))
ihse@839 44 $1_CLASS_FILES := $$(addprefix $$($1_CLASSES_DIR)/,$$(addsuffix .class,$$($1_CLASSES_SLASH)))
ihse@839 45 $1_STUB_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Stub.class,$$($1_CLASSES_SLASH)))
ihse@839 46 $1_TARGETS := $$($1_STUB_FILES)
ihse@839 47 $1_ARGS :=
ihse@839 48 ifneq (,$$($1_RUN_V11))
ihse@839 49 $1_SKEL_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Skel.class,$$($1_CLASSES_SLASH)))
ihse@839 50 $1_TARGETS += $$($1_SKEL_FILES)
ihse@839 51 $1_ARGS += -v1.1
ihse@839 52 endif
ihse@839 53 ifneq (,$$($1_RUN_V12))
ihse@839 54 $1_ARGS += -v1.2
ihse@839 55 endif
erikj@459 56
ihse@839 57 $1_TIE_BASE_FILES := $$(foreach f,$$($1_CLASSES_SLASH),$$(dir $$f)_$$(notdir $$f))
ihse@839 58 $1_TIE_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/org/omg/stub/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
ihse@839 59 $1_TIE_STDPKG_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
erikj@459 60
ihse@839 61 ifneq (,$$($1_RUN_IIOP))
ihse@839 62 $1_TARGETS += $$($1_TIE_FILES)
ihse@839 63 $1_ARGS += -iiop
ihse@839 64 endif
ihse@839 65 ifneq (,$$($1_RUN_IIOP_STDPKG))
ihse@839 66 $1_TARGETS += $$($1_TIE_STDPKG_FILES)
ihse@839 67 $1_ARGS2 := -iiop -standardPackage
ihse@839 68 endif
erikj@459 69
ihse@839 70 ifneq (,$$($1_KEEP_GENERATED))
ihse@839 71 $1_ARGS += -keepgenerated
ihse@839 72 $1_TARGETS += $$(subst .class,.java,$$($1_TARGETS))
ihse@839 73 endif
erikj@459 74
ihse@839 75 $1_DOLLAR_SAFE_CLASSES := $$(subst $$$$,\$$$$,$$($1_CLASSES))
erikj@459 76
ihse@839 77 $$($1_TARGETS): $$($1_DEP_FILE) $$($1_CLASS_FILES)
erikj@459 78
ihse@839 79 $$($1_DEP_FILE): $$($1_CLASS_FILES)
erikj@459 80 $(MKDIR) -p $$($1_STUB_CLASSES_DIR)
erikj@459 81 if [ "x$$($1_ARGS)" != "x" ]; then \
ihse@839 82 $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS) for $$($1_DOLLAR_SAFE_CLASSES) && \
ihse@839 83 $(RMIC) $$($1_ARGS) -classpath "$$($1_CLASSES_DIR)" \
ihse@839 84 -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
erikj@459 85 fi;
erikj@459 86 if [ "x$$($1_ARGS2)" != "x" ]; then \
ihse@839 87 $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS2) for $$($1_DOLLAR_SAFE_CLASSES) && \
ihse@839 88 $(RMIC) $$($1_ARGS2) -classpath "$$($1_CLASSES_DIR)" \
ihse@839 89 -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
erikj@459 90 fi;
erikj@459 91
erikj@459 92
ihse@839 93 $1 := $$($1_TARGETS)
erikj@459 94
ihse@839 95 # By marking as secondary, this "touch" file doesn't need to be touched and will never exist.
ihse@839 96 .SECONDARY: $$($1_DEP_FILE)
erikj@459 97 endef

mercurial