make/corba-rules.gmk
author duke
Wed, 05 Jul 2017 17:08:50 +0200
changeset 5072 b7456c473862
parent 3792 70d5ef4d28c5
child 5499 eb0b3e373167
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     1
#
3792
70d5ef4d28c5 6884624: Update copyright year
xdono
parents: 3789
diff changeset
     2
# Copyright 2001-2009 Sun Microsystems, Inc.  All Rights Reserved.
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fd16c54261b3 Initial load
duke
parents:
diff changeset
     4
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
fd16c54261b3 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
fd16c54261b3 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
fd16c54261b3 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
fd16c54261b3 Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
fd16c54261b3 Initial load
duke
parents:
diff changeset
    10
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
fd16c54261b3 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fd16c54261b3 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fd16c54261b3 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
fd16c54261b3 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
fd16c54261b3 Initial load
duke
parents:
diff changeset
    16
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
fd16c54261b3 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
fd16c54261b3 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fd16c54261b3 Initial load
duke
parents:
diff changeset
    20
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
fd16c54261b3 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
fd16c54261b3 Initial load
duke
parents:
diff changeset
    23
# have any questions.
fd16c54261b3 Initial load
duke
parents:
diff changeset
    24
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    25
fd16c54261b3 Initial load
duke
parents:
diff changeset
    26
################################################################
fd16c54261b3 Initial load
duke
parents:
diff changeset
    27
# CORBA TARGETS
fd16c54261b3 Initial load
duke
parents:
diff changeset
    28
################################################################
fd16c54261b3 Initial load
duke
parents:
diff changeset
    29
fd16c54261b3 Initial load
duke
parents:
diff changeset
    30
CORBA_BUILD_ARGUMENTS = \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    31
   $(COMMON_BUILD_ARGUMENTS) \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    32
   ALT_OUTPUTDIR=$(CORBA_OUTPUTDIR) \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    33
   ALT_BOOTDIR=$(BOOTDIR) \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    34
   ALT_JDK_IMPORT_PATH=$(JDK_IMPORT_PATH)
fd16c54261b3 Initial load
duke
parents:
diff changeset
    35
fd16c54261b3 Initial load
duke
parents:
diff changeset
    36
ifeq ($(BUILD_LANGTOOLS), true)
fd16c54261b3 Initial load
duke
parents:
diff changeset
    37
   CORBA_BUILD_ARGUMENTS += ALT_LANGTOOLS_DIST=$(ABS_LANGTOOLS_DIST)
fd16c54261b3 Initial load
duke
parents:
diff changeset
    38
endif
fd16c54261b3 Initial load
duke
parents:
diff changeset
    39
fd16c54261b3 Initial load
duke
parents:
diff changeset
    40
corba: corba-build
fd16c54261b3 Initial load
duke
parents:
diff changeset
    41
corba-build:
fd16c54261b3 Initial load
duke
parents:
diff changeset
    42
	$(MKDIR) -p $(CORBA_OUTPUTDIR)
3789
2040d99c6f14 6855174: Improve log output when builds transition from one workspace to another
ohair
parents: 0
diff changeset
    43
	@$(call MakeStart, corba, all)
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    44
	($(CD) $(CORBA_TOPDIR)/make && \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    45
	 $(MAKE) $(CORBA_BUILD_ARGUMENTS) all)
3789
2040d99c6f14 6855174: Improve log output when builds transition from one workspace to another
ohair
parents: 0
diff changeset
    46
	@$(call MakeFinish, corba, all)
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    47
fd16c54261b3 Initial load
duke
parents:
diff changeset
    48
corba-clobber::
fd16c54261b3 Initial load
duke
parents:
diff changeset
    49
	$(MKDIR) -p $(CORBA_OUTPUTDIR)
3789
2040d99c6f14 6855174: Improve log output when builds transition from one workspace to another
ohair
parents: 0
diff changeset
    50
	@$(call MakeStart, corba, clobber)
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    51
	($(CD) $(CORBA_TOPDIR)/make &&  \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    52
	 $(MAKE) $(CORBA_BUILD_ARGUMENTS) clobber)
3789
2040d99c6f14 6855174: Improve log output when builds transition from one workspace to another
ohair
parents: 0
diff changeset
    53
	@$(call MakeFinish, corba, clobber)
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    54
fd16c54261b3 Initial load
duke
parents:
diff changeset
    55
.PHONY: corba corba-build corba-clobber 
fd16c54261b3 Initial load
duke
parents:
diff changeset
    56