corba/makefiles/BuildCorba.gmk
author ohair
Fri, 26 Oct 2012 14:24:21 -0700
changeset 14242 0c8f215ed72c
child 15408 8d4145481e94
permissions -rw-r--r--
8000992: Update new build-infra makefiles Summary: Build-infra project integration. Multiple authors on this work: erikj and ihse primarily, also changes from ohair, tbell, and dholmes. Special credit to ohstrom for his smartjavac work. Reviewed-by: erikj, ihse, dholmes, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14242
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     1
#
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     2
# Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     4
#
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    10
#
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    15
# accompanied this code).
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    16
#
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    20
#
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    23
# questions.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    24
#
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    25
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    26
#
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    27
# Makefile for building the corba workspace.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    28
#
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    29
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    30
# This must be the first rule
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    31
default: all
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    32
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    33
include $(SPEC)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    34
include MakeBase.gmk
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    35
include JavaCompilation.gmk
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    36
include IdlCompilation.gmk
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    37
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    38
JAVAC_JARS ?= "-Xbootclasspath/p:$(LANGTOOLS_OUTPUTDIR)/dist/bootstrap/lib/javac.jar" \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    39
		-jar $(LANGTOOLS_OUTPUTDIR)/dist/bootstrap/lib/javac.jar
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    40
# The Corba sources are old and generates a LOT of warnings.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    41
# Disable these using Xlint, until someone cares to fix them. 
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    42
DISABLE_CORBA_WARNINGS:=-Xlint:all,-deprecation,-unchecked,-serial,-fallthrough,-cast,-rawtypes,-static,-dep-ann
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    43
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    44
# The "generate old bytecode" javac setup uses the new compiler to compile for the
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    45
# boot jdk to generate tools that need to be run with the boot jdk.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    46
# Thus we force the target bytecode to the boot jdk bytecode.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    47
$(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    48
     JVM:=$(JAVA),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    49
     JAVAC:=$(JAVAC_JARS),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    50
     FLAGS:=$(BOOT_JDK_SOURCETARGET) -bootclasspath $(BOOT_RTJAR) $(DISABLE_CORBA_WARNINGS),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    51
     SERVER_DIR:=$(SJAVAC_SERVER_DIR),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    52
     SERVER_JVM:=$(SJAVAC_SERVER_JAVA)))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    53
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    54
# The "generate new bytecode" uses the new compiler to generate bytecode
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    55
# for the new jdk that is being built. The code compiled by this setup
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    56
# cannot necessarily be run with the boot jdk.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    57
$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    58
     JVM:=$(JAVA),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    59
     JAVAC:=$(JAVAC_JARS),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    60
     FLAGS:=-cp $(BOOT_TOOLSJAR) -XDignore.symbol.file=true $(DISABLE_CORBA_WARNINGS),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    61
     SERVER_DIR:=$(SJAVAC_SERVER_DIR),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    62
     SERVER_JVM:=$(SJAVAC_SERVER_JAVA)))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    63
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    64
$(eval $(call SetupJavaCompilation,BUILD_STRIPPROP,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    65
		SETUP:=GENERATE_OLDBYTECODE,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    66
		SRC:=$(CORBA_TOPDIR)/make/tools/src,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    67
		BIN:=$(CORBA_OUTPUTDIR)/btclasses/stripprop_classes))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    68
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    69
$(eval $(call SetupArchive,ARCHIVE_STRIPPROP,$(BUILD_STRIPPROP),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    70
		SRCS:=$(CORBA_OUTPUTDIR)/btclasses/stripprop_classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    71
		JAR:=$(CORBA_OUTPUTDIR)/btjars/stripproperties.jar,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    72
		JARMAIN:=build.tools.stripproperties.StripPropertiesCorba))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    73
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    74
$(eval $(call SetupJavaCompilation,BUILD_IDLJ,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    75
		SETUP:=GENERATE_OLDBYTECODE,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    76
		SRC:=$(CORBA_TOPDIR)/src/share/classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    77
		BIN:=$(CORBA_OUTPUTDIR)/btclasses/idlj_classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    78
		COPY:=.prp,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    79
		INCLUDES:=com/sun/tools/corba/se/idl,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    80
		EXCLUDE_FILES:=ResourceBundleUtil.java))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    81
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    82
$(eval $(call SetupArchive,ARCHIVE_IDLJ,$(BUILD_IDLJ),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    83
		SRCS:=$(CORBA_OUTPUTDIR)/btclasses/idlj_classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    84
		SUFFIXES:=.class .prp,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    85
		JAR:=$(CORBA_OUTPUTDIR)/btjars/idlj.jar,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    86
		JARMAIN:=com.sun.tools.corba.se.idl.toJavaPortable.Compile))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    87
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    88
$(eval $(call SetupJavaCompilation,BUILD_LOGUTIL,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    89
		SETUP:=GENERATE_OLDBYTECODE,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    90
		SRC:=$(CORBA_TOPDIR)/src/share/classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    91
		BIN:=$(CORBA_OUTPUTDIR)/btclasses/logutil_classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    92
		INCLUDES:=com/sun/tools/corba/se/logutil))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    93
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    94
$(eval $(call SetupArchive,ARCHIVE_LOGUTIL,$(BUILD_LOGUTIL),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    95
		SRCS:=$(CORBA_OUTPUTDIR)/btclasses/logutil_classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    96
		JAR:=$(CORBA_OUTPUTDIR)/btjars/logutil.jar,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    97
		JARMAIN:=com.sun.tools.corba.se.logutil.MC))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    98
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    99
# Generate LogWrapper classes 
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   100
$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/%SystemException.java : \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   101
			$(CORBA_TOPDIR)/src/share/classes/com/sun/corba/se/spi/logging/data/%.mc \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   102
			$(CORBA_OUTPUTDIR)/btjars/logutil.jar
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   103
	$(MKDIR) -p $(@D)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   104
	$(RM) -f $(@D)/_the_wrappers.d
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   105
	$(ECHO) $(LOG_INFO) Generating class file from $*.mc 
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   106
	$(JAVA) -jar $(CORBA_OUTPUTDIR)/btjars/logutil.jar make-class $< $(@D)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   107
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   108
# Generate LogWrapper properties file by concatening resource files 
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   109
$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/LogStrings.properties: \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   110
		$(CORBA_OUTPUTDIR)/logwrappers/ActivationSystemException.resource \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   111
		$(CORBA_OUTPUTDIR)/logwrappers/IORSystemException.resource \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   112
		$(CORBA_OUTPUTDIR)/logwrappers/InterceptorsSystemException.resource \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   113
		$(CORBA_OUTPUTDIR)/logwrappers/NamingSystemException.resource \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   114
		$(CORBA_OUTPUTDIR)/logwrappers/OMGSystemException.resource \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   115
		$(CORBA_OUTPUTDIR)/logwrappers/ORBUtilSystemException.resource \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   116
		$(CORBA_OUTPUTDIR)/logwrappers/POASystemException.resource \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   117
		$(CORBA_OUTPUTDIR)/logwrappers/UtilSystemException.resource
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   118
	$(MKDIR) -p $(@D)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   119
	$(ECHO) $(LOG_INFO) Concatenating 8 resource files into $(@F)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   120
	$(CAT) $^ > $@
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   121
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   122
# The resources files are generated from lisp-like .mc files.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   123
$(CORBA_OUTPUTDIR)/logwrappers/%SystemException.resource : $(CORBA_TOPDIR)/src/share/classes/com/sun/corba/se/spi/logging/data/%.mc $(CORBA_OUTPUTDIR)/btjars/logutil.jar
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   124
	$(MKDIR) -p $(@D)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   125
	$(RM) -f $(@D)/_the_wrappers.d
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   126
	$(ECHO) $(LOG_INFO) Generating resource file from $*.mc 
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   127
	$(JAVA) -jar $(CORBA_OUTPUTDIR)/btjars/logutil.jar make-resource $< $(@D)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   128
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   129
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   130
$(CORBA_OUTPUTDIR)/logwrappers/_the_wrappers.d : $(CORBA_OUTPUTDIR)/btjars/logutil.jar \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   131
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/ActivationSystemException.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   132
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/IORSystemException.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   133
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/InterceptorsSystemException.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   134
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/NamingSystemException.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   135
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/OMGSystemException.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   136
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/ORBUtilSystemException.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   137
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/POASystemException.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   138
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/UtilSystemException.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   139
	$(CORBA_OUTPUTDIR)/logwrappers/com/sun/corba/se/impl/logging/LogStrings.properties
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   140
	$(MKDIR) -p $(@D) 
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   141
	$(ECHO) LOGWRAPPERS_ARE_CREATED=yes > $@
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   142
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   143
# Trigger the generation of the logwrappers. After the logwrapper classes and
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   144
# resources have been created, then the makefile will restart and the newly
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   145
# created java files will become part of the build further along in the makefile.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   146
-include $(CORBA_OUTPUTDIR)/logwrappers/_the_wrappers.d
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   147
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   148
ifeq ($(LOGWRAPPERS_ARE_CREATED),yes)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   149
        $(eval $(call SetupIdlCompilation,BUILD_IDLS,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   150
                IDLJ:=$(JAVA) -jar $(CORBA_OUTPUTDIR)/btjars/idlj.jar,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   151
		SRC:=$(CORBA_TOPDIR)/src/share/classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   152
		BIN:=$(CORBA_OUTPUTDIR)/gensrc,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   153
		EXCLUDES:=com/sun/tools/corba/se/idl/% \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   154
			org/omg/CORBA/% \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   155
			com/sun/corba/se/GiopIDL/% \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   156
			org/omg/PortableServer/corba.idl,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   157
		INCLUDES:=%,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   158
		OLDIMPLBASES:=com/sun/corba/se/PortableActivationIDL/activation.idl \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   159
			      com/sun/corba/se/spi/activation/activation.idl,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   160
		DELETES:=DYNANYDELETEFILES org/omg/DynamicAny/*POA* org/omg/DynamicAny/*Holder* org/omg/DynamicAny/DynValueBoxHelper.java org/omg/DynamicAny/DynValueCommonHelper.java org/omg/DynamicAny/_DynValueCommonStub.java org/omg/DynamicAny/_DynValueBoxStub.java org/omg/DynamicAny/DynAnyPackage/TypeMismatchHolder.java org/omg/DynamicAny/DynAnyPackage/InvalidValueHolder.java org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCodeHolder.java IOPDELETEFILES org/omg/IOP/BI_DIR_IIOP.java org/omg/IOP/ChainBypassCheck.java org/omg/IOP/ChainBypassInfo.java org/omg/IOP/FORWARDED_IDENTITY.java org/omg/IOP/INVOCATION_POLICIES.java org/omg/IOP/LogicalThreadId.java org/omg/IOP/SendingContextRunTime.java org/omg/IOP/UnknownExceptionInfo.java org/omg/IOP/TaggedComponentSeqHolder.java POAHELHOLFILES org/omg/PortableServer/CurrentPackage/NoContextHolder.java org/omg/PortableServer/ForwardRequestHolder.java org/omg/PortableServer/IdAssignmentPolicyValueHelper.java org/omg/PortableServer/IdAssignmentPolicyValueHolder.java org/omg/PortableServer/IdUniquenessPolicyValueHelper.java org/omg/PortableServer/IdUniquenessPolicyValueHolder.java org/omg/PortableServer/ImplicitActivationPolicyValueHelper.java org/omg/PortableServer/ImplicitActivationPolicyValueHolder.java org/omg/PortableServer/LifespanPolicyValueHelper.java org/omg/PortableServer/LifespanPolicyValueHolder.java org/omg/PortableServer/ServantRetentionPolicyValueHelper.java org/omg/PortableServer/ServantRetentionPolicyValueHolder.java org/omg/PortableServer/ObjectIdHelper.java org/omg/PortableServer/ObjectIdHolder.java org/omg/PortableServer/POAListHelper.java org/omg/PortableServer/POAListHolder.java org/omg/PortableServer/POAManagerPackage/AdapterInactiveHolder.java org/omg/PortableServer/POAManagerPackage/StateHelper.java org/omg/PortableServer/POAManagerPackage/StateHolder.java org/omg/PortableServer/POAPackage/AdapterAlreadyExistsHolder.java org/omg/PortableServer/POAPackage/AdapterNonExistentHolder.java org/omg/PortableServer/POAPackage/InvalidPolicyHolder.java org/omg/PortableServer/POAPackage/NoServantHolder.java org/omg/PortableServer/POAPackage/ObjectAlreadyActiveHolder.java org/omg/PortableServer/POAPackage/ObjectNotActiveHolder.java org/omg/PortableServer/POAPackage/ServantAlreadyActiveHolder.java org/omg/PortableServer/POAPackage/ServantNotActiveHolder.java org/omg/PortableServer/POAPackage/WrongAdapterHolder.java org/omg/PortableServer/POAPackage/WrongPolicyHolder.java org/omg/PortableServer/RequestProcessingPolicyValueHelper.java org/omg/PortableServer/RequestProcessingPolicyValueHolder.java org/omg/PortableServer/ServantActivatorHolder.java org/omg/PortableServer/ServantLocatorHolder.java org/omg/PortableServer/ThreadPolicyValueHelper.java org/omg/PortableServer/ThreadPolicyValueHolder.java PIHELHOLFILES org/omg/PortableInterceptor/ClientRequestInfoHelper.java org/omg/PortableInterceptor/ClientRequestInterceptorHelper.java org/omg/PortableInterceptor/IORInfoHelper.java org/omg/PortableInterceptor/IORInterceptorHelper.java org/omg/PortableInterceptor/InterceptorHelper.java org/omg/PortableInterceptor/ORBInitInfoHelper.java org/omg/PortableInterceptor/ORBInitializerHelper.java org/omg/PortableInterceptor/PolicyFactoryHelper.java org/omg/PortableInterceptor/ReplyStatusHelper.java org/omg/PortableInterceptor/RequestInfoHelper.java org/omg/PortableInterceptor/ServerRequestInfoHelper.java org/omg/PortableInterceptor/ServerRequestInterceptorHelper.java org/omg/PortableInterceptor/SlotIdHelper.java org/omg/PortableInterceptor/ClientRequestInfoHolder.java org/omg/PortableInterceptor/ClientRequestInterceptorHolder.java org/omg/PortableInterceptor/CurrentHolder.java org/omg/PortableInterceptor/ForwardRequestHolder.java org/omg/PortableInterceptor/IORInfoHolder.java org/omg/PortableInterceptor/IORInterceptorHolder.java org/omg/PortableInterceptor/InterceptorHolder.java org/omg/PortableInterceptor/InvalidSlotHolder.java org/omg/PortableInterceptor/ORBInitInfoHolder.java org/omg/PortableInterceptor/ORBInitializerHolder.java org/omg/PortableInterceptor/PolicyFactoryHolder.java org/omg/PortableInterceptor/RequestInfoHolder.java org/omg/PortableInterceptor/ServerRequestInfoHolder.java org/omg/PortableInterceptor/ServerRequestInterceptorHolder.java org/omg/PortableInterceptor/TaggedComponentSeqHolder.java org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateNameHolder.java org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidNameHolder.java org/omg/IOP/CodecPackage/FormatMismatchHolder.java org/omg/IOP/CodecPackage/InvalidTypeForEncodingHolder.java org/omg/IOP/CodecPackage/TypeMismatchHolder.java org/omg/IOP/CodecHelper.java org/omg/IOP/EncodingFormatHelper.java org/omg/IOP/EncodingHelper.java org/omg/IOP/CodecFactoryPackage/UnknownEncodingHolder.java org/omg/IOP/CodecFactoryHolder.java org/omg/IOP/CodecHolder.java org/omg/IOP/EncodingHolder.java org/omg/IOP/TaggedComponentSeqHelper.java org/omg/Dynamic/ContextListHelper.java org/omg/Dynamic/ExceptionListHelper.java org/omg/Dynamic/ParameterHolder.java org/omg/Dynamic/ParameterListHolder.java org/omg/Dynamic/ExceptionListHolder.java org/omg/Dynamic/ParameterHelper.java org/omg/Dynamic/ParameterListHelper.java org/omg/Dynamic/RequestContextHelper.java CORBAX org/omg/CORBA/OctetSeqHelper.java org/omg/CORBA/OctetSeqHolder.java org/omg/CORBA/PolicyError.java org/omg/CORBA/RepositoryIdHelper.java)) 
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   161
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   162
        $(BUILD_IDLS) : $(CORBA_OUTPUTDIR)/btjars/idlj.jar
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   163
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   164
        $(CORBA_OUTPUTDIR)/gensrc/_the_idls.d : $(BUILD_IDLS) $(CORBA_OUTPUTDIR)/btjars/idlj.jar
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   165
		$(MKDIR) -p $(@D)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   166
		$(ECHO) IDLS_ARE_CREATED=yes > $@
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   167
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   168
        -include $(CORBA_OUTPUTDIR)/gensrc/_the_idls.d
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   169
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   170
        ifeq ($(IDLS_ARE_CREATED),yes)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   171
                $(eval $(call SetupJavaCompilation,BUILD_CORBA,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   172
		    SETUP:=GENERATE_NEWBYTECODE,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   173
		    SRC:=$(CORBA_TOPDIR)/src/share/classes $(CORBA_OUTPUTDIR)/gensrc $(CORBA_OUTPUTDIR)/logwrappers,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   174
		    EXCLUDES:=com/sun/corba/se/PortableActivationIDL\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   175
			      com/sun/tools/corba/se/logutil,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   176
		    EXCLUDE_FILES:=com/sun/corba/se/impl/presentation/rmi/JNDIStateFactoryImpl.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   177
				   com/sun/corba/se/spi/presentation/rmi/StubWrapper.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   178
				   com/sun/org/omg/CORBA/IDLTypeOperations.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   179
				   com/sun/org/omg/CORBA/IRObjectOperations.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   180
				   org/omg/PortableInterceptor/UNKNOWN.java \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   181
				   com/sun/tools/corba/se/idl/ResourceBundleUtil.java\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   182
				   com/sun/corba/se/impl/presentation/rmi/jndi.properties,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   183
		    COPY:=.prp LogStrings.properties,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   184
		    BIN:=$(CORBA_OUTPUTDIR)/classes))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   185
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   186
                # Separate src.zip call to include sources that were excluded in the build to 
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   187
                # mimic behavior in old build system.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   188
                $(eval $(call SetupZipArchive,ARCHIVE_BUILD_CORBA,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   189
		    SRC:=$(CORBA_TOPDIR)/src/share/classes $(CORBA_OUTPUTDIR)/gensrc $(CORBA_OUTPUTDIR)/logwrappers,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   190
		    ZIP:=$(CORBA_OUTPUTDIR)/dist/lib/src.zip))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   191
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   192
                $(BUILD_CORBA) : $(BUILD_IDLS) $(LOGWRAPPER_DEPENDENCIES)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   193
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   194
                # Run stripproperties on all sunorb resource files.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   195
                STRIP_PROP_SRC_FILES:=$(shell $(FIND) $(CORBA_TOPDIR)/src/share/classes -name "sunorb*.properties")
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   196
                STRIP_PROP_FILES:=$(patsubst  $(CORBA_TOPDIR)/src/share/classes/%,$(CORBA_OUTPUTDIR)/classes/%,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   197
			$(STRIP_PROP_SRC_FILES))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   198
                # Simple delivery of zh_HK properties files just copies zh_TW properties files
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   199
                STRIP_PROP_FILES+=$(patsubst  $(CORBA_TOPDIR)/src/share/classes/%_zh_TW.properties,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   200
			$(CORBA_OUTPUTDIR)/classes/%_zh_HK.properties,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   201
			$(shell $(FIND) $(CORBA_TOPDIR)/src/share/classes -name "sunorb_zh_TW.properties"))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   202
                STRIP_PROP_SRC_FILES+=$(shell $(FIND) $(CORBA_TOPDIR)/src/share/classes -name "sunorb_zh_TW.properties")
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   203
		STRIP_PROP_CMDLINE:=$(subst _SPACE_,$(SPACE),\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   204
			$(join $(addprefix -clean_SPACE_,$(STRIP_PROP_SRC_FILES)), \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   205
			$(addprefix _SPACE_,$(STRIP_PROP_FILES))))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   206
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   207
                $(CORBA_OUTPUTDIR)/_the.stripped_properties: $(STRIP_PROP_SRC_FILES) \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   208
					$(CORBA_OUTPUTDIR)/btjars/stripproperties.jar
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   209
			$(MKDIR) -p $(sort $(dir $(STRIP_PROP_FILES)))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   210
			$(call ListPathsSafely,STRIP_PROP_CMDLINE,\n, >> $(CORBA_OUTPUTDIR)/_the.strip_prop.cmdline)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   211
			$(JAVA) -jar $(CORBA_OUTPUTDIR)/btjars/stripproperties.jar \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   212
				@$(CORBA_OUTPUTDIR)/_the.strip_prop.cmdline
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   213
			$(TOUCH) $@
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   214
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   215
                $(eval $(call SetupArchive,ARCHIVE_CORBA,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   216
		     $(BUILD_CORBA) $(CORBA_OUTPUTDIR)/_the.stripped_properties,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   217
		     SRCS:=$(CORBA_OUTPUTDIR)/classes,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   218
		     SUFFIXES:=.class .prp .properties,\
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   219
		     JAR:=$(CORBA_OUTPUTDIR)/dist/lib/classes.jar))
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   220
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   221
                # The created classes.jar now contains Corba compiled to run on the target JDK
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   222
                # and is ready for inclusion in jdk rt.jar.
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   223
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   224
                # The created src.zip now contains .java and .properties files used to create the classes in classes.jar
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   225
                # and is ready for inclusion into the jdk src.zip
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   226
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   227
                BIN_FILES:=$(CORBA_TOPDIR)/src/share/classes/com/sun/tools/corba/se/idl/orb.idl \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   228
			   $(CORBA_TOPDIR)/src/share/classes/com/sun/tools/corba/se/idl/ir.idl
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   229
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   230
                $(CORBA_OUTPUTDIR)/dist/lib/bin.zip : $(BIN_FILES) $(CORBA_OUTPUTDIR)/dist/lib/classes.jar
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   231
			$(MKDIR) -p $(CORBA_OUTPUTDIR)/dist/lib
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   232
			$(MKDIR) -p $(CORBA_OUTPUTDIR)/lib
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   233
			$(RM) -f $@
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   234
			$(ECHO) Creating `basename $@`
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   235
			$(CP) $(BIN_FILES) $(CORBA_OUTPUTDIR)/lib
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   236
			$(CHMOD) ug+w $(CORBA_OUTPUTDIR)/lib/*
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   237
			(cd $(CORBA_OUTPUTDIR); $(ZIP) -q $@ lib/orb.idl lib/ir.idl)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   238
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   239
                # The created bin.zip now contains the corba specific binaries: orb.idl, ir.idl
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   240
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   241
                all: 	$(CORBA_OUTPUTDIR)/btjars/stripproperties.jar \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   242
			$(CORBA_OUTPUTDIR)/btjars/idlj.jar \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   243
			$(CORBA_OUTPUTDIR)/btjars/logutil.jar \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   244
			$(CORBA_OUTPUTDIR)/dist/lib/classes.jar \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   245
			$(CORBA_OUTPUTDIR)/dist/lib/src.zip \
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   246
			$(CORBA_OUTPUTDIR)/dist/lib/bin.zip
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   247
        endif
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   248
endif
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   249
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   250
clean:
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   251
	$(RM) -rf $(CORBA_OUTPUTDIR)
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   252
0c8f215ed72c 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   253
.PHONY: default all clean clobber