corba/make/org/omg/sources/Makefile
author martin
Mon, 07 Dec 2009 15:32:26 -0800
changeset 4354 3a70dde80b3b
parent 4 02bb8761fcce
child 5555 b2b5ed3f0d0d
permissions -rw-r--r--
6905029: Broken links in Deflater and DeflaterOutputStream javadoc Summary: Fix syntax errors in @links Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     2
# Copyright 2000-2006 Sun Microsystems, Inc.  All Rights Reserved.
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
02bb8761fcce Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
02bb8761fcce Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
02bb8761fcce Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
02bb8761fcce Initial load
duke
parents:
diff changeset
    23
# have any questions.
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
BUILDDIR = ../../..
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
PACKAGE = org.omg
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
PRODUCT = org
02bb8761fcce Initial load
duke
parents:
diff changeset
    30
02bb8761fcce Initial load
duke
parents:
diff changeset
    31
include $(BUILDDIR)/common/Defs.gmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
02bb8761fcce Initial load
duke
parents:
diff changeset
    33
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    34
# Files
02bb8761fcce Initial load
duke
parents:
diff changeset
    35
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    36
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
02bb8761fcce Initial load
duke
parents:
diff changeset
    37
include $(CORBA_JMK_DIRECTORY)org_omg_PortableServer.jmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    38
include $(CORBA_JMK_DIRECTORY)org_omg_DynamicAny.jmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    39
include $(CORBA_JMK_DIRECTORY)org_omg_CosNaming.jmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    40
include $(CORBA_JMK_DIRECTORY)org_omg_IOP.jmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    41
include $(CORBA_JMK_DIRECTORY)org_omg_Messaging.jmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    42
include $(CORBA_JMK_DIRECTORY)org_omg_CORBAX.jmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    43
include $(CORBA_JMK_DIRECTORY)org_omg_PortableInterceptor.jmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    44
02bb8761fcce Initial load
duke
parents:
diff changeset
    45
ifdef STANDALONE_CORBA_WS
02bb8761fcce Initial load
duke
parents:
diff changeset
    46
include $(CORBA_JMK_DIRECTORY)org_omg_CosTransactions.jmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    47
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    48
02bb8761fcce Initial load
duke
parents:
diff changeset
    49
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    50
# Rules
02bb8761fcce Initial load
duke
parents:
diff changeset
    51
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    52
02bb8761fcce Initial load
duke
parents:
diff changeset
    53
ifdef STANDALONE_CORBA_WS
02bb8761fcce Initial load
duke
parents:
diff changeset
    54
build: poa.compile iop.compile corbax.compile messaging.compile pi.compile dynany.compile ns.compile tr.compile
02bb8761fcce Initial load
duke
parents:
diff changeset
    55
clean clobber:: pi.clean iop.clean corbax.clean messaging.clean poa.clean dynany.clean ns.clean tr.clean
02bb8761fcce Initial load
duke
parents:
diff changeset
    56
else
02bb8761fcce Initial load
duke
parents:
diff changeset
    57
build: poa.compile iop.compile corbax.compile messaging.compile pi.compile ns.compile dynany.compile
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
clean clobber:: iop.clean corbax.clean messaging.clean pi.clean poa.clean ns.clean dynany.clean
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    63
# These rules are for compiling/cleaning the POA generated stuff
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
02bb8761fcce Initial load
duke
parents:
diff changeset
    66
SRC_DIR = $(SHARE_SRC)/classes
02bb8761fcce Initial load
duke
parents:
diff changeset
    67
CORBA_IDL_DIR = $(SRC_DIR)/org/omg/PortableServer
02bb8761fcce Initial load
duke
parents:
diff changeset
    68
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
# IDL Files
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
POA.IDL = $(SRC_DIR)/org/omg/PortableServer/poa.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
DYNAMIC_ANY.IDL = $(SRC_DIR)/org/omg/DynamicAny/DynamicAny.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    73
COSTRANSACTIONS.IDL = $(SRC_DIR)/org/omg/CosTransactions/CosTransactions.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    74
COSTSINTEROP.IDL = $(SRC_DIR)/org/omg/CosTransactions/CosTSInteroperation.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    75
NAMESERVICE.IDL = $(SRC_DIR)/org/omg/CosNaming/nameservice.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    76
# The following 4 files are for Portable Interceptors
02bb8761fcce Initial load
duke
parents:
diff changeset
    77
IOP.IDL = $(SRC_DIR)/org/omg/PortableInterceptor/IOP.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    78
CORBAX.IDL = $(SRC_DIR)/org/omg/PortableInterceptor/CORBAX.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    79
MESSAGING.IDL = $(SRC_DIR)/org/omg/PortableInterceptor/Messaging.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    80
INTERCEPTORS.IDL = $(SRC_DIR)/org/omg/PortableInterceptor/Interceptors.idl
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
# IDL Directories
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
POAFILEDIR = $(GENSRCDIR)/org/omg/PortableServer
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
POASRCDIR = $(SRC_DIR)/org/omg/PortableServer
02bb8761fcce Initial load
duke
parents:
diff changeset
    86
DYNANY_DIR = $(GENSRCDIR)/org/omg/DynamicAny
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
NAMESERVICEDIR = $(GENSRCDIR)/org/omg/CosNaming
02bb8761fcce Initial load
duke
parents:
diff changeset
    88
INTERCEPTORSDIR = $(GENSRCDIR)/org/omg/PortableInterceptor
02bb8761fcce Initial load
duke
parents:
diff changeset
    89
02bb8761fcce Initial load
duke
parents:
diff changeset
    90
# POA files and Rules
02bb8761fcce Initial load
duke
parents:
diff changeset
    91
02bb8761fcce Initial load
duke
parents:
diff changeset
    92
POAGENERATEDFILES = $(POA_GENERATED_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
    93
POAHELHOLFILES =    $(POA_GENERATED_HELP_HOL_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
02bb8761fcce Initial load
duke
parents:
diff changeset
    95
$(POAGENERATEDFILES):: $(POA.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
    96
	$(IDLJ) -td "$(GENSRCDIR)" -i "$(SRC_DIR)/org/omg/PortableServer" -i "$(SRC_DIR)/org/omg/PortableInterceptor" -corba 3.0 -fall -pkgPrefix PortableServer org.omg $(POA.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
	$(RM) -r $(POAHELHOLFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
poa.compile: $(POAGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
02bb8761fcce Initial load
duke
parents:
diff changeset
   101
poa.clean: 
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
	$(RM) -r $(POAFILEDIR)
02bb8761fcce Initial load
duke
parents:
diff changeset
   103
02bb8761fcce Initial load
duke
parents:
diff changeset
   104
# DynAny Files and Rules
02bb8761fcce Initial load
duke
parents:
diff changeset
   105
02bb8761fcce Initial load
duke
parents:
diff changeset
   106
DYNANY_IDLJ_FLAGS=-i "$(SRC_DIR)/org/omg/CORBA" -corba 3.0 -fall -pkgPrefix DynamicAny org.omg
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
02bb8761fcce Initial load
duke
parents:
diff changeset
   108
DYNANYFILES = $(DYNANY_GENERATED_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   109
DYNANYDELETEFILES = $(DYNANY_TO_DELETE_FILES:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
02bb8761fcce Initial load
duke
parents:
diff changeset
   111
# Generating and deleting unused files to reduce images size
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
$(DYNANYFILES): $(DYNAMIC_ANY.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   113
	$(IDLJ) -td "$(GENSRCDIR)" $(DYNANY_IDLJ_FLAGS) $(DYNAMIC_ANY.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   114
	$(RM) $(DYNANY_DIR)/*POA*
02bb8761fcce Initial load
duke
parents:
diff changeset
   115
	$(RM) $(DYNANY_DIR)/*Holder*
02bb8761fcce Initial load
duke
parents:
diff changeset
   116
	$(RM) $(DYNANYDELETEFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
02bb8761fcce Initial load
duke
parents:
diff changeset
   118
dynany.compile: $(DYNANYFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   119
02bb8761fcce Initial load
duke
parents:
diff changeset
   120
dynany.clean:
02bb8761fcce Initial load
duke
parents:
diff changeset
   121
	$(RM) -r $(DYNANY_DIR)
02bb8761fcce Initial load
duke
parents:
diff changeset
   122
02bb8761fcce Initial load
duke
parents:
diff changeset
   123
# CosTransactions Files
02bb8761fcce Initial load
duke
parents:
diff changeset
   124
TRGENERATEDFILES = $(TR_GENERATED_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   125
TR_IDLJ_FLAGS =-i "$(SRC_DIR)/org/omg/PortableInterceptor" -i "$(SRC_DIR)/org/omg/PortableServer" -i "$(SRC_DIR)/org/omg/CosTransactions"
02bb8761fcce Initial load
duke
parents:
diff changeset
   126
02bb8761fcce Initial load
duke
parents:
diff changeset
   127
$(TRGENERATEDFILES):: $(COSTRANSACTIONS.IDL) $(COSTSINTEROP.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   128
	$(IDLJ) -td "$(GENSRCDIR)" $(TR_IDLJ_FLAGS) -D CORBA3 -corba 3.0 -fall -pkgPrefix CORBA org.omg -pkgPrefix CosTransactions org.omg $(COSTRANSACTIONS.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   129
	$(IDLJ) -td "$(GENSRCDIR)" $(TR_IDLJ_FLAGS) -D CORBA3 -corba 3.0 -fall -pkgPrefix CORBA org.omg -pkgPrefix CosTSInteroperation org.omg $(COSTSINTEROP.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   130
#	$(IDLJ) -td "$(GENSRCDIR)" $(TR_IDLJ_FLAGS) -D CORBA3 -corba 3.0 -fall -pkgPrefix CORBA org.omg $(TRANSACTIONS.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   131
#	$(IDLJ) -td "$(GENSRCDIR)" $(TR_IDLJ_FLAGS) -D CORBA3 -corba 3.0 -fallTIE -pkgPrefix CORBA org.omg $(TRANSACTIONS.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   132
#	$(IDLJ) -td "$(GENSRCDIR)" $(TR_IDLJ_FLAGS) -D CORBA3 -corba 3.0 -fall -pkgPrefix CORBA org.omg $(TRANSACTIONS.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   133
#	$(IDLJ) -td "$(GENSRCDIR)" $(TR_IDLJ_FLAGS) -D CORBA3 -corba 3.0 -fallTIE -pkgPrefix CORBA org.omg $(TRANSACTIONS.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   134
02bb8761fcce Initial load
duke
parents:
diff changeset
   135
tr.compile: $(TRGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   136
02bb8761fcce Initial load
duke
parents:
diff changeset
   137
tr.clean:
02bb8761fcce Initial load
duke
parents:
diff changeset
   138
	$(RM) -f $(TRGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   139
02bb8761fcce Initial load
duke
parents:
diff changeset
   140
#CosNaming Files
02bb8761fcce Initial load
duke
parents:
diff changeset
   141
NSGENERATEDFILES = $(NS_GENERATED_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   142
02bb8761fcce Initial load
duke
parents:
diff changeset
   143
# Compile NameService IDL file and then copy
02bb8761fcce Initial load
duke
parents:
diff changeset
   144
# _NamingContextImplBase.java and _BindingIteratorImplBase.java files
02bb8761fcce Initial load
duke
parents:
diff changeset
   145
# to GENSRC directory. Note that these two classes are deprecated.
02bb8761fcce Initial load
duke
parents:
diff changeset
   146
$(NSGENERATEDFILES): $(NAMESERVICE.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   147
	$(IDLJ) -td "$(GENSRCDIR)" -i $(NAMESERVICEDIR) -fall -pkgPrefix CosNaming org.omg $(NAMESERVICE.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   148
02bb8761fcce Initial load
duke
parents:
diff changeset
   149
ns.compile: $(NSGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   150
02bb8761fcce Initial load
duke
parents:
diff changeset
   151
ns.clean:
02bb8761fcce Initial load
duke
parents:
diff changeset
   152
	$(RM) -f $(NSGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   153
02bb8761fcce Initial load
duke
parents:
diff changeset
   154
#IOP compile 
02bb8761fcce Initial load
duke
parents:
diff changeset
   155
IOPGENERATEDFILES = $(IOP_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   156
IOPDELETEFILES =    $(IOP_TO_DELETE_FILES:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   157
02bb8761fcce Initial load
duke
parents:
diff changeset
   158
$(IOPGENERATEDFILES):: $(IOP.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   159
	$(IDLJ) -td "$(GENSRCDIR)" -i "$(SRC_DIR)/org/omg/PortableInterceptor" -i $(CORBA_IDL_DIR) -fall -corba 3.0 -D CORBA3 -pkgPrefix IOP org.omg $(IOP.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   160
	$(RM) -r $(IOPDELETEFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   161
02bb8761fcce Initial load
duke
parents:
diff changeset
   162
iop.compile: $(IOPGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   163
02bb8761fcce Initial load
duke
parents:
diff changeset
   164
iop.clean: 
02bb8761fcce Initial load
duke
parents:
diff changeset
   165
	$(RM) $(IOPGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   166
02bb8761fcce Initial load
duke
parents:
diff changeset
   167
#CORBAX compile 
02bb8761fcce Initial load
duke
parents:
diff changeset
   168
CORBAXGENERATEDFILES = $(CORBA_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   169
CORBAXDUPLICATEFILES = $(CORBA_DUPLICATE_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   170
02bb8761fcce Initial load
duke
parents:
diff changeset
   171
$(CORBAXGENERATEDFILES):: $(CORBAX.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   172
	$(IDLJ) -td "$(GENSRCDIR)" -i "$(SRC_DIR)/org/omg/PortableInterceptor" -i $(CORBA_IDL_DIR) -fall -corba 3.0 $(CORBAX.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   173
	$(RM) $(CORBAXDUPLICATEFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   174
02bb8761fcce Initial load
duke
parents:
diff changeset
   175
corbax.compile: $(CORBAXGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   176
02bb8761fcce Initial load
duke
parents:
diff changeset
   177
corbax.clean: 
02bb8761fcce Initial load
duke
parents:
diff changeset
   178
	$(RM) $(CORBAXGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   179
02bb8761fcce Initial load
duke
parents:
diff changeset
   180
#Messaging compile 
02bb8761fcce Initial load
duke
parents:
diff changeset
   181
MESSAGINGGENERATEDFILES = $(Messaging_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   182
02bb8761fcce Initial load
duke
parents:
diff changeset
   183
$(MESSAGINGGENERATEDFILES):: $(MESSAGING.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   184
	$(IDLJ) -td "$(GENSRCDIR)" -i "$(SRC_DIR)/org/omg/PortableInterceptor" -i $(CORBA_IDL_DIR) -fall -corba 3.0 -pkgPrefix Messaging org.omg $(MESSAGING.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   185
02bb8761fcce Initial load
duke
parents:
diff changeset
   186
messaging.compile: $(MESSAGINGGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   187
02bb8761fcce Initial load
duke
parents:
diff changeset
   188
messaging.clean: 
02bb8761fcce Initial load
duke
parents:
diff changeset
   189
	$(RM) $(MESSAGINGGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   190
02bb8761fcce Initial load
duke
parents:
diff changeset
   191
02bb8761fcce Initial load
duke
parents:
diff changeset
   192
02bb8761fcce Initial load
duke
parents:
diff changeset
   193
#PortableInterceptor Files
02bb8761fcce Initial load
duke
parents:
diff changeset
   194
PIGENERATEDFILES = $(PI_GENERATED_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   195
PIHELHOLFILES = $(PI_GENERATED_HELP_HOL_java:%=$(GENSRCDIR)/%)
02bb8761fcce Initial load
duke
parents:
diff changeset
   196
02bb8761fcce Initial load
duke
parents:
diff changeset
   197
$(PIGENERATEDFILES):: $(INTERCEPTORS.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   198
	$(IDLJ) -td "$(GENSRCDIR)" -i "$(SRC_DIR)/org/omg/PortableInterceptor" -i $(CORBA_IDL_DIR) -fall -pkgPrefix PortableInterceptor org.omg -pkgPrefix Dynamic org.omg -pkgPrefix IOP org.omg -corba 3.0 -D CORBA3 $(INTERCEPTORS.IDL)
02bb8761fcce Initial load
duke
parents:
diff changeset
   199
	$(RM) $(PIHELHOLFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   200
02bb8761fcce Initial load
duke
parents:
diff changeset
   201
pi.compile: $(PIGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   202
02bb8761fcce Initial load
duke
parents:
diff changeset
   203
pi.clean:
02bb8761fcce Initial load
duke
parents:
diff changeset
   204
	$(RM) -f $(PIGENERATEDFILES)
02bb8761fcce Initial load
duke
parents:
diff changeset
   205
02bb8761fcce Initial load
duke
parents:
diff changeset
   206
02bb8761fcce Initial load
duke
parents:
diff changeset
   207
ifdef STANDALONE_CORBA_WS
02bb8761fcce Initial load
duke
parents:
diff changeset
   208
.PHONY : poa.compile poa.clean iop.compile iop.clean messaging.compile messaging.clean corbax.compile corbax.clean pi.compile pi.clean dynany.clean dynany.compile ns.compile ns.clean tr.compile tr.clean
02bb8761fcce Initial load
duke
parents:
diff changeset
   209
else
02bb8761fcce Initial load
duke
parents:
diff changeset
   210
.PHONY : poa.compile poa.clean iop.compile iop.clean messaging.compile messaging.clean corbax.compile corbax.clean pi.compile pi.clean ns.compile ns.clean dynany.clean dynany.compile
02bb8761fcce Initial load
duke
parents:
diff changeset
   211
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   212
02bb8761fcce Initial load
duke
parents:
diff changeset
   213
include $(BUILDDIR)/common/Rules.gmk