This commit is contained in:
Vladimir Kozlov 2013-12-05 15:12:22 -08:00
commit 3a6874c2c2
1846 changed files with 7812 additions and 80271 deletions

View File

@ -239,3 +239,4 @@ dfa34ab293faad9b543a24646dbb381bc3ab5586 jdk8-b114
3dd9732b17034f45d111996d1d50287b05a3998c jdk8-b115
aaf663f591aba43ec942263b15ba62759ce26a1e jdk8-b116
31b0e03fcad73d7886b306b4c2e57ad270780d0d jdk8-b117
f5b521ade7a35cea18df78ee86322207729f5611 jdk8-b118

View File

@ -239,3 +239,5 @@ d086227bfc45d124f09b3bd72a07956b4073bf71 jdk8-b111
763ada2a1d8c5962bc8c3d297e57c562d2e95338 jdk8-b115
cbfe5da942c63ef865cab4a7159e01eff7d7fcf5 jdk8-b116
a4afb0a8d55ef75aef5b0d77b434070468fb89f8 jdk8-b117
0a6db1aac998cdc88e52f9adb97d40ca5b0f1da6 jdk8-b118
9e90215673be68a3e77a9e444e4232076373734d jdk8-b119

635
Makefile
View File

@ -1,5 +1,5 @@
#
# Copyright (c) 1995, 2012, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@ -23,549 +23,112 @@
# questions.
#
# If NEWBUILD is defined, use the new build-infra Makefiles and configure.
# See NewMakefile.gmk for more information.
# This must be the first rule
default:
# If not specified, select what the default build is
ifndef NEWBUILD
NEWBUILD=true
# Inclusion of this pseudo-target will cause make to execute this file
# serially, regardless of -j. Recursively called makefiles will not be
# affected, however. This is required for correct dependency management.
.NOTPARALLEL:
# The shell code below will be executed on /usr/ccs/bin/make on Solaris, but not in GNU make.
# /usr/ccs/bin/make lacks basically every other flow control mechanism.
TEST_FOR_NON_GNUMAKE:sh=echo You are not using GNU make/gmake, this is a requirement. Check your path. 1>&2 && exit 1
# Assume we have GNU make, but check version.
ifeq ($(strip $(foreach v, 3.81% 3.82% 4.%, $(filter $v, $(MAKE_VERSION)))), )
$(error This version of GNU Make is too low ($(MAKE_VERSION)). Check your path, or upgrade to 3.81 or newer.)
endif
ifeq ($(NEWBUILD),true)
# The new top level Makefile
include NewMakefile.gmk
else # Original Makefile logic
BUILD_PARENT_DIRECTORY=.
# Basename of any originally supplied ALT_OUTPUTDIR directory
ifndef ORIG_OUTPUTDIR_BASENAME
ifdef ALT_OUTPUTDIR
ORIG_OUTPUTDIR_BASENAME := $(shell basename $(ALT_OUTPUTDIR))
else
ORIG_OUTPUTDIR_BASENAME = $(PLATFORM)-$(ARCH)
endif
endif
export ORIG_OUTPUTDIR_BASENAME
# The three possible directories created for output (3 build flavors)
OUTPUTDIR_BASENAME- = $(ORIG_OUTPUTDIR_BASENAME)
OUTPUTDIR_BASENAME-debug = $(ORIG_OUTPUTDIR_BASENAME)-debug
OUTPUTDIR_BASENAME-fastdebug = $(ORIG_OUTPUTDIR_BASENAME)-fastdebug
# Relative path to a debug output area
REL_JDK_OUTPUTDIR = ../$(OUTPUTDIR_BASENAME-$(DEBUG_NAME))
# The created jdk image directory
JDK_IMAGE_DIRNAME = j2sdk-image
JDK_IMAGE_DIR = $(OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
ABS_JDK_IMAGE_DIR = $(ABS_OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
# Relative path from an output directory to the image directory
REL_JDK_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-$(DEBUG_NAME))/$(JDK_IMAGE_DIRNAME)
REL_JDK_DEBUG_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-debug)/$(JDK_IMAGE_DIRNAME)
REL_JDK_FASTDEBUG_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-fastdebug)/$(JDK_IMAGE_DIRNAME)
ifndef TOPDIR
TOPDIR:=.
endif
ifndef JDK_TOPDIR
JDK_TOPDIR=$(TOPDIR)/jdk
endif
ifndef JDK_MAKE_SHARED_DIR
JDK_MAKE_SHARED_DIR=$(JDK_TOPDIR)/make/common/shared
endif
default: all
include $(JDK_MAKE_SHARED_DIR)/Defs-control.gmk
include ./make/Defs-internal.gmk
include ./make/sanity-rules.gmk
include ./make/hotspot-rules.gmk
include ./make/langtools-rules.gmk
include ./make/corba-rules.gmk
include ./make/jaxp-rules.gmk
include ./make/jaxws-rules.gmk
include ./make/jdk-rules.gmk
include ./make/nashorn-rules.gmk
include ./make/install-rules.gmk
include ./make/sponsors-rules.gmk
include ./make/deploy-rules.gmk
all:: sanity
ifeq ($(SKIP_FASTDEBUG_BUILD), false)
all:: fastdebug_build
endif
ifeq ($(SKIP_DEBUG_BUILD), false)
all:: debug_build
endif
all:: all_product_build
all_product_build::
# Everything for a full product build
ifeq ($(SKIP_PRODUCT_BUILD), false)
all_product_build:: product_build
ifeq ($(BUILD_INSTALL), true)
all_product_build:: $(INSTALL)
clobber:: install-clobber
endif
ifeq ($(BUILD_SPONSORS), true)
all_product_build:: $(SPONSORS)
clobber:: sponsors-clobber
endif
ifneq ($(SKIP_COMPARE_IMAGES), true)
all_product_build:: compare-image
endif
endif
define StartTimer
$(MKDIR) -p $(BUILDTIMESDIR)
$(RM) $(BUILDTIMESDIR)/build_time_*
$(call RecordStartTime,TOTAL)
endef
define StopTimer
$(if $(REPORT_BUILD_TIMES),$(call RecordEndTime,TOTAL) && $(call ReportBuildTimes,$1),)
endef
# Generic build of basic repo series
generic_build_repo_series:: $(SOURCE_TIPS)
$(MKDIR) -p $(JDK_IMAGE_DIR)
@$(call StartTimer)
ifeq ($(BUILD_LANGTOOLS), true)
generic_build_repo_series:: langtools
clobber:: langtools-clobber
endif
ifeq ($(BUILD_CORBA), true)
generic_build_repo_series:: corba
clobber:: corba-clobber
endif
ifeq ($(BUILD_JAXP), true)
generic_build_repo_series:: jaxp
clobber:: jaxp-clobber
endif
ifeq ($(BUILD_JAXWS), true)
generic_build_repo_series:: jaxws
clobber:: jaxws-clobber
endif
ifeq ($(BUILD_HOTSPOT), true)
generic_build_repo_series:: $(HOTSPOT)
clobber:: hotspot-clobber
endif
ifeq ($(BUILD_JDK), true)
generic_build_repo_series:: $(JDK_JAVA_EXE)
clobber:: jdk-clobber
endif
ifeq ($(BUILD_NASHORN), true)
generic_build_repo_series:: $(NASHORN)
clobber:: nashorn-clobber
endif
ifeq ($(BUILD_DEPLOY), true)
generic_build_repo_series:: $(DEPLOY)
clobber:: deploy-clobber
endif
generic_build_repo_series::
@$(call StopTimer,$(if $(DEBUG_NAME),$(DEBUG_NAME)_build,all_product_build))
# The debug build, fastdebug or debug. Needs special handling.
# Note that debug builds do NOT do INSTALL steps, but must be done
# after the product build and before the INSTALL step of the product build.
#
# DEBUG_NAME is fastdebug or debug
# ALT_OUTPUTDIR is changed to have -debug or -fastdebug suffix
# The resulting image directory (j2sdk-image) is used by the install makefiles
# to create a debug install bundle jdk-*-debug-** bundle (tar or zip)
# which will install in the debug or fastdebug subdirectory of the
# normal product install area.
# The install process needs to know what the DEBUG_NAME is, so
# look for INSTALL_DEBUG_NAME in the install rules.
#
# NOTE: On windows, do not use $(ABS_BOOTDIR_OUTPUTDIR)-$(DEBUG_NAME).
# Due to the use of short paths in $(ABS_OUTPUTDIR), this may
# not be the same location.
#
# Location of fresh bootdir output
ABS_BOOTDIR_OUTPUTDIR=$(ABS_OUTPUTDIR)/bootjdk
FRESH_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
FRESH_DEBUG_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/$(REL_JDK_IMAGE_DIR)
create_fresh_product_bootdir: FRC
$(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
GENERATE_DOCS=false \
BOOT_CYCLE_SETTINGS= \
build_product_image
create_fresh_debug_bootdir: FRC
$(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
GENERATE_DOCS=false \
BOOT_CYCLE_DEBUG_SETTINGS= \
build_debug_image
create_fresh_fastdebug_bootdir: FRC
$(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
GENERATE_DOCS=false \
BOOT_CYCLE_DEBUG_SETTINGS= \
build_fastdebug_image
# Create boot image?
ifeq ($(SKIP_BOOT_CYCLE),false)
ifneq ($(PLATFORM)$(ARCH_DATA_MODEL),solaris64)
DO_BOOT_CYCLE=true
endif
endif
ifeq ($(DO_BOOT_CYCLE),true)
# Create the bootdir to use in the build
product_build:: create_fresh_product_bootdir
debug_build:: create_fresh_debug_bootdir
fastdebug_build:: create_fresh_fastdebug_bootdir
# Define variables to be used now for the boot jdk
BOOT_CYCLE_SETTINGS= \
ALT_BOOTDIR=$(FRESH_BOOTDIR) \
ALT_JDK_IMPORT_PATH=$(FRESH_BOOTDIR)
BOOT_CYCLE_DEBUG_SETTINGS= \
ALT_BOOTDIR=$(FRESH_DEBUG_BOOTDIR) \
ALT_JDK_IMPORT_PATH=$(FRESH_DEBUG_BOOTDIR)
# Locate this Makefile
ifeq ($(filter /%,$(lastword $(MAKEFILE_LIST))),)
makefile_path:=$(CURDIR)/$(lastword $(MAKEFILE_LIST))
else
makefile_path:=$(lastword $(MAKEFILE_LIST))
endif
root_dir:=$(dir $(makefile_path))
# Use the supplied ALT_BOOTDIR as the boot
BOOT_CYCLE_SETTINGS=
BOOT_CYCLE_DEBUG_SETTINGS=
# ... and then we can include our helper functions
include $(root_dir)/make/MakeHelpers.gmk
$(eval $(call ParseLogLevel))
$(eval $(call ParseConfAndSpec))
# Now determine if we have zero, one or several configurations to build.
ifeq ($(SPEC),)
# Since we got past ParseConfAndSpec, we must be building a global target. Do nothing.
else
ifeq ($(words $(SPEC)),1)
# We are building a single configuration. This is the normal case. Execute the Main.gmk file.
include $(root_dir)/make/Main.gmk
else
# We are building multiple configurations.
# First, find out the valid targets
# Run the makefile with an arbitrary SPEC using -p -q (quiet dry-run and dump rules) to find
# available PHONY targets. Use this list as valid targets to pass on to the repeated calls.
all_phony_targets=$(filter-out $(global_targets) bundles-only, $(strip $(shell \
$(MAKE) -p -q -f make/Main.gmk FRC SPEC=$(firstword $(SPEC)) | \
grep ^.PHONY: | head -n 1 | cut -d " " -f 2-)))
$(all_phony_targets):
@$(foreach spec,$(SPEC),($(MAKE) -f NewMakefile.gmk SPEC=$(spec) \
$(VERBOSE) VERBOSE=$(VERBOSE) LOG_LEVEL=$(LOG_LEVEL) $@) &&) true
.PHONY: $(all_phony_targets)
endif
endif
build_product_image:
$(MAKE) \
SKIP_FASTDEBUG_BUILD=true \
SKIP_DEBUG_BUILD=true \
$(BOOT_CYCLE_SETTINGS) \
generic_build_repo_series
# Include this after a potential spec file has been included so that the bundles target
# has access to the spec variables.
include $(root_dir)/make/Jprt.gmk
# NOTE: On windows, do not use $(ABS_OUTPUTDIR)-$(DEBUG_NAME).
# Due to the use of short paths in $(ABS_OUTPUTDIR), this may
# not be the same location.
# Here are "global" targets, i.e. targets that can be executed without specifying a single configuration.
# If you addd more global targets, please update the variable global_targets in MakeHelpers.
generic_debug_build:
$(MAKE) \
ALT_OUTPUTDIR=$(ABS_OUTPUTDIR)/$(REL_JDK_OUTPUTDIR) \
DEBUG_NAME=$(DEBUG_NAME) \
GENERATE_DOCS=false \
$(BOOT_CYCLE_DEBUG_SETTINGS) \
generic_build_repo_series
build_debug_image:
$(MAKE) DEBUG_NAME=debug generic_debug_build
build_fastdebug_image:
$(MAKE) DEBUG_NAME=fastdebug generic_debug_build
# Build final image
product_build:: build_product_image
debug_build:: build_debug_image
fastdebug_build:: build_fastdebug_image
# The source tips are stored with the relative path to the repo.
# This file will be used when constructing the jdk image.
source_tips: $(SOURCE_TIPS)
$(CAT) $<
$(SOURCE_TIPS): FRC
@$(prep-target)
@$(call GetSourceTips)
clobber:: REPORT_BUILD_TIMES=
clobber::
$(RM) -r $(OUTPUTDIR)/*
-($(RMDIR) -p $(OUTPUTDIR) > $(DEV_NULL) 2>&1; $(TRUE))
clean: clobber
#
# Dev builds
#
dev : dev-build
dev-build:
$(MAKE) DEV_ONLY=true all
dev-sanity:
$(MAKE) DEV_ONLY=true sanity
dev-clobber:
$(MAKE) DEV_ONLY=true clobber
#
# Quick jdk verification build
#
jdk_only:
$(MAKE) SKIP_FASTDEBUG_BUILD=true BUILD_HOTSPOT=false all
#
# Quick jdk verification fastdebug build
#
jdk_fastdebug_only:
$(MAKE) DEBUG_NAME=fastdebug BUILD_HOTSPOT=false BUILD_DEPLOY=false \
BUILD_INSTALL=false BUILD_SPONSORS=false generic_debug_build
#
# Quick deploy verification fastdebug build
#
deploy_fastdebug_only:
$(MAKE) \
DEBUG_NAME=fastdebug \
BUILD_HOTSPOT=false \
BUILD_JDK=false \
BUILD_LANGTOOLS=false \
BUILD_NASHORN=false \
BUILD_CORBA=false \
BUILD_JAXP=false \
BUILD_JAXWS=false \
BUILD_INSTALL=false \
BUILD_SPONSORS=false \
generic_debug_build
#
# Product build (skip debug builds)
#
product_only:
$(MAKE) SKIP_FASTDEBUG_BUILD=true all
#
# Check target
#
check: variable_check
#
# Help target
#
help: intro_help target_help variable_help notes_help examples_help
# Intro help message
intro_help:
@$(ECHO) "\
Makefile for the JDK builds (all the JDK). \n\
"
# Target help
target_help:
@$(ECHO) "\
--- Common Targets --- \n\
all -- build the core JDK (default target) \n\
help -- Print out help information \n\
check -- Check make variable values for correctness \n\
sanity -- Perform detailed sanity checks on system and settings \n\
fastdebug_build -- build the core JDK in 'fastdebug' mode (-g -O) \n\
debug_build -- build the core JDK in 'debug' mode (-g) \n\
clean -- remove all built and imported files \n\
clobber -- same as clean \n\
"
# Variable help (only common ones used by this Makefile)
variable_help: variable_help_intro variable_list variable_help_end
variable_help_intro:
@$(ECHO) "--- Common Variables ---"
variable_help_end:
@$(ECHO) " "
# One line descriptions for the variables
OUTPUTDIR.desc = Output directory
PARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count
SLASH_JAVA.desc = Root of all build tools, e.g. /java or J:
BOOTDIR.desc = JDK used to boot the build
JDK_IMPORT_PATH.desc = JDK used to import components of the build
COMPILER_PATH.desc = Compiler install directory
CACERTS_FILE.desc = Location of certificates file
DEVTOOLS_PATH.desc = Directory containing zip and gnumake
CUPS_HEADERS_PATH.desc = Include directory location for CUPS header files
# Make variables to print out (description and value)
VARIABLE_PRINTVAL_LIST += \
OUTPUTDIR \
PARALLEL_COMPILE_JOBS \
SLASH_JAVA \
BOOTDIR \
JDK_IMPORT_PATH \
COMPILER_PATH \
CACERTS_FILE \
DEVTOOLS_PATH
# Make variables that should refer to directories that exist
VARIABLE_CHECKDIR_LIST += \
SLASH_JAVA \
BOOTDIR \
JDK_IMPORT_PATH \
COMPILER_PATH \
DEVTOOLS_PATH
# Make variables that should refer to files that exist
VARIABLE_CHECKFIL_LIST += \
CACERTS_FILE
# For pattern rules below, so all are treated the same
DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
DO_CHECKFIL_LIST=$(VARIABLE_CHECKFIL_LIST:%=%.checkfil)
# Complete variable check
variable_check: $(DO_CHECKDIR_LIST) $(DO_CHECKFIL_LIST)
variable_list: $(DO_PRINTVAL_LIST) variable_check
# Pattern rule for printing out a variable
%.printval:
@$(ECHO) " ALT_$* - $($*.desc)"
@$(ECHO) " \t $*=$($*)"
# Pattern rule for checking to see if a variable with a directory exists
%.checkdir:
@if [ ! -d $($*) ] ; then \
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
fi
# Pattern rule for checking to see if a variable with a file exists
%.checkfil:
@if [ ! -f $($*) ] ; then \
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
fi
# Misc notes on help
notes_help:
@$(ECHO) "\
--- Notes --- \n\
- All builds use same output directory unless overridden with \n\
\t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\
\t to use the clean target first. \n\
- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\
\t builds or previous release JDK builds will work. \n\
- The fastest builds have been when the sources and the BOOTDIR are on \n\
\t local disk. \n\
"
examples_help:
@$(ECHO) "\
--- Examples --- \n\
$(MAKE) fastdebug_build \n\
$(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
$(MAKE) ALT_OUTPUTDIR=/tmp/foobar fastdebug_build \n\
$(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
$(MAKE) ALT_BOOTDIR=/opt/java/jdk1.5.0 \n\
$(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk1.6.0 \n\
"
################################################################
# Source bundling
################################################################
ifeq ($(BUNDLE_RULES_AVAILABLE), true)
include $(BUNDLE_RULES)
endif
################################################################
# rule to test
################################################################
.NOTPARALLEL: test_run
test:
$(MAKE) test_run
test_run: test_clean test_start test_summary
test_start:
@$(ECHO) "Tests started at `$(DATE)`"
test_clean:
$(RM) $(OUTPUTDIR)/test_failures.txt $(OUTPUTDIR)/test_log.txt
test_summary: $(OUTPUTDIR)/test_failures.txt
@$(ECHO) "#################################################"
@$(ECHO) "Tests completed at `$(DATE)`"
@( $(EGREP) '^TEST STATS:' $(OUTPUTDIR)/test_log.txt \
|| $(ECHO) "No TEST STATS seen in log" )
@$(ECHO) "For complete details see: $(OUTPUTDIR)/test_log.txt"
@$(ECHO) "#################################################"
@if [ -s $< ] ; then \
$(ECHO) "ERROR: Test failure count: `$(CAT) $< | $(WC) -l`"; \
$(CAT) $<; \
exit 1; \
else \
$(ECHO) "Success! No failures detected"; \
fi
# Get failure list from log
$(OUTPUTDIR)/test_failures.txt: $(OUTPUTDIR)/test_log.txt
@$(RM) $@
@( $(EGREP) '^FAILED:' $< || $(ECHO) "" ) | $(NAWK) 'length>0' > $@
# Get log file of all tests run
JDK_TO_TEST := $(shell \
if [ -d "$(ABS_JDK_IMAGE_DIR)" ] ; then \
$(ECHO) "$(ABS_JDK_IMAGE_DIR)"; \
elif [ -d "$(ABS_OUTPUTDIR)/bin" ] ; then \
$(ECHO) "$(ABS_OUTPUTDIR)"; \
elif [ "$(PRODUCT_HOME)" != "" -a -d "$(PRODUCT_HOME)/bin" ] ; then \
$(ECHO) "$(PRODUCT_HOME)"; \
fi \
)
TEST_TARGETS=all
$(OUTPUTDIR)/test_log.txt:
$(RM) $@
( $(CD) test && \
$(MAKE) NO_STOPPING=- PRODUCT_HOME=$(JDK_TO_TEST) $(TEST_TARGETS) \
) | tee $@
################################################################
# JPRT rule to build
################################################################
include ./make/jprt.gmk
################################################################
# PHONY
################################################################
.PHONY: all test test_run test_start test_summary test_clean \
generic_build_repo_series \
what clobber insane \
dev dev-build dev-sanity dev-clobber \
product_build \
fastdebug_build \
debug_build \
build_product_image \
build_debug_image \
build_fastdebug_image \
create_fresh_product_bootdir \
create_fresh_debug_bootdir \
create_fresh_fastdebug_bootdir \
generic_debug_build
# Force target
FRC:
endif # Original Makefile logic
help:
$(info )
$(info OpenJDK Makefile help)
$(info =====================)
$(info )
$(info Common make targets)
$(info . make [default] # Compile all product in langtools, hotspot, jaxp, jaxws,)
$(info . # corba and jdk)
$(info . make all # Compile everything, all repos and images)
$(info . make images # Create complete j2sdk and j2re images)
$(info . make docs # Create javadocs)
$(info . make overlay-images # Create limited images for sparc 64 bit platforms)
$(info . make profiles # Create complete j2re compact profile images)
$(info . make bootcycle-images # Build images twice, second time with newly build JDK)
$(info . make install # Install the generated images locally)
$(info . make clean # Remove all files generated by make, but not those)
$(info . # generated by configure)
$(info . make dist-clean # Remove all files, including configuration)
$(info . make help # Give some help on using make)
$(info . make test # Run tests, default is all tests (see TEST below))
$(info )
$(info Targets for specific components)
$(info (Component is any of langtools, corba, jaxp, jaxws, hotspot, jdk, nashorn, images, overlay-images, docs or test))
$(info . make <component> # Build <component> and everything it depends on. )
$(info . make <component>-only # Build <component> only, without dependencies. This)
$(info . # is faster but can result in incorrect build results!)
$(info . make clean-<component> # Remove files generated by make for <component>)
$(info )
$(info Useful make variables)
$(info . make CONF= # Build all configurations (note, assignment is empty))
$(info . make CONF=<substring> # Build the configuration(s) with a name matching)
$(info . # <substring>)
$(info )
$(info . make LOG=<loglevel> # Change the log level from warn to <loglevel>)
$(info . # Available log levels are:)
$(info . # 'warn' (default), 'info', 'debug' and 'trace')
$(info . # To see executed command lines, use LOG=debug)
$(info )
$(info . make JOBS=<n> # Run <n> parallel make jobs)
$(info . # Note that -jN does not work as expected!)
$(info )
$(info . make test TEST=<test> # Only run the given test or tests, e.g.)
$(info . # make test TEST="jdk_lang jdk_net")
$(info )
.PHONY: help

View File

@ -1,134 +0,0 @@
#
# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# This must be the first rule
default:
# Inclusion of this pseudo-target will cause make to execute this file
# serially, regardless of -j. Recursively called makefiles will not be
# affected, however. This is required for correct dependency management.
.NOTPARALLEL:
# The shell code below will be executed on /usr/ccs/bin/make on Solaris, but not in GNU make.
# /usr/ccs/bin/make lacks basically every other flow control mechanism.
TEST_FOR_NON_GNUMAKE:sh=echo You are not using GNU make/gmake, this is a requirement. Check your path. 1>&2 && exit 1
# Assume we have GNU make, but check version.
ifeq ($(strip $(foreach v, 3.81% 3.82% 4.%, $(filter $v, $(MAKE_VERSION)))), )
$(error This version of GNU Make is too low ($(MAKE_VERSION)). Check your path, or upgrade to 3.81 or newer.)
endif
# Locate this Makefile
ifeq ($(filter /%,$(lastword $(MAKEFILE_LIST))),)
makefile_path:=$(CURDIR)/$(lastword $(MAKEFILE_LIST))
else
makefile_path:=$(lastword $(MAKEFILE_LIST))
endif
root_dir:=$(dir $(makefile_path))
# ... and then we can include our helper functions
include $(root_dir)/common/makefiles/MakeHelpers.gmk
$(eval $(call ParseLogLevel))
$(eval $(call ParseConfAndSpec))
# Now determine if we have zero, one or several configurations to build.
ifeq ($(SPEC),)
# Since we got past ParseConfAndSpec, we must be building a global target. Do nothing.
else
ifeq ($(words $(SPEC)),1)
# We are building a single configuration. This is the normal case. Execute the Main.gmk file.
include $(root_dir)/common/makefiles/Main.gmk
else
# We are building multiple configurations.
# First, find out the valid targets
# Run the makefile with an arbitrary SPEC using -p -q (quiet dry-run and dump rules) to find
# available PHONY targets. Use this list as valid targets to pass on to the repeated calls.
all_phony_targets=$(filter-out $(global_targets) bundles-only, $(strip $(shell \
$(MAKE) -p -q -f common/makefiles/Main.gmk FRC SPEC=$(firstword $(SPEC)) | \
grep ^.PHONY: | head -n 1 | cut -d " " -f 2-)))
$(all_phony_targets):
@$(foreach spec,$(SPEC),($(MAKE) -f NewMakefile.gmk SPEC=$(spec) \
$(VERBOSE) VERBOSE=$(VERBOSE) LOG_LEVEL=$(LOG_LEVEL) $@) &&) true
.PHONY: $(all_phony_targets)
endif
endif
# Include this after a potential spec file has been included so that the bundles target
# has access to the spec variables.
include $(root_dir)/common/makefiles/Jprt.gmk
# Here are "global" targets, i.e. targets that can be executed without specifying a single configuration.
# If you addd more global targets, please update the variable global_targets in MakeHelpers.
help:
$(info )
$(info OpenJDK Makefile help)
$(info =====================)
$(info )
$(info Common make targets)
$(info . make [default] # Compile all product in langtools, hotspot, jaxp, jaxws,)
$(info . # corba and jdk)
$(info . make all # Compile everything, all repos and images)
$(info . make images # Create complete j2sdk and j2re images)
$(info . make docs # Create javadocs)
$(info . make overlay-images # Create limited images for sparc 64 bit platforms)
$(info . make profiles # Create complete j2re compact profile images)
$(info . make bootcycle-images # Build images twice, second time with newly build JDK)
$(info . make install # Install the generated images locally)
$(info . make clean # Remove all files generated by make, but not those)
$(info . # generated by configure)
$(info . make dist-clean # Remove all files, including configuration)
$(info . make help # Give some help on using make)
$(info . make test # Run tests, default is all tests (see TEST below))
$(info )
$(info Targets for specific components)
$(info (Component is any of langtools, corba, jaxp, jaxws, hotspot, jdk, nashorn, images, overlay-images, docs or test))
$(info . make <component> # Build <component> and everything it depends on. )
$(info . make <component>-only # Build <component> only, without dependencies. This)
$(info . # is faster but can result in incorrect build results!)
$(info . make clean-<component> # Remove files generated by make for <component>)
$(info )
$(info Useful make variables)
$(info . make CONF= # Build all configurations (note, assignment is empty))
$(info . make CONF=<substring> # Build the configuration(s) with a name matching)
$(info . # <substring>)
$(info )
$(info . make LOG=<loglevel> # Change the log level from warn to <loglevel>)
$(info . # Available log levels are:)
$(info . # 'warn' (default), 'info', 'debug' and 'trace')
$(info . # To see executed command lines, use LOG=debug)
$(info )
$(info . make JOBS=<n> # Run <n> parallel make jobs)
$(info . # Note that -jN does not work as expected!)
$(info )
$(info . make test TEST=<test> # Only run the given test or tests, e.g.)
$(info . # make test TEST="jdk_lang jdk_net")
$(info )
.PHONY: help

View File

@ -24,4 +24,4 @@
# This Makefile was generated by configure @DATE_WHEN_CONFIGURED@
# GENERATED FILE, DO NOT EDIT
SPEC:=@OUTPUT_ROOT@/spec.gmk
include @SRC_ROOT@/NewMakefile.gmk
include @SRC_ROOT@/Makefile

View File

@ -412,7 +412,7 @@ AC_DEFUN_ONCE([BASIC_SETUP_OUTPUT_DIR],
# Test from where we are running configure, in or outside of src root.
if test "x$CURDIR" = "x$SRC_ROOT" || test "x$CURDIR" = "x$SRC_ROOT/common" \
|| test "x$CURDIR" = "x$SRC_ROOT/common/autoconf" \
|| test "x$CURDIR" = "x$SRC_ROOT/common/makefiles" ; then
|| test "x$CURDIR" = "x$SRC_ROOT/make" ; then
# We are running configure from the src root.
# Create a default ./build/target-variant-debuglevel output root.
if test "x${CONF_NAME}" = x; then

View File

@ -3868,7 +3868,7 @@ fi
#CUSTOM_AUTOCONF_INCLUDE
# Do not change or remove the following line, it is needed for consistency checks:
DATE_WHEN_GENERATED=1383701615
DATE_WHEN_GENERATED=1386285126
###############################################################################
#
@ -8096,7 +8096,7 @@ fi
# Test from where we are running configure, in or outside of src root.
if test "x$CURDIR" = "x$SRC_ROOT" || test "x$CURDIR" = "x$SRC_ROOT/common" \
|| test "x$CURDIR" = "x$SRC_ROOT/common/autoconf" \
|| test "x$CURDIR" = "x$SRC_ROOT/common/makefiles" ; then
|| test "x$CURDIR" = "x$SRC_ROOT/make" ; then
# We are running configure from the src root.
# Create a default ./build/target-variant-debuglevel output root.
if test "x${CONF_NAME}" = x; then
@ -16253,32 +16253,25 @@ fi
cd "$CURDIR"
# Verify that the addon source root does not have any root makefiles.
# If it does, then it is usually an error, prevent this.
if test -f $with_add_source_root/langtools/makefiles/Makefile || \
test -f $with_add_source_root/langtools/make/Makefile; then
if test -f $with_add_source_root/langtools/make/Makefile; then
as_fn_error $? "Your add source root seems to contain a full langtools repo! An add source root should only contain additional sources." "$LINENO" 5
fi
if test -f $with_add_source_root/corba/makefiles/Makefile || \
test -f $with_add_source_root/corba/make/Makefile; then
if test -f $with_add_source_root/corba/make/Makefile; then
as_fn_error $? "Your add source root seems to contain a full corba repo! An add source root should only contain additional sources." "$LINENO" 5
fi
if test -f $with_add_source_root/jaxp/makefiles/Makefile || \
test -f $with_add_source_root/jaxp/make/Makefile; then
if test -f $with_add_source_root/jaxp/make/Makefile; then
as_fn_error $? "Your add source root seems to contain a full jaxp repo! An add source root should only contain additional sources." "$LINENO" 5
fi
if test -f $with_add_source_root/jaxws/makefiles/Makefile || \
test -f $with_add_source_root/jaxws/make/Makefile; then
if test -f $with_add_source_root/jaxws/make/Makefile; then
as_fn_error $? "Your add source root seems to contain a full jaxws repo! An add source root should only contain additional sources." "$LINENO" 5
fi
if test -f $with_add_source_root/hotspot/makefiles/Makefile || \
test -f $with_add_source_root/hotspot/make/Makefile; then
if test -f $with_add_source_root/hotspot/make/Makefile; then
as_fn_error $? "Your add source root seems to contain a full hotspot repo! An add source root should only contain additional sources." "$LINENO" 5
fi
if test -f $with_add_source_root/nashorn/makefiles/Makefile || \
test -f $with_add_source_root/nashorn/make/Makefile; then
if test -f $with_add_source_root/nashorn/make/Makefile; then
as_fn_error $? "Your add source root seems to contain a full nashorn repo! An add source root should only contain additional sources." "$LINENO" 5
fi
if test -f $with_add_source_root/jdk/makefiles/Makefile || \
test -f $with_add_source_root/jdk/make/Makefile; then
if test -f $with_add_source_root/jdk/make/Makefile; then
as_fn_error $? "Your add source root seems to contain a full JDK repo! An add source root should only contain additional sources." "$LINENO" 5
fi
fi
@ -16292,32 +16285,25 @@ fi
cd "$with_override_source_root"
OVERRIDE_SRC_ROOT="`pwd`"
cd "$CURDIR"
if test -f $with_override_source_root/langtools/makefiles/Makefile || \
test -f $with_override_source_root/langtools/make/Makefile; then
if test -f $with_override_source_root/langtools/make/Makefile; then
as_fn_error $? "Your override source root seems to contain a full langtools repo! An override source root should only contain sources that override." "$LINENO" 5
fi
if test -f $with_override_source_root/corba/makefiles/Makefile || \
test -f $with_override_source_root/corba/make/Makefile; then
if test -f $with_override_source_root/corba/make/Makefile; then
as_fn_error $? "Your override source root seems to contain a full corba repo! An override source root should only contain sources that override." "$LINENO" 5
fi
if test -f $with_override_source_root/jaxp/makefiles/Makefile || \
test -f $with_override_source_root/jaxp/make/Makefile; then
if test -f $with_override_source_root/jaxp/make/Makefile; then
as_fn_error $? "Your override source root seems to contain a full jaxp repo! An override source root should only contain sources that override." "$LINENO" 5
fi
if test -f $with_override_source_root/jaxws/makefiles/Makefile || \
test -f $with_override_source_root/jaxws/make/Makefile; then
if test -f $with_override_source_root/jaxws/make/Makefile; then
as_fn_error $? "Your override source root seems to contain a full jaxws repo! An override source root should only contain sources that override." "$LINENO" 5
fi
if test -f $with_override_source_root/hotspot/makefiles/Makefile || \
test -f $with_override_source_root/hotspot/make/Makefile; then
if test -f $with_override_source_root/hotspot/make/Makefile; then
as_fn_error $? "Your override source root seems to contain a full hotspot repo! An override source root should only contain sources that override." "$LINENO" 5
fi
if test -f $with_override_source_root/nashorn/makefiles/Makefile || \
test -f $with_override_source_root/nashorn/make/Makefile; then
if test -f $with_override_source_root/nashorn/make/Makefile; then
as_fn_error $? "Your override source root seems to contain a full nashorn repo! An override source root should only contain sources that override." "$LINENO" 5
fi
if test -f $with_override_source_root/jdk/makefiles/Makefile || \
test -f $with_override_source_root/jdk/make/Makefile; then
if test -f $with_override_source_root/jdk/make/Makefile; then
as_fn_error $? "Your override source root seems to contain a full JDK repo! An override source root should only contain sources that override." "$LINENO" 5
fi
fi
@ -16396,7 +16382,7 @@ fi
cd "$with_override_langtools"
LANGTOOLS_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $LANGTOOLS_TOPDIR/makefiles/Makefile; then
if ! test -f $LANGTOOLS_TOPDIR/make/Makefile; then
as_fn_error $? "You have to override langtools with a full langtools repo!" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if langtools should be overridden" >&5
@ -16409,7 +16395,7 @@ $as_echo "yes with $LANGTOOLS_TOPDIR" >&6; }
cd "$with_override_corba"
CORBA_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $CORBA_TOPDIR/makefiles/Makefile; then
if ! test -f $CORBA_TOPDIR/make/Makefile; then
as_fn_error $? "You have to override corba with a full corba repo!" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if corba should be overridden" >&5
@ -16422,7 +16408,7 @@ $as_echo "yes with $CORBA_TOPDIR" >&6; }
cd "$with_override_jaxp"
JAXP_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $JAXP_TOPDIR/makefiles/Makefile; then
if ! test -f $JAXP_TOPDIR/make/Makefile; then
as_fn_error $? "You have to override jaxp with a full jaxp repo!" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if jaxp should be overridden" >&5
@ -16435,7 +16421,7 @@ $as_echo "yes with $JAXP_TOPDIR" >&6; }
cd "$with_override_jaxws"
JAXWS_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $JAXWS_TOPDIR/makefiles/Makefile; then
if ! test -f $JAXWS_TOPDIR/make/Makefile; then
as_fn_error $? "You have to override jaxws with a full jaxws repo!" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if jaxws should be overridden" >&5
@ -16448,8 +16434,7 @@ $as_echo "yes with $JAXWS_TOPDIR" >&6; }
cd "$with_override_hotspot"
HOTSPOT_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $HOTSPOT_TOPDIR/make/Makefile && \
! test -f $HOTSPOT_TOPDIR/makefiles/Makefile; then
if ! test -f $HOTSPOT_TOPDIR/make/Makefile; then
as_fn_error $? "You have to override hotspot with a full hotspot repo!" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if hotspot should be overridden" >&5
@ -16462,7 +16447,7 @@ $as_echo "yes with $HOTSPOT_TOPDIR" >&6; }
cd "$with_override_nashorn"
NASHORN_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $NASHORN_TOPDIR/makefiles/Makefile; then
if ! test -f $NASHORN_TOPDIR/make/Makefile; then
as_fn_error $? "You have to override nashorn with a full nashorn repo!" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if nashorn should be overridden" >&5
@ -16475,7 +16460,7 @@ $as_echo "yes with $NASHORN_TOPDIR" >&6; }
cd "$with_override_jdk"
JDK_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $JDK_TOPDIR/makefiles/Makefile; then
if ! test -f $JDK_TOPDIR/make/Makefile; then
as_fn_error $? "You have to override JDK with a full JDK repo!" "$LINENO" 5
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if JDK should be overridden" >&5

View File

@ -134,4 +134,4 @@ endif
# Sneak this in via the spec.gmk file, since we don't want to mess around too much with the Hotspot make files.
# This is needed to get the LOG setting to work properly.
include $(SRC_ROOT)/common/makefiles/MakeBase.gmk
include $(SRC_ROOT)/make/common/MakeBase.gmk

View File

@ -80,32 +80,25 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$CURDIR"
# Verify that the addon source root does not have any root makefiles.
# If it does, then it is usually an error, prevent this.
if test -f $with_add_source_root/langtools/makefiles/Makefile || \
test -f $with_add_source_root/langtools/make/Makefile; then
if test -f $with_add_source_root/langtools/make/Makefile; then
AC_MSG_ERROR([Your add source root seems to contain a full langtools repo! An add source root should only contain additional sources.])
fi
if test -f $with_add_source_root/corba/makefiles/Makefile || \
test -f $with_add_source_root/corba/make/Makefile; then
if test -f $with_add_source_root/corba/make/Makefile; then
AC_MSG_ERROR([Your add source root seems to contain a full corba repo! An add source root should only contain additional sources.])
fi
if test -f $with_add_source_root/jaxp/makefiles/Makefile || \
test -f $with_add_source_root/jaxp/make/Makefile; then
if test -f $with_add_source_root/jaxp/make/Makefile; then
AC_MSG_ERROR([Your add source root seems to contain a full jaxp repo! An add source root should only contain additional sources.])
fi
if test -f $with_add_source_root/jaxws/makefiles/Makefile || \
test -f $with_add_source_root/jaxws/make/Makefile; then
if test -f $with_add_source_root/jaxws/make/Makefile; then
AC_MSG_ERROR([Your add source root seems to contain a full jaxws repo! An add source root should only contain additional sources.])
fi
if test -f $with_add_source_root/hotspot/makefiles/Makefile || \
test -f $with_add_source_root/hotspot/make/Makefile; then
if test -f $with_add_source_root/hotspot/make/Makefile; then
AC_MSG_ERROR([Your add source root seems to contain a full hotspot repo! An add source root should only contain additional sources.])
fi
if test -f $with_add_source_root/nashorn/makefiles/Makefile || \
test -f $with_add_source_root/nashorn/make/Makefile; then
if test -f $with_add_source_root/nashorn/make/Makefile; then
AC_MSG_ERROR([Your add source root seems to contain a full nashorn repo! An add source root should only contain additional sources.])
fi
if test -f $with_add_source_root/jdk/makefiles/Makefile || \
test -f $with_add_source_root/jdk/make/Makefile; then
if test -f $with_add_source_root/jdk/make/Makefile; then
AC_MSG_ERROR([Your add source root seems to contain a full JDK repo! An add source root should only contain additional sources.])
fi
fi
@ -119,32 +112,25 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$with_override_source_root"
OVERRIDE_SRC_ROOT="`pwd`"
cd "$CURDIR"
if test -f $with_override_source_root/langtools/makefiles/Makefile || \
test -f $with_override_source_root/langtools/make/Makefile; then
if test -f $with_override_source_root/langtools/make/Makefile; then
AC_MSG_ERROR([Your override source root seems to contain a full langtools repo! An override source root should only contain sources that override.])
fi
if test -f $with_override_source_root/corba/makefiles/Makefile || \
test -f $with_override_source_root/corba/make/Makefile; then
if test -f $with_override_source_root/corba/make/Makefile; then
AC_MSG_ERROR([Your override source root seems to contain a full corba repo! An override source root should only contain sources that override.])
fi
if test -f $with_override_source_root/jaxp/makefiles/Makefile || \
test -f $with_override_source_root/jaxp/make/Makefile; then
if test -f $with_override_source_root/jaxp/make/Makefile; then
AC_MSG_ERROR([Your override source root seems to contain a full jaxp repo! An override source root should only contain sources that override.])
fi
if test -f $with_override_source_root/jaxws/makefiles/Makefile || \
test -f $with_override_source_root/jaxws/make/Makefile; then
if test -f $with_override_source_root/jaxws/make/Makefile; then
AC_MSG_ERROR([Your override source root seems to contain a full jaxws repo! An override source root should only contain sources that override.])
fi
if test -f $with_override_source_root/hotspot/makefiles/Makefile || \
test -f $with_override_source_root/hotspot/make/Makefile; then
if test -f $with_override_source_root/hotspot/make/Makefile; then
AC_MSG_ERROR([Your override source root seems to contain a full hotspot repo! An override source root should only contain sources that override.])
fi
if test -f $with_override_source_root/nashorn/makefiles/Makefile || \
test -f $with_override_source_root/nashorn/make/Makefile; then
if test -f $with_override_source_root/nashorn/make/Makefile; then
AC_MSG_ERROR([Your override source root seems to contain a full nashorn repo! An override source root should only contain sources that override.])
fi
if test -f $with_override_source_root/jdk/makefiles/Makefile || \
test -f $with_override_source_root/jdk/make/Makefile; then
if test -f $with_override_source_root/jdk/make/Makefile; then
AC_MSG_ERROR([Your override source root seems to contain a full JDK repo! An override source root should only contain sources that override.])
fi
fi
@ -195,7 +181,7 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$with_override_langtools"
LANGTOOLS_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $LANGTOOLS_TOPDIR/makefiles/Makefile; then
if ! test -f $LANGTOOLS_TOPDIR/make/Makefile; then
AC_MSG_ERROR([You have to override langtools with a full langtools repo!])
fi
AC_MSG_CHECKING([if langtools should be overridden])
@ -206,7 +192,7 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$with_override_corba"
CORBA_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $CORBA_TOPDIR/makefiles/Makefile; then
if ! test -f $CORBA_TOPDIR/make/Makefile; then
AC_MSG_ERROR([You have to override corba with a full corba repo!])
fi
AC_MSG_CHECKING([if corba should be overridden])
@ -217,7 +203,7 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$with_override_jaxp"
JAXP_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $JAXP_TOPDIR/makefiles/Makefile; then
if ! test -f $JAXP_TOPDIR/make/Makefile; then
AC_MSG_ERROR([You have to override jaxp with a full jaxp repo!])
fi
AC_MSG_CHECKING([if jaxp should be overridden])
@ -228,7 +214,7 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$with_override_jaxws"
JAXWS_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $JAXWS_TOPDIR/makefiles/Makefile; then
if ! test -f $JAXWS_TOPDIR/make/Makefile; then
AC_MSG_ERROR([You have to override jaxws with a full jaxws repo!])
fi
AC_MSG_CHECKING([if jaxws should be overridden])
@ -239,8 +225,7 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$with_override_hotspot"
HOTSPOT_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $HOTSPOT_TOPDIR/make/Makefile && \
! test -f $HOTSPOT_TOPDIR/makefiles/Makefile; then
if ! test -f $HOTSPOT_TOPDIR/make/Makefile; then
AC_MSG_ERROR([You have to override hotspot with a full hotspot repo!])
fi
AC_MSG_CHECKING([if hotspot should be overridden])
@ -251,7 +236,7 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$with_override_nashorn"
NASHORN_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $NASHORN_TOPDIR/makefiles/Makefile; then
if ! test -f $NASHORN_TOPDIR/make/Makefile; then
AC_MSG_ERROR([You have to override nashorn with a full nashorn repo!])
fi
AC_MSG_CHECKING([if nashorn should be overridden])
@ -262,7 +247,7 @@ AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
cd "$with_override_jdk"
JDK_TOPDIR="`pwd`"
cd "$CURDIR"
if ! test -f $JDK_TOPDIR/makefiles/Makefile; then
if ! test -f $JDK_TOPDIR/make/Makefile; then
AC_MSG_ERROR([You have to override JDK with a full JDK repo!])
fi
AC_MSG_CHECKING([if JDK should be overridden])

View File

@ -65,8 +65,8 @@ ifeq (,$(findstring -R,$(MAKE)))
endif
# Specify where the common include directory for makefiles is.
ifeq (,$(findstring -I @SRC_ROOT@/common/makefiles,$(MAKE)))
MAKE:=$(MAKE) -I @SRC_ROOT@/common/makefiles
ifeq (,$(findstring -I @SRC_ROOT@/make/common,$(MAKE)))
MAKE:=$(MAKE) -I @SRC_ROOT@/make/common
endif
# The "human readable" name of this configuration

View File

@ -1113,14 +1113,15 @@ fi
if [ -d "$THIS/install/j2sdk-image" ]; then
THIS_J2SDK="$THIS/install/j2sdk-image"
THIS_J2RE="$THIS/install/j2re-image"
echo "Comparing install images"
echo "Selecting install images in this build"
elif [ -d "$THIS/deploy/j2sdk-image" ]; then
THIS_J2SDK="$THIS/deploy/j2sdk-image"
THIS_J2RE="$THIS/deploy/j2re-image"
echo "Comparing deploy images"
echo "Selecting deploy images in this build"
elif [ -d "$THIS/images/j2sdk-image" ]; then
THIS_J2SDK="$THIS/images/j2sdk-image"
THIS_J2RE="$THIS/images/j2re-image"
echo "Selecting jdk images in this build"
fi
if [ -d "$THIS/images/j2sdk-overlay-image" ]; then
@ -1128,15 +1129,18 @@ if [ -d "$THIS/images/j2sdk-overlay-image" ]; then
# If there is an install image, prefer that, it's also overlay
THIS_J2SDK_OVERLAY="$THIS/install/j2sdk-image"
THIS_J2RE_OVERLAY="$THIS/install/j2re-image"
echo "Selecting install overlay images in this build"
else
THIS_J2SDK_OVERLAY="$THIS/images/j2sdk-overlay-image"
THIS_J2RE_OVERLAY="$THIS/images/j2re-overlay-image"
echo "Selecting jdk overlay images in this build"
fi
fi
if [ -d "$THIS/images/j2sdk-bundle" ]; then
THIS_J2SDK_BUNDLE="$THIS/images/j2sdk-bundle"
THIS_J2RE_BUNDLE="$THIS/images/j2re-bundle"
echo "Selecting bundles in this build"
fi
# Figure out the layout of the other build (old or new, normal or overlay image)
@ -1144,21 +1148,34 @@ if [ -d "$OTHER/j2sdk-image" ]; then
if [ -f "$OTHER/j2sdk-image/LICENSE" ]; then
OTHER_J2SDK="$OTHER/j2sdk-image"
OTHER_J2RE="$OTHER/j2re-image"
echo "Selecting old-style images in other build"
else
OTHER_J2SDK_OVERLAY="$OTHER/j2sdk-image"
OTHER_J2RE_OVERLAY="$OTHER/j2re-image"
echo "Selecting overlay images in other build"
fi
elif [ -d "$OTHER/install/j2sdk-image" ]; then
OTHER_J2SDK="$OTHER/install/j2sdk-image"
OTHER_J2RE="$OTHER/install/j2re-image"
echo "Selecting install images in other build"
elif [ -d "$OTHER/deploy/j2sdk-image" ]; then
OTHER_J2SDK="$OTHER/deploy/j2sdk-image"
OTHER_J2RE="$OTHER/deploy/j2re-image"
echo "Selecting deploy images in other build"
elif [ -d "$OTHER/images/j2sdk-image" ]; then
OTHER_J2SDK="$OTHER/images/j2sdk-image"
OTHER_J2RE="$OTHER/images/j2re-image"
echo "Selecting jdk images in other build"
fi
if [ -d "$OTHER/j2sdk-bundle" ]; then
OTHER_J2SDK_BUNDLE="$OTHER/j2sdk-bundle"
OTHER_J2RE_BUNDLE="$OTHER/j2re-bundle"
echo "Selecting bundles in other build"
elif [ -d "$OTHER/images/j2sdk-bundle" ]; then
OTHER_J2SDK_BUNDLE="$OTHER/images/j2sdk-bundle"
OTHER_J2RE_BUNDLE="$OTHER/images/j2re-bundle"
echo "Selecting jdk bundles in other build"
fi
if [ -z "$THIS_J2SDK" ] || [ -z "$THIS_J2RE" ]; then

View File

@ -1,26 +0,0 @@
#
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
include ../../NewMakefile.gmk

View File

@ -1,49 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Doc Process Notes</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h3><a name="REGEXP"></a><br>
REGEXP</h3>
<p> REGEXP is a list of wildcard patterns that determines which packages listed
in CORE_PKGS.gmk go into which summary-table on the main API index page. It
was motivated by the need to divide the world into &quot;core packages&quot;
(java.*) and &quot;extension packages&quot; (javax.*). In time, the distinction
went away. The whole table is now called &quot;Platform Packages&quot;--which
eliminated the need for this list of regular expressions. But it lingered on,
accreting all of the packages in the JVM, one by one. I pruned it back to &quot;*&quot;,
so it now covers every package in the Java platform API docs. If some separation
is needed in the future, it can grow back into a colon-separated list, starting
with this, which is in all respects equivalent to &quot;*&quot; at this point
in time:</p>
<blockquote>
<pre>REGEXP = &quot;java.*:javax.*:org.ietf*:org.omg.</pre>
</blockquote>
<h3><a name="releaseTargets"></a><br>
Release Targets</h3>
<p> (Thanks to Kelly O'Hair for this info.)</p>
<p> The <tt>rel-coredocs</tt> and <tt>rel-docs</tt> targets were added by Eric
Armstrong. <tt>rel-coredocs</tt> assumes the kind of large, 32-bit machine used
in the javapubs group's docs-release process. It specifies memory settings accordingly
to maximize performance.</p>
<p> The performance settings, like the sanity check, are most important for the
core docs--the platform APIs. Running javadoc on those APIs takes a significant
amount of time and memory. Setting the initial heap size as large as possible
is important to prevent thrashing as the heap grows. Setting the maximum as
large as necessary is also important to keep the job from failing.</p>
<blockquote>
<p> <tt>-J-Xmx512</tt> sets a maximum of 512, which became necessary in 6.0<br>
<tt>-J-Xms256</tt> sets starting size to 256 (default is 8)</p>
</blockquote>
<p> <tt>rel-coredocs</tt> also includes a sanity check to help ensure that <tt>BUILD_NUMBER</tt>
and <tt>MILESTONE</tt> are specified properly when docs are built outside of
the normal release engineering process, with the intention of releasing them
on the web or in a downloaded docs bundle. (When invoked in release engineering's
control build, the values are always set properly. But when the targets are
run by themselves, they default to b00 and &quot;internal&quot;--which silently
sabotage the result of a build that can take many hours to complete.</p>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -239,3 +239,4 @@ a259ff3e42d91da68f4d4f09d7eb9dc22bc024fc jdk8-b113
8d07115924b7d703a5048adb24e8aba751442f13 jdk8-b115
5fdc4465208933ba704825b2b05e1afd062235fb jdk8-b116
e53d1ee4d2ae898f1cf58688d45a5afe7c482173 jdk8-b117
d6820a414f182a011a53a29a52370c696cd58dab jdk8-b118

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@ -23,171 +23,27 @@
# questions.
#
#
# Makefile for building the corba workspace.
#
BUILDDIR=.
include $(BUILDDIR)/common/Defs.gmk
include $(BUILDDIR)/common/CancelImplicits.gmk
#----- commands
CHMOD = chmod
CP = cp
ECHO = echo # FIXME
FIND = find
MKDIR = mkdir
SED = sed
ZIP = zip
#----- locations and deliverables
TOPDIR=..
SRC_BIN_DIR = $(TOPDIR)/src/share/bin
SRC_CLASSES_DIR = $(TOPDIR)/src/share/classes
ifdef ALT_OUTPUTDIR
OUTPUTDIR = $(ALT_OUTPUTDIR)
BUILD_DIR = $(ALT_OUTPUTDIR)
DIST_DIR = $(ALT_OUTPUTDIR)/dist
# Locate this Makefile
ifeq ($(filter /%, $(lastword $(MAKEFILE_LIST))), )
makefile_path := $(CURDIR)/$(lastword $(MAKEFILE_LIST))
else
OUTPUTDIR = ..
BUILD_DIR = $(TOPDIR)/build/$(PLATFORM)-$(ARCH)
DIST_DIR = $(TOPDIR)/dist
makefile_path := $(lastword $(MAKEFILE_LIST))
endif
ABS_OUTPUTDIR = $(call FullPath,$(OUTPUTDIR))
repo_dir := $(patsubst %/make/Makefile, %, $(makefile_path))
CLASSES_DIR = $(BUILD_DIR)/classes
GENSRC_DIR = $(BUILD_DIR)/gensrc
# What is the name of this subsystem (langtools, corba, etc)?
subsystem_name := $(notdir $(repo_dir))
LIB_DIR = $(DIST_DIR)/lib
#-----
ifndef JDK_MAJOR_VERSION
JDK_MAJOR_VERSION = 1
endif
ifndef JDK_MINOR_VERSION
JDK_MINOR_VERSION = 7
endif
ifndef JDK_MICRO_VERSION
JDK_MICRO_VERSION = 0
endif
ifndef JDK_VERSION
JDK_VERSION = $(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
endif
ifndef MILESTONE
MILESTONE = internal
endif
# RELEASE is JDK_VERSION and -MILESTONE if MILESTONE is set
ifneq ($(MILESTONE),fcs)
RELEASE = $(JDK_VERSION)-$(MILESTONE)$(BUILD_VARIANT_RELEASE)
# Try to locate top-level makefile
top_level_makefile := $(repo_dir)/../Makefile
ifneq ($(wildcard $(top_level_makefile)), )
$(info Will run $(subsystem_name) target on top-level Makefile)
$(info WARNING: This is a non-recommended way of building!)
$(info ===================================================)
else
RELEASE = $(JDK_VERSION)$(BUILD_VARIANT_RELEASE)
$(info Cannot locate top-level Makefile. Is this repo not checked out as part of a complete forest?)
$(error Build from top-level Makefile instead)
endif
# FULL_VERSION is RELEASE and -BUILD_NUMBER if BUILD_NUMBER is set
ifdef BUILD_NUMBER
FULL_VERSION = $(RELEASE)-$(BUILD_NUMBER)
else
BUILD_NUMBER = b00
USER_RELEASE_SUFFIX := $(shell echo $(USER)_`date '+%d_%b_%Y_%H_%M' | tr "A-Z" "a-z"`)
FULL_VERSION = $(RELEASE)-$(USER_RELEASE_SUFFIX)-$(BUILD_NUMBER)
endif
#----- useful macros
SOURCE_LEVEL = 5
BOOTSTRAP_TARGET_LEVEL = 5
ifdef TARGET_CLASS_VERSION
TARGET_LEVEL = $(TARGET_CLASS_VERSION)
else
TARGET_LEVEL = 7
endif
ifndef TARGET_JAVA
TARGET_JAVA = java
endif
SELF = $(lastword $(MAKEFILE_LIST))
# for jdk, we generate the following:
# dist/lib/classes.jar:
# corba recompiled to run on the target JDK,
# ready for inclusion in rt.jar
# dist/lib/src.zip
# .properties and .java files for classes in classes.jar,
# ready for jdk src.zip
# dist/lib/bin.zip
# corba specific binaries: orb.idl, ir.idl
# Default target
default: all
#----- classes.jar
CLASSES_JAR = $(LIB_DIR)/classes.jar
$(CLASSES_JAR):
$(MKDIR) -p $(@D)
$(BOOT_JAR_CMD) -cf $@ -C $(CLASSES_DIR) .
#----- src.zip
SRC_ZIP_FILES = $(shell $(FIND) $(SRC_CLASSES_DIR) \( -name \*-template \) -prune -o -type f -print )
SRC_ZIP = $(LIB_DIR)/src.zip
$(SRC_ZIP): $(SRC_ZIP_FILES)
abs_src_zip=`cd $(@D) ; pwd`/$(@F) ; \
( cd $(SRC_CLASSES_DIR) ; $(FIND) . \( -name \*-template \) -prune -o -type f -print | $(ZIP) -q $$abs_src_zip -@ ) ; \
( cd $(GENSRC_DIR) ; $(FIND) . -type f -print | $(ZIP) -q $$abs_src_zip -@ ) ;
#----- bin.zip
BIN_ZIP_FILES = $(BUILD_DIR/lib/orb.idl $(BUILD_DIR)/lib/ir.idl
BIN_ZIP = $(LIB_DIR)/bin.zip
$(BIN_ZIP): $(BIN_ZIP_FILES)
abs_bin_zip=`cd $(@D) ; pwd`/$(@F) ; \
( cd $(BUILD_DIR) ; $(FIND) lib -name "*.idl" -print | $(ZIP) -q $$abs_bin_zip -@ ) ;
#
# CORBA
#
SUBDIRS = tools javax org sun com
build:
$(SUBDIRS-loop)
all : build $(CLASSES_JAR) $(SRC_ZIP) $(BIN_ZIP)
clean clobber:
$(RM) -r $(BUILD_DIR)
$(RM) -r $(DIST_DIR)
#-------------------------------------------------------------------
#
# Targets for Sun's internal JPRT build system
CD = cd
ZIP = zip
JPRT_ARCHIVE_BUNDLE=$(ABS_OUTPUTDIR)/$(JPRT_BUILD_FLAVOR)-bundle.zip
jprt_build_product jprt_build_debug jprt_build_fastdebug: all
( $(CD) $(OUTPUTDIR) && \
$(ZIP) -q -r $(JPRT_ARCHIVE_BUNDLE) build dist )
#-------------------------------------------------------------------
#
# Phonies to avoid accidents.
#
.PHONY: all build clean clobber debug jprt_build_product jprt_build_debug jprt_build_fastdebug
all:
@$(MAKE) -f $(top_level_makefile) $(subsystem_name)

View File

@ -1,37 +0,0 @@
#
# Copyright (c) 1997, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Makefile for building all of java
#
BUILDDIR = ..
PRODUCT = com
include $(BUILDDIR)/common/Defs.gmk
SUBDIRS = sun
all build clean clobber::
$(SUBDIRS-loop)

View File

@ -1,37 +0,0 @@
#
# Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Makefile for building com/sun
#
BUILDDIR = ../..
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
SUBDIRS = corba
all build clean clobber::
$(SUBDIRS-loop)

View File

@ -1,37 +0,0 @@
#
# Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Makefile for building all of java
#
BUILDDIR = ../../..
PRODUCT = corba
include $(BUILDDIR)/common/Defs.gmk
SUBDIRS = se
all build clean clobber::
$(SUBDIRS-loop)

View File

@ -1,137 +0,0 @@
#
# Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Server Activation IDL Generated Files
#
# REVISIT: consider separating out the holder and helpers that are
# not used and deleting them in the make
com_sun_corba_se_PortableActivationIDL_java = \
com/sun/corba/se/PortableActivationIDL/Activator.java \
com/sun/corba/se/PortableActivationIDL/ActivatorHelper.java \
com/sun/corba/se/PortableActivationIDL/ActivatorHolder.java \
com/sun/corba/se/PortableActivationIDL/ActivatorOperations.java \
com/sun/corba/se/PortableActivationIDL/BadServerDefinition.java \
com/sun/corba/se/PortableActivationIDL/BadServerDefinitionHelper.java \
com/sun/corba/se/PortableActivationIDL/BadServerDefinitionHolder.java \
com/sun/corba/se/PortableActivationIDL/EndPointInfo.java \
com/sun/corba/se/PortableActivationIDL/EndPointInfoHelper.java \
com/sun/corba/se/PortableActivationIDL/EndPointInfoHolder.java \
com/sun/corba/se/PortableActivationIDL/EndpointInfoListHelper.java \
com/sun/corba/se/PortableActivationIDL/EndpointInfoListHolder.java \
com/sun/corba/se/PortableActivationIDL/IIOP_CLEAR_TEXT.java \
com/sun/corba/se/PortableActivationIDL/InitialNameService.java \
com/sun/corba/se/PortableActivationIDL/InitialNameServiceHelper.java \
com/sun/corba/se/PortableActivationIDL/InitialNameServiceHolder.java \
com/sun/corba/se/PortableActivationIDL/InitialNameServiceOperations.java \
com/sun/corba/se/PortableActivationIDL/InvalidORBid.java \
com/sun/corba/se/PortableActivationIDL/InvalidORBidHelper.java \
com/sun/corba/se/PortableActivationIDL/InvalidORBidHolder.java \
com/sun/corba/se/PortableActivationIDL/Locator.java \
com/sun/corba/se/PortableActivationIDL/LocatorHelper.java \
com/sun/corba/se/PortableActivationIDL/LocatorHolder.java \
com/sun/corba/se/PortableActivationIDL/LocatorOperations.java \
com/sun/corba/se/PortableActivationIDL/NoSuchEndPoint.java \
com/sun/corba/se/PortableActivationIDL/NoSuchEndPointHelper.java \
com/sun/corba/se/PortableActivationIDL/NoSuchEndPointHolder.java \
com/sun/corba/se/PortableActivationIDL/ORBAlreadyRegistered.java \
com/sun/corba/se/PortableActivationIDL/ORBAlreadyRegisteredHelper.java \
com/sun/corba/se/PortableActivationIDL/ORBAlreadyRegisteredHolder.java \
com/sun/corba/se/PortableActivationIDL/ORBidListHelper.java \
com/sun/corba/se/PortableActivationIDL/ORBidListHolder.java \
com/sun/corba/se/PortableActivationIDL/ORBPortInfo.java \
com/sun/corba/se/PortableActivationIDL/ORBPortInfoHelper.java \
com/sun/corba/se/PortableActivationIDL/ORBPortInfoHolder.java \
com/sun/corba/se/PortableActivationIDL/ORBPortInfoListHelper.java \
com/sun/corba/se/PortableActivationIDL/ORBPortInfoListHolder.java \
com/sun/corba/se/PortableActivationIDL/ORBProxy.java \
com/sun/corba/se/PortableActivationIDL/ORBProxyHelper.java \
com/sun/corba/se/PortableActivationIDL/ORBProxyHolder.java \
com/sun/corba/se/PortableActivationIDL/ORBProxyOperations.java \
com/sun/corba/se/PortableActivationIDL/Repository.java \
com/sun/corba/se/PortableActivationIDL/RepositoryHelper.java \
com/sun/corba/se/PortableActivationIDL/RepositoryHolder.java \
com/sun/corba/se/PortableActivationIDL/RepositoryOperations.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyActive.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyActiveHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyActiveHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyInstalled.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyInstalledHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyInstalledHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyRegistered.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyRegisteredHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyRegisteredHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyUninstalled.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyUninstalledHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerAlreadyUninstalledHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerHeldDown.java \
com/sun/corba/se/PortableActivationIDL/ServerHeldDownHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerHeldDownHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerIdsHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerIdsHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerManager.java \
com/sun/corba/se/PortableActivationIDL/ServerManagerHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerManagerHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerManagerOperations.java \
com/sun/corba/se/PortableActivationIDL/ServerNotActive.java \
com/sun/corba/se/PortableActivationIDL/ServerNotActiveHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerNotActiveHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerNotRegistered.java \
com/sun/corba/se/PortableActivationIDL/ServerNotRegisteredHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerNotRegisteredHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerProxy.java \
com/sun/corba/se/PortableActivationIDL/ServerProxyHelper.java \
com/sun/corba/se/PortableActivationIDL/ServerProxyHolder.java \
com/sun/corba/se/PortableActivationIDL/ServerProxyOperations.java \
com/sun/corba/se/PortableActivationIDL/TCPPortHelper.java \
com/sun/corba/se/PortableActivationIDL/_ActivatorImplBase.java \
com/sun/corba/se/PortableActivationIDL/_ActivatorStub.java \
com/sun/corba/se/PortableActivationIDL/_InitialNameServiceImplBase.java \
com/sun/corba/se/PortableActivationIDL/_InitialNameServiceStub.java \
com/sun/corba/se/PortableActivationIDL/_LocatorImplBase.java \
com/sun/corba/se/PortableActivationIDL/_LocatorStub.java \
com/sun/corba/se/PortableActivationIDL/_ORBProxyImplBase.java \
com/sun/corba/se/PortableActivationIDL/_ORBProxyStub.java \
com/sun/corba/se/PortableActivationIDL/_RepositoryImplBase.java \
com/sun/corba/se/PortableActivationIDL/_RepositoryStub.java \
com/sun/corba/se/PortableActivationIDL/_ServerManagerImplBase.java \
com/sun/corba/se/PortableActivationIDL/_ServerManagerStub.java \
com/sun/corba/se/PortableActivationIDL/_ServerProxyImplBase.java \
com/sun/corba/se/PortableActivationIDL/_ServerProxyStub.java \
com/sun/corba/se/PortableActivationIDL/InitialNameServicePackage/NameAlreadyBound.java \
com/sun/corba/se/PortableActivationIDL/InitialNameServicePackage/NameAlreadyBoundHelper.java \
com/sun/corba/se/PortableActivationIDL/InitialNameServicePackage/NameAlreadyBoundHolder.java \
com/sun/corba/se/PortableActivationIDL/LocatorPackage/ServerLocationPerORB.java \
com/sun/corba/se/PortableActivationIDL/LocatorPackage/ServerLocationPerORBHelper.java \
com/sun/corba/se/PortableActivationIDL/LocatorPackage/ServerLocationPerORBHolder.java \
com/sun/corba/se/PortableActivationIDL/LocatorPackage/ServerLocationPerType.java \
com/sun/corba/se/PortableActivationIDL/LocatorPackage/ServerLocationPerTypeHelper.java \
com/sun/corba/se/PortableActivationIDL/LocatorPackage/ServerLocationPerTypeHolder.java \
com/sun/corba/se/PortableActivationIDL/RepositoryPackage/AppNamesHelper.java \
com/sun/corba/se/PortableActivationIDL/RepositoryPackage/AppNamesHolder.java \
com/sun/corba/se/PortableActivationIDL/RepositoryPackage/ServerDef.java \
com/sun/corba/se/PortableActivationIDL/RepositoryPackage/ServerDefHelper.java \
com/sun/corba/se/PortableActivationIDL/RepositoryPackage/ServerDefHolder.java

View File

@ -1,41 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Java IDL Server Activation Files
#
com_sun_corba_se_impl_activation_java = \
com/sun/corba/se/impl/activation/ProcessMonitorThread.java \
com/sun/corba/se/impl/activation/RepositoryImpl.java \
com/sun/corba/se/impl/activation/ServerTool.java \
com/sun/corba/se/impl/activation/ORBD.java \
com/sun/corba/se/impl/activation/CommandHandler.java \
com/sun/corba/se/impl/activation/ServerManagerImpl.java \
com/sun/corba/se/impl/activation/ServerTableEntry.java \
com/sun/corba/se/impl/activation/NameServiceStartThread.java \
com/sun/corba/se/impl/activation/ServerMain.java
FILES_java = $(com_sun_corba_se_impl_activation_java)

View File

@ -1,48 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
com_sun_corba_se_impl_corba_java = \
com/sun/corba/se/impl/corba/AnyImpl.java \
com/sun/corba/se/impl/corba/AnyImplHelper.java \
com/sun/corba/se/impl/corba/AsynchInvoke.java \
com/sun/corba/se/impl/corba/CORBAObjectImpl.java \
com/sun/corba/se/impl/corba/ContextImpl.java \
com/sun/corba/se/impl/corba/ContextListImpl.java \
com/sun/corba/se/impl/corba/EnvironmentImpl.java \
com/sun/corba/se/impl/corba/ExceptionListImpl.java \
com/sun/corba/se/impl/corba/NVListImpl.java \
com/sun/corba/se/impl/corba/NamedValueImpl.java \
com/sun/corba/se/impl/corba/PrincipalImpl.java \
com/sun/corba/se/impl/corba/RequestImpl.java \
com/sun/corba/se/impl/corba/ServerRequestImpl.java \
com/sun/corba/se/impl/corba/TCUtility.java \
com/sun/corba/se/impl/corba/TypeCodeFactory.java \
com/sun/corba/se/impl/corba/TypeCodeImpl.java \
com/sun/corba/se/impl/corba/TypeCodeImplHelper.java

View File

@ -1,27 +0,0 @@
#
# Copyright (c) 1998, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_core_java = \
org/omg/stub/java/rmi/_Remote_Stub.java

View File

@ -1,47 +0,0 @@
#
# Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for DynamicAny implementation
#
com_sun_corba_se_impl_dynamicany_java = \
com/sun/corba/se/impl/dynamicany/DynAnyBasicImpl.java \
com/sun/corba/se/impl/dynamicany/DynAnyCollectionImpl.java \
com/sun/corba/se/impl/dynamicany/DynAnyComplexImpl.java \
com/sun/corba/se/impl/dynamicany/DynAnyConstructedImpl.java \
com/sun/corba/se/impl/dynamicany/DynAnyFactoryImpl.java \
com/sun/corba/se/impl/dynamicany/DynAnyImpl.java \
com/sun/corba/se/impl/dynamicany/DynAnyUtil.java \
com/sun/corba/se/impl/dynamicany/DynArrayImpl.java \
com/sun/corba/se/impl/dynamicany/DynEnumImpl.java \
com/sun/corba/se/impl/dynamicany/DynFixedImpl.java \
com/sun/corba/se/impl/dynamicany/DynSequenceImpl.java \
com/sun/corba/se/impl/dynamicany/DynStructImpl.java \
com/sun/corba/se/impl/dynamicany/DynUnionImpl.java \
com/sun/corba/se/impl/dynamicany/DynValueImpl.java \
com/sun/corba/se/impl/dynamicany/DynValueBoxImpl.java \
com/sun/corba/se/impl/dynamicany/DynValueCommonImpl.java

View File

@ -1,68 +0,0 @@
#
# Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_encoding_java = \
com/sun/corba/se/impl/encoding/BufferManagerFactory.java \
com/sun/corba/se/impl/encoding/BufferQueue.java \
com/sun/corba/se/impl/encoding/BufferManagerReadStream.java \
com/sun/corba/se/impl/encoding/BufferManagerWrite.java \
com/sun/corba/se/impl/encoding/BufferManagerRead.java \
com/sun/corba/se/impl/encoding/BufferManagerReadGrow.java \
com/sun/corba/se/impl/encoding/BufferManagerWriteGrow.java \
com/sun/corba/se/impl/encoding/BufferManagerWriteCollect.java \
com/sun/corba/se/impl/encoding/BufferManagerWriteStream.java \
com/sun/corba/se/impl/encoding/ByteBufferWithInfo.java \
com/sun/corba/se/impl/encoding/CDRInputObject.java \
com/sun/corba/se/impl/encoding/CDRInputStream.java \
com/sun/corba/se/impl/encoding/CDRInputStreamBase.java \
com/sun/corba/se/impl/encoding/CDRInputStream_1_0.java \
com/sun/corba/se/impl/encoding/CDRInputStream_1_1.java \
com/sun/corba/se/impl/encoding/CDRInputStream_1_2.java \
com/sun/corba/se/impl/encoding/CDROutputObject.java \
com/sun/corba/se/impl/encoding/CDROutputStream.java \
com/sun/corba/se/impl/encoding/CDROutputStreamBase.java \
com/sun/corba/se/impl/encoding/CDROutputStream_1_0.java \
com/sun/corba/se/impl/encoding/CDROutputStream_1_1.java \
com/sun/corba/se/impl/encoding/CDROutputStream_1_2.java \
com/sun/corba/se/impl/encoding/CachedCodeBase.java \
com/sun/corba/se/impl/encoding/CodeSetCache.java \
com/sun/corba/se/impl/encoding/CodeSetConversion.java \
com/sun/corba/se/impl/encoding/CodeSetComponentInfo.java \
com/sun/corba/se/impl/encoding/EncapsInputStream.java \
com/sun/corba/se/impl/encoding/EncapsOutputStream.java \
com/sun/corba/se/impl/encoding/IDLJavaSerializationInputStream.java \
com/sun/corba/se/impl/encoding/IDLJavaSerializationOutputStream.java \
com/sun/corba/se/impl/encoding/MarkAndResetHandler.java \
com/sun/corba/se/impl/encoding/MarshalInputStream.java \
com/sun/corba/se/impl/encoding/MarshalOutputStream.java \
com/sun/corba/se/impl/encoding/OSFCodeSetRegistry.java \
com/sun/corba/se/impl/encoding/RestorableInputStream.java \
com/sun/corba/se/impl/encoding/TypeCodeInputStream.java \
com/sun/corba/se/impl/encoding/TypeCodeOutputStream.java \
com/sun/corba/se/impl/encoding/TypeCodeReader.java \
com/sun/corba/se/impl/encoding/WrapperInputStream.java

View File

@ -1,49 +0,0 @@
#
# Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Portable Interceptors Files
#
# com/sun/corba/se/impl/interceptors/PIORB.java \
com_sun_corba_se_impl_interceptors_java = \
com/sun/corba/se/impl/interceptors/CDREncapsCodec.java \
com/sun/corba/se/impl/interceptors/ClientRequestInfoImpl.java \
com/sun/corba/se/impl/interceptors/CodecFactoryImpl.java \
com/sun/corba/se/impl/interceptors/ORBInitInfoImpl.java \
com/sun/corba/se/impl/interceptors/InterceptorInvoker.java \
com/sun/corba/se/impl/interceptors/InterceptorList.java \
com/sun/corba/se/impl/interceptors/IORInfoImpl.java \
com/sun/corba/se/impl/interceptors/PICurrent.java \
com/sun/corba/se/impl/interceptors/RequestInfoImpl.java \
com/sun/corba/se/impl/interceptors/ServerRequestInfoImpl.java \
com/sun/corba/se/impl/interceptors/SlotTable.java \
com/sun/corba/se/impl/interceptors/SlotTableStack.java \
com/sun/corba/se/impl/interceptors/PIHandlerImpl.java \
com/sun/corba/se/impl/interceptors/PINoOpHandlerImpl.java
FILES_java = $(com_sun_corba_se_impl_interceptors_java)

View File

@ -1,42 +0,0 @@
#
# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
#d11638 moved FVDCodeBaseDelegate to com.sun.rmi.iiop
com_sun_corba_se_impl_io_java = \
com/sun/corba/se/impl/io/FVDCodeBaseImpl.java \
com/sun/corba/se/impl/io/ValueUtility.java \
com/sun/corba/se/impl/io/ObjectStreamClass.java \
com/sun/corba/se/impl/io/ObjectStreamClassCorbaExt.java \
com/sun/corba/se/impl/io/ObjectStreamField.java \
com/sun/corba/se/impl/io/OptionalDataException.java \
com/sun/corba/se/impl/io/ValueHandlerImpl.java \
com/sun/corba/se/impl/io/IIOPInputStream.java \
com/sun/corba/se/impl/io/IIOPOutputStream.java \
com/sun/corba/se/impl/io/TypeMismatchException.java \
com/sun/corba/se/impl/io/InputStreamHook.java \
com/sun/corba/se/impl/io/OutputStreamHook.java

View File

@ -1,69 +0,0 @@
#
# Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_ior_java = \
com/sun/corba/se/impl/ior/ByteBuffer.java \
com/sun/corba/se/impl/ior/EncapsulationUtility.java \
com/sun/corba/se/impl/ior/FreezableList.java \
com/sun/corba/se/impl/ior/GenericIdentifiable.java \
com/sun/corba/se/impl/ior/GenericTaggedComponent.java \
com/sun/corba/se/impl/ior/GenericTaggedProfile.java \
com/sun/corba/se/impl/ior/IORImpl.java \
com/sun/corba/se/impl/ior/IORTemplateImpl.java \
com/sun/corba/se/impl/ior/IORTemplateListImpl.java \
com/sun/corba/se/impl/ior/IdentifiableFactoryFinderBase.java \
com/sun/corba/se/impl/ior/JIDLObjectKeyTemplate.java \
com/sun/corba/se/impl/ior/NewObjectKeyTemplateBase.java \
com/sun/corba/se/impl/ior/ObjectAdapterIdArray.java \
com/sun/corba/se/impl/ior/ObjectAdapterIdBase.java \
com/sun/corba/se/impl/ior/ObjectAdapterIdNumber.java \
com/sun/corba/se/impl/ior/ObjectIdImpl.java \
com/sun/corba/se/impl/ior/ObjectKeyFactoryImpl.java \
com/sun/corba/se/impl/ior/ObjectKeyImpl.java \
com/sun/corba/se/impl/ior/ObjectKeyTemplateBase.java \
com/sun/corba/se/impl/ior/ObjectReferenceProducerBase.java \
com/sun/corba/se/impl/ior/ObjectReferenceTemplateImpl.java \
com/sun/corba/se/impl/ior/ObjectReferenceFactoryImpl.java \
com/sun/corba/se/impl/ior/OldJIDLObjectKeyTemplate.java \
com/sun/corba/se/impl/ior/OldObjectKeyTemplateBase.java \
com/sun/corba/se/impl/ior/OldPOAObjectKeyTemplate.java \
com/sun/corba/se/impl/ior/POAObjectKeyTemplate.java \
com/sun/corba/se/impl/ior/StubIORImpl.java \
com/sun/corba/se/impl/ior/TaggedComponentFactoryFinderImpl.java \
com/sun/corba/se/impl/ior/TaggedProfileFactoryFinderImpl.java \
com/sun/corba/se/impl/ior/TaggedProfileTemplateFactoryFinderImpl.java \
com/sun/corba/se/impl/ior/WireObjectKeyTemplate.java \
com/sun/corba/se/impl/ior/iiop/AlternateIIOPAddressComponentImpl.java \
com/sun/corba/se/impl/ior/iiop/CodeSetsComponentImpl.java \
com/sun/corba/se/impl/ior/iiop/IIOPAddressBase.java \
com/sun/corba/se/impl/ior/iiop/IIOPAddressClosureImpl.java \
com/sun/corba/se/impl/ior/iiop/IIOPAddressImpl.java \
com/sun/corba/se/impl/ior/iiop/IIOPProfileImpl.java \
com/sun/corba/se/impl/ior/iiop/IIOPProfileTemplateImpl.java \
com/sun/corba/se/impl/ior/iiop/JavaCodebaseComponentImpl.java \
com/sun/corba/se/impl/ior/iiop/JavaSerializationComponent.java \
com/sun/corba/se/impl/ior/iiop/MaxStreamFormatVersionComponentImpl.java \
com/sun/corba/se/impl/ior/iiop/RequestPartitioningComponentImpl.java \
com/sun/corba/se/impl/ior/iiop/ORBTypeComponentImpl.java

View File

@ -1,37 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_legacy_java = \
com/sun/corba/se/impl/legacy/connection/DefaultSocketFactory.java \
com/sun/corba/se/impl/legacy/connection/EndPointInfoImpl.java \
com/sun/corba/se/impl/legacy/connection/LegacyServerSocketManagerImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryAcceptorImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryConnectionImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryContactInfoImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryContactInfoListImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryContactInfoListIteratorImpl.java \
com/sun/corba/se/impl/legacy/connection/USLPort.java

View File

@ -1,39 +0,0 @@
#
# Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for logging implementation
#
# The following files are generated from the .mc files that describe system exceptions:
com_sun_corba_se_impl_logging_java = \
com/sun/corba/se/impl/logging/ActivationSystemException.java \
com/sun/corba/se/impl/logging/IORSystemException.java \
com/sun/corba/se/impl/logging/InterceptorsSystemException.java \
com/sun/corba/se/impl/logging/NamingSystemException.java \
com/sun/corba/se/impl/logging/OMGSystemException.java \
com/sun/corba/se/impl/logging/ORBUtilSystemException.java \
com/sun/corba/se/impl/logging/POASystemException.java \
com/sun/corba/se/impl/logging/UtilSystemException.java

View File

@ -1,33 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
FILES_java = \
com/sun/corba/se/impl/monitoring/MonitoredAttributeInfoFactoryImpl.java \
com/sun/corba/se/impl/monitoring/MonitoredAttributeInfoImpl.java \
com/sun/corba/se/impl/monitoring/MonitoredObjectFactoryImpl.java \
com/sun/corba/se/impl/monitoring/MonitoredObjectImpl.java \
com/sun/corba/se/impl/monitoring/MonitoringManagerImpl.java \
com/sun/corba/se/impl/monitoring/MonitoringManagerFactoryImpl.java

View File

@ -1,40 +0,0 @@
#
# Copyright (c) 1998, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
com_sun_corba_se_impl_naming_cosnaming_java = \
com/sun/corba/se/impl/naming/cosnaming/BindingIteratorImpl.java \
com/sun/corba/se/impl/naming/cosnaming/InterOperableNamingImpl.java \
com/sun/corba/se/impl/naming/cosnaming/InternalBindingKey.java \
com/sun/corba/se/impl/naming/cosnaming/InternalBindingValue.java \
com/sun/corba/se/impl/naming/cosnaming/NamingContextDataStore.java \
com/sun/corba/se/impl/naming/cosnaming/NamingContextImpl.java \
com/sun/corba/se/impl/naming/cosnaming/NamingUtils.java \
com/sun/corba/se/impl/naming/cosnaming/TransientBindingIterator.java \
com/sun/corba/se/impl/naming/cosnaming/TransientNameServer.java \
com/sun/corba/se/impl/naming/cosnaming/TransientNameService.java \
com/sun/corba/se/impl/naming/cosnaming/TransientNamingContext.java

View File

@ -1,36 +0,0 @@
#
# Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_naming_namingutil_java = \
com/sun/corba/se/impl/naming/namingutil/INSURL.java \
com/sun/corba/se/impl/naming/namingutil/INSURLBase.java \
com/sun/corba/se/impl/naming/namingutil/CorbalocURL.java \
com/sun/corba/se/impl/naming/namingutil/CorbanameURL.java \
com/sun/corba/se/impl/naming/namingutil/INSURLHandler.java \
com/sun/corba/se/impl/naming/namingutil/IIOPEndpointInfo.java \
com/sun/corba/se/impl/naming/namingutil/NamingConstants.java \
com/sun/corba/se/impl/naming/namingutil/Utility.java
FILES_java = $(com_sun_corba_se_impl_naming_namingutil_java)

View File

@ -1,39 +0,0 @@
#
# Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for Persistent CosNaming
#
com_sun_corba_se_impl_naming_pcosnaming_java = \
com/sun/corba/se/impl/naming/pcosnaming/NameServer.java \
com/sun/corba/se/impl/naming/pcosnaming/NameService.java \
com/sun/corba/se/impl/naming/pcosnaming/ServantManagerImpl.java \
com/sun/corba/se/impl/naming/pcosnaming/PersistentBindingIterator.java \
com/sun/corba/se/impl/naming/pcosnaming/InternalBindingKey.java \
com/sun/corba/se/impl/naming/pcosnaming/InternalBindingValue.java \
com/sun/corba/se/impl/naming/pcosnaming/NamingContextImpl.java
FILES_java = $(com_sun_corba_se_impl_naming_pcosnaming_java)

View File

@ -1,58 +0,0 @@
#
# Copyright (c) 1998, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for POA implementation
#
com_sun_corba_se_impl_oa_poa_java = \
com/sun/corba/se/impl/oa/NullServantImpl.java \
com/sun/corba/se/impl/oa/poa/AOMEntry.java \
com/sun/corba/se/impl/oa/poa/ActiveObjectMap.java \
com/sun/corba/se/impl/oa/poa/BadServerIdHandler.java \
com/sun/corba/se/impl/oa/poa/DelegateImpl.java \
com/sun/corba/se/impl/oa/poa/IdAssignmentPolicyImpl.java \
com/sun/corba/se/impl/oa/poa/IdUniquenessPolicyImpl.java \
com/sun/corba/se/impl/oa/poa/ImplicitActivationPolicyImpl.java \
com/sun/corba/se/impl/oa/poa/LifespanPolicyImpl.java \
com/sun/corba/se/impl/oa/poa/POACurrent.java \
com/sun/corba/se/impl/oa/poa/POAFactory.java \
com/sun/corba/se/impl/oa/poa/POAImpl.java \
com/sun/corba/se/impl/oa/poa/POAManagerImpl.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediator.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediatorBase.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediatorBase_R.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediatorFactory.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediatorImpl_NR_UDS.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediatorImpl_NR_USM.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediatorImpl_R_AOM.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediatorImpl_R_UDS.java \
com/sun/corba/se/impl/oa/poa/POAPolicyMediatorImpl_R_USM.java \
com/sun/corba/se/impl/oa/poa/Policies.java \
com/sun/corba/se/impl/oa/poa/RequestProcessingPolicyImpl.java \
com/sun/corba/se/impl/oa/poa/ServantRetentionPolicyImpl.java \
com/sun/corba/se/impl/oa/poa/ThreadPolicyImpl.java
FILES_java = $(com_sun_corba_se_impl_oa_poa_java)

View File

@ -1,36 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for TOA implementation
#
com_sun_corba_se_impl_oa_toa_java = \
com/sun/corba/se/impl/oa/toa/TOA.java \
com/sun/corba/se/impl/oa/toa/TOAImpl.java \
com/sun/corba/se/impl/oa/toa/TOAFactory.java \
com/sun/corba/se/impl/oa/toa/TransientObjectManager.java
FILES_java = $(com_sun_corba_se_impl_oa_toa_java)

View File

@ -1,46 +0,0 @@
#
# Copyright (c) 2002, 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_orb_java = \
com/sun/corba/se/impl/orb/AppletDataCollector.java \
com/sun/corba/se/impl/orb/DataCollectorBase.java \
com/sun/corba/se/impl/orb/DataCollectorFactory.java \
com/sun/corba/se/impl/orb/NormalDataCollector.java \
com/sun/corba/se/impl/orb/NormalParserAction.java \
com/sun/corba/se/impl/orb/NormalParserData.java \
com/sun/corba/se/impl/orb/ORBConfiguratorImpl.java \
com/sun/corba/se/impl/orb/ORBDataParserImpl.java \
com/sun/corba/se/impl/orb/ORBImpl.java \
com/sun/corba/se/impl/orb/ORBSingleton.java \
com/sun/corba/se/impl/orb/ORBVersionImpl.java \
com/sun/corba/se/impl/orb/ParserAction.java \
com/sun/corba/se/impl/orb/ParserActionBase.java \
com/sun/corba/se/impl/orb/ParserActionFactory.java \
com/sun/corba/se/impl/orb/ParserDataBase.java \
com/sun/corba/se/impl/orb/ParserTable.java \
com/sun/corba/se/impl/orb/PrefixParserAction.java \
com/sun/corba/se/impl/orb/PrefixParserData.java \
com/sun/corba/se/impl/orb/PropertyOnlyDataCollector.java

View File

@ -1,71 +0,0 @@
#
# Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_orbutil_java = \
com/sun/corba/se/impl/orbutil/CacheTable.java \
com/sun/corba/se/impl/orbutil/CorbaResourceUtil.java \
com/sun/corba/se/impl/orbutil/DenseIntMapImpl.java \
com/sun/corba/se/impl/orbutil/GetPropertyAction.java \
com/sun/corba/se/impl/orbutil/HexOutputStream.java \
com/sun/corba/se/impl/orbutil/LegacyHookGetFields.java \
com/sun/corba/se/impl/orbutil/LegacyHookPutFields.java \
com/sun/corba/se/impl/orbutil/LogKeywords.java \
com/sun/corba/se/impl/orbutil/ObjectStreamClass_1_3_1.java \
com/sun/corba/se/impl/orbutil/ObjectStreamField.java \
com/sun/corba/se/impl/orbutil/ObjectWriter.java \
com/sun/corba/se/impl/orbutil/ObjectUtility.java \
com/sun/corba/se/impl/orbutil/ObjectStreamClassUtil_1_3.java \
com/sun/corba/se/impl/orbutil/ORBConstants.java \
com/sun/corba/se/impl/orbutil/ORBUtility.java \
com/sun/corba/se/impl/orbutil/RepIdDelegator.java \
com/sun/corba/se/impl/orbutil/RepositoryIdFactory.java \
com/sun/corba/se/impl/orbutil/RepositoryIdStrings.java \
com/sun/corba/se/impl/orbutil/RepositoryIdUtility.java \
com/sun/corba/se/impl/orbutil/RepositoryIdInterface.java \
com/sun/corba/se/impl/orbutil/StackImpl.java \
com/sun/corba/se/impl/orbutil/closure/Future.java \
com/sun/corba/se/impl/orbutil/closure/Constant.java \
com/sun/corba/se/impl/orbutil/concurrent/Sync.java \
com/sun/corba/se/impl/orbutil/concurrent/SyncUtil.java \
com/sun/corba/se/impl/orbutil/concurrent/ReentrantMutex.java \
com/sun/corba/se/impl/orbutil/concurrent/DebugMutex.java \
com/sun/corba/se/impl/orbutil/concurrent/Mutex.java \
com/sun/corba/se/impl/orbutil/concurrent/CondVar.java \
com/sun/corba/se/impl/orbutil/fsm/GuardedAction.java \
com/sun/corba/se/impl/orbutil/fsm/NameBase.java \
com/sun/corba/se/impl/orbutil/fsm/StateEngineImpl.java \
com/sun/corba/se/impl/orbutil/threadpool/ThreadPoolImpl.java \
com/sun/corba/se/impl/orbutil/threadpool/ThreadPoolManagerImpl.java \
com/sun/corba/se/impl/orbutil/threadpool/TimeoutException.java \
com/sun/corba/se/impl/orbutil/threadpool/WorkQueueImpl.java \
com/sun/corba/se/impl/copyobject/CopierManagerImpl.java \
com/sun/corba/se/impl/copyobject/FallbackObjectCopierImpl.java \
com/sun/corba/se/impl/copyobject/ORBStreamObjectCopierImpl.java \
com/sun/corba/se/impl/copyobject/ReferenceObjectCopierImpl.java \
com/sun/corba/se/impl/copyobject/JavaStreamObjectCopierImpl.java \
com/sun/corba/se/impl/orbutil/graph/Node.java \
com/sun/corba/se/impl/orbutil/graph/NodeData.java \
com/sun/corba/se/impl/orbutil/graph/Graph.java \
com/sun/corba/se/impl/orbutil/graph/GraphImpl.java

View File

@ -1,48 +0,0 @@
#
# Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_presentation_rmi_java = \
com/sun/corba/se/impl/presentation/rmi/DynamicAccessPermission.java \
com/sun/corba/se/impl/presentation/rmi/DynamicMethodMarshallerImpl.java \
com/sun/corba/se/impl/presentation/rmi/DynamicStubImpl.java \
com/sun/corba/se/impl/presentation/rmi/ExceptionHandler.java \
com/sun/corba/se/impl/presentation/rmi/ExceptionHandlerImpl.java \
com/sun/corba/se/impl/presentation/rmi/IDLNameTranslatorImpl.java \
com/sun/corba/se/impl/presentation/rmi/IDLType.java \
com/sun/corba/se/impl/presentation/rmi/IDLTypeException.java \
com/sun/corba/se/impl/presentation/rmi/IDLTypesUtil.java \
com/sun/corba/se/impl/presentation/rmi/InvocationHandlerFactoryImpl.java \
com/sun/corba/se/impl/presentation/rmi/PresentationManagerImpl.java \
com/sun/corba/se/impl/presentation/rmi/ReflectiveTie.java \
com/sun/corba/se/impl/presentation/rmi/StubConnectImpl.java \
com/sun/corba/se/impl/presentation/rmi/StubFactoryBase.java \
com/sun/corba/se/impl/presentation/rmi/StubFactoryDynamicBase.java \
com/sun/corba/se/impl/presentation/rmi/StubFactoryFactoryBase.java \
com/sun/corba/se/impl/presentation/rmi/StubFactoryFactoryDynamicBase.java \
com/sun/corba/se/impl/presentation/rmi/StubFactoryFactoryProxyImpl.java \
com/sun/corba/se/impl/presentation/rmi/StubFactoryFactoryStaticImpl.java \
com/sun/corba/se/impl/presentation/rmi/StubFactoryProxyImpl.java \
com/sun/corba/se/impl/presentation/rmi/StubFactoryStaticImpl.java \
com/sun/corba/se/impl/presentation/rmi/StubInvocationHandlerImpl.java

View File

@ -1,85 +0,0 @@
#
# Copyright (c) 2002, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_protocol_java = \
com/sun/corba/se/impl/protocol/AddressingDispositionException.java \
com/sun/corba/se/impl/protocol/BootstrapServerRequestDispatcher.java \
com/sun/corba/se/impl/protocol/CorbaClientDelegateImpl.java \
com/sun/corba/se/impl/protocol/CorbaClientRequestDispatcherImpl.java \
com/sun/corba/se/impl/protocol/CorbaInvocationInfo.java \
com/sun/corba/se/impl/protocol/CorbaMessageMediatorImpl.java \
com/sun/corba/se/impl/protocol/CorbaServerRequestDispatcherImpl.java \
com/sun/corba/se/impl/protocol/FullServantCacheLocalCRDImpl.java \
com/sun/corba/se/impl/protocol/INSServerRequestDispatcher.java \
com/sun/corba/se/impl/protocol/InfoOnlyServantCacheLocalCRDImpl.java \
com/sun/corba/se/impl/protocol/JIDLLocalCRDImpl.java \
com/sun/corba/se/impl/protocol/LocalClientRequestDispatcherBase.java \
com/sun/corba/se/impl/protocol/MinimalServantCacheLocalCRDImpl.java \
com/sun/corba/se/impl/protocol/NotLocalLocalCRDImpl.java \
com/sun/corba/se/impl/protocol/POALocalCRDImpl.java \
com/sun/corba/se/impl/protocol/RequestCanceledException.java \
com/sun/corba/se/impl/protocol/RequestDispatcherRegistryImpl.java \
com/sun/corba/se/impl/protocol/ServantCacheLocalCRDBase.java \
com/sun/corba/se/impl/protocol/SpecialMethod.java \
com/sun/corba/se/impl/protocol/SharedCDRClientRequestDispatcherImpl.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/AddressingDispositionHelper.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/CancelRequestMessage.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/CancelRequestMessage_1_0.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/CancelRequestMessage_1_1.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/CancelRequestMessage_1_2.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/FragmentMessage.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/FragmentMessage_1_1.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/FragmentMessage_1_2.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/IORAddressingInfo.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/IORAddressingInfoHelper.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/KeyAddr.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateReplyMessage.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateReplyMessage_1_0.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateReplyMessage_1_1.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateReplyMessage_1_2.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateRequestMessage.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateRequestMessage_1_0.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateRequestMessage_1_1.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateRequestMessage_1_2.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/LocateReplyOrReplyMessage.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/Message.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/MessageBase.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/MessageHandler.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/Message_1_0.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/Message_1_1.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/Message_1_2.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/ProfileAddr.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/ReferenceAddr.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/ReplyMessage.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/ReplyMessage_1_0.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/ReplyMessage_1_1.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/ReplyMessage_1_2.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/RequestMessage.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/RequestMessage_1_0.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/RequestMessage_1_1.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/RequestMessage_1_2.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/TargetAddress.java \
com/sun/corba/se/impl/protocol/giopmsgheaders/TargetAddressHelper.java

View File

@ -1,35 +0,0 @@
#
# Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_resolver_java = \
com/sun/corba/se/impl/resolver/BootstrapResolverImpl.java \
com/sun/corba/se/impl/resolver/CompositeResolverImpl.java \
com/sun/corba/se/impl/resolver/INSURLOperationImpl.java \
com/sun/corba/se/impl/resolver/LocalResolverImpl.java \
com/sun/corba/se/impl/resolver/ORBDefaultInitRefResolverImpl.java \
com/sun/corba/se/impl/resolver/ORBInitRefResolverImpl.java \
com/sun/corba/se/impl/resolver/SplitLocalResolverImpl.java \
com/sun/corba/se/impl/resolver/FileResolverImpl.java

View File

@ -1,57 +0,0 @@
#
# Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_impl_transport_java = \
com/sun/corba/se/impl/transport/ByteBufferPoolImpl.java \
com/sun/corba/se/impl/transport/CorbaConnectionCacheBase.java \
com/sun/corba/se/impl/transport/CorbaContactInfoBase.java \
com/sun/corba/se/impl/transport/CorbaContactInfoListImpl.java \
com/sun/corba/se/impl/transport/CorbaContactInfoListIteratorImpl.java \
com/sun/corba/se/impl/transport/CorbaInboundConnectionCacheImpl.java \
com/sun/corba/se/impl/transport/CorbaOutboundConnectionCacheImpl.java \
com/sun/corba/se/impl/transport/CorbaResponseWaitingRoomImpl.java \
com/sun/corba/se/impl/transport/CorbaTransportManagerImpl.java \
com/sun/corba/se/impl/transport/DefaultIORToSocketInfoImpl.java \
com/sun/corba/se/impl/transport/DefaultSocketFactoryImpl.java \
com/sun/corba/se/impl/transport/EventHandlerBase.java \
com/sun/corba/se/impl/transport/ListenerThreadImpl.java \
com/sun/corba/se/impl/transport/ReaderThreadImpl.java \
com/sun/corba/se/impl/transport/ReadTCPTimeoutsImpl.java \
com/sun/corba/se/impl/transport/SelectorImpl.java \
com/sun/corba/se/impl/transport/SharedCDRContactInfoImpl.java \
com/sun/corba/se/impl/transport/SocketOrChannelAcceptorImpl.java \
com/sun/corba/se/impl/transport/SocketOrChannelConnectionImpl.java \
com/sun/corba/se/impl/transport/SocketOrChannelContactInfoImpl.java \
com/sun/corba/se/impl/legacy/connection/DefaultSocketFactory.java \
com/sun/corba/se/impl/legacy/connection/EndPointInfoImpl.java \
com/sun/corba/se/impl/legacy/connection/LegacyServerSocketManagerImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryAcceptorImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryConnectionImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryContactInfoImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryContactInfoListImpl.java \
com/sun/corba/se/impl/legacy/connection/SocketFactoryContactInfoListIteratorImpl.java \
com/sun/corba/se/impl/legacy/connection/USLPort.java

View File

@ -1,42 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
com_sun_corba_se_impl_util_java = \
com/sun/corba/se/impl/util/IdentityHashtable.java \
com/sun/corba/se/impl/util/IdentityHashtableEnumerator.java \
com/sun/corba/se/impl/util/RepositoryId.java \
com/sun/corba/se/impl/util/RepositoryIdCache.java \
com/sun/corba/se/impl/util/SUNVMCID.java \
com/sun/corba/se/impl/util/Utility.java \
com/sun/corba/se/impl/util/Version.java \
com/sun/corba/se/impl/util/ORBProperties.java \
com/sun/corba/se/impl/util/JDKBridge.java \
com/sun/corba/se/impl/util/PackagePrefixChecker.java \
com/sun/corba/se/impl/util/JDKClassLoader.java \
com/sun/corba/se/impl/javax/rmi/PortableRemoteObject.java\
com/sun/corba/se/impl/javax/rmi/CORBA/Util.java \
com/sun/corba/se/impl/javax/rmi/CORBA/StubDelegateImpl.java

View File

@ -1,31 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_internal_LegacyFiles_java = \
com/sun/corba/se/internal/CosNaming/BootstrapServer.java \
com/sun/corba/se/internal/Interceptors/PIORB.java \
com/sun/corba/se/internal/POA/POAORB.java \
com/sun/corba/se/internal/corba/ORBSingleton.java \
com/sun/corba/se/internal/iiop/ORB.java

View File

@ -1,66 +0,0 @@
#
# Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for the PEPt architecture (Presentation, Encoding, Protocol, transport)
#
com_sun_corba_se_pept_java = \
$(com_sun_corba_se_pept_broker_java) \
$(com_sun_corba_se_pept_encoding_java) \
$(com_sun_corba_se_pept_protocol_java) \
$(com_sun_corba_se_pept_transport_java)
com_sun_corba_se_pept_broker_java = \
com/sun/corba/se/pept/broker/Broker.java
com_sun_corba_se_pept_encoding_java = \
com/sun/corba/se/pept/encoding/InputObject.java \
com/sun/corba/se/pept/encoding/OutputObject.java
com_sun_corba_se_pept_protocol_java = \
com/sun/corba/se/pept/protocol/ClientDelegate.java \
com/sun/corba/se/pept/protocol/ClientInvocationInfo.java \
com/sun/corba/se/pept/protocol/ClientRequestDispatcher.java \
com/sun/corba/se/pept/protocol/MessageMediator.java \
com/sun/corba/se/pept/protocol/ProtocolHandler.java \
com/sun/corba/se/pept/protocol/ServerRequestDispatcher.java
com_sun_corba_se_pept_transport_java = \
com/sun/corba/se/pept/transport/Acceptor.java \
com/sun/corba/se/pept/transport/ByteBufferPool.java \
com/sun/corba/se/pept/transport/Connection.java \
com/sun/corba/se/pept/transport/ConnectionCache.java \
com/sun/corba/se/pept/transport/ContactInfo.java \
com/sun/corba/se/pept/transport/ContactInfoList.java \
com/sun/corba/se/pept/transport/ContactInfoListIterator.java \
com/sun/corba/se/pept/transport/EventHandler.java \
com/sun/corba/se/pept/transport/InboundConnectionCache.java \
com/sun/corba/se/pept/transport/ListenerThread.java \
com/sun/corba/se/pept/transport/OutboundConnectionCache.java \
com/sun/corba/se/pept/transport/ReaderThread.java \
com/sun/corba/se/pept/transport/ResponseWaitingRoom.java \
com/sun/corba/se/pept/transport/Selector.java \
com/sun/corba/se/pept/transport/TransportManager.java

View File

@ -1,133 +0,0 @@
#
# Copyright (c) 1998, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Server Activation IDL Generated Files
#
com_sun_corba_se_spi_activation_java = \
com/sun/corba/se/spi/activation/IIOP_CLEAR_TEXT.java \
com/sun/corba/se/spi/activation/ORBidHelper.java \
com/sun/corba/se/spi/activation/ServerIdHelper.java \
com/sun/corba/se/spi/activation/POANameHolder.java \
com/sun/corba/se/spi/activation/POANameHelper.java \
com/sun/corba/se/spi/activation/NoSuchEndPointHelper.java \
com/sun/corba/se/spi/activation/NoSuchEndPointHolder.java \
com/sun/corba/se/spi/activation/NoSuchEndPoint.java \
com/sun/corba/se/spi/activation/InvalidORBidHelper.java \
com/sun/corba/se/spi/activation/InvalidORBidHolder.java \
com/sun/corba/se/spi/activation/InvalidORBid.java \
com/sun/corba/se/spi/activation/ServerNotRegisteredHelper.java \
com/sun/corba/se/spi/activation/ServerNotRegisteredHolder.java \
com/sun/corba/se/spi/activation/ServerNotRegistered.java \
com/sun/corba/se/spi/activation/ServerNotActiveHelper.java \
com/sun/corba/se/spi/activation/ServerNotActiveHolder.java \
com/sun/corba/se/spi/activation/ServerNotActive.java \
com/sun/corba/se/spi/activation/ServerHeldDownHelper.java \
com/sun/corba/se/spi/activation/ServerHeldDownHolder.java \
com/sun/corba/se/spi/activation/ServerHeldDown.java \
com/sun/corba/se/spi/activation/ServerAlreadyActiveHelper.java \
com/sun/corba/se/spi/activation/ServerAlreadyActiveHolder.java \
com/sun/corba/se/spi/activation/ServerAlreadyActive.java \
com/sun/corba/se/spi/activation/ServerAlreadyRegisteredHelper.java \
com/sun/corba/se/spi/activation/ServerAlreadyRegisteredHolder.java \
com/sun/corba/se/spi/activation/ServerAlreadyRegistered.java \
com/sun/corba/se/spi/activation/ServerAlreadyInstalledHelper.java \
com/sun/corba/se/spi/activation/ServerAlreadyInstalledHolder.java \
com/sun/corba/se/spi/activation/ServerAlreadyInstalled.java \
com/sun/corba/se/spi/activation/ServerAlreadyUninstalledHelper.java \
com/sun/corba/se/spi/activation/ServerAlreadyUninstalledHolder.java \
com/sun/corba/se/spi/activation/ServerAlreadyUninstalled.java \
com/sun/corba/se/spi/activation/BadServerDefinitionHelper.java \
com/sun/corba/se/spi/activation/BadServerDefinitionHolder.java \
com/sun/corba/se/spi/activation/BadServerDefinition.java \
com/sun/corba/se/spi/activation/ORBAlreadyRegisteredHelper.java \
com/sun/corba/se/spi/activation/ORBAlreadyRegisteredHolder.java \
com/sun/corba/se/spi/activation/ORBAlreadyRegistered.java \
com/sun/corba/se/spi/activation/TCPPortHelper.java \
com/sun/corba/se/spi/activation/ServerIdsHolder.java \
com/sun/corba/se/spi/activation/ServerIdsHelper.java \
com/sun/corba/se/spi/activation/Server.java \
com/sun/corba/se/spi/activation/EndPointInfoHelper.java \
com/sun/corba/se/spi/activation/EndPointInfoHolder.java \
com/sun/corba/se/spi/activation/EndPointInfo.java \
com/sun/corba/se/spi/activation/EndpointInfoListHolder.java \
com/sun/corba/se/spi/activation/EndpointInfoListHelper.java \
com/sun/corba/se/spi/activation/ORBPortInfoHelper.java \
com/sun/corba/se/spi/activation/ORBPortInfoHolder.java \
com/sun/corba/se/spi/activation/ORBPortInfo.java \
com/sun/corba/se/spi/activation/ORBPortInfoListHolder.java \
com/sun/corba/se/spi/activation/ORBPortInfoListHelper.java \
com/sun/corba/se/spi/activation/ORBidListHolder.java \
com/sun/corba/se/spi/activation/ORBidListHelper.java \
com/sun/corba/se/spi/activation/_ServerImplBase.java \
com/sun/corba/se/spi/activation/_ServerStub.java \
com/sun/corba/se/spi/activation/ServerHolder.java \
com/sun/corba/se/spi/activation/ServerHelper.java \
com/sun/corba/se/spi/activation/ServerOperations.java \
com/sun/corba/se/spi/activation/_ActivatorImplBase.java \
com/sun/corba/se/spi/activation/_ActivatorStub.java \
com/sun/corba/se/spi/activation/ActivatorHolder.java \
com/sun/corba/se/spi/activation/ActivatorHelper.java \
com/sun/corba/se/spi/activation/Activator.java \
com/sun/corba/se/spi/activation/ActivatorOperations.java \
com/sun/corba/se/spi/activation/_LocatorImplBase.java \
com/sun/corba/se/spi/activation/_LocatorStub.java \
com/sun/corba/se/spi/activation/LocatorHolder.java \
com/sun/corba/se/spi/activation/LocatorHelper.java \
com/sun/corba/se/spi/activation/Locator.java \
com/sun/corba/se/spi/activation/LocatorPackage/ServerLocationHelper.java \
com/sun/corba/se/spi/activation/LocatorPackage/ServerLocationHolder.java \
com/sun/corba/se/spi/activation/LocatorPackage/ServerLocation.java \
com/sun/corba/se/spi/activation/LocatorPackage/ServerLocationPerORBHelper.java \
com/sun/corba/se/spi/activation/LocatorPackage/ServerLocationPerORBHolder.java \
com/sun/corba/se/spi/activation/LocatorPackage/ServerLocationPerORB.java \
com/sun/corba/se/spi/activation/LocatorOperations.java \
com/sun/corba/se/spi/activation/_ServerManagerImplBase.java \
com/sun/corba/se/spi/activation/_ServerManagerStub.java \
com/sun/corba/se/spi/activation/ServerManager.java \
com/sun/corba/se/spi/activation/ServerManagerHolder.java \
com/sun/corba/se/spi/activation/ServerManagerHelper.java \
com/sun/corba/se/spi/activation/ServerManagerOperations.java \
com/sun/corba/se/spi/activation/_InitialNameServiceImplBase.java \
com/sun/corba/se/spi/activation/_InitialNameServiceStub.java \
com/sun/corba/se/spi/activation/InitialNameServiceHolder.java \
com/sun/corba/se/spi/activation/InitialNameServiceHelper.java \
com/sun/corba/se/spi/activation/InitialNameService.java \
com/sun/corba/se/spi/activation/InitialNameServicePackage/NameAlreadyBoundHelper.java \
com/sun/corba/se/spi/activation/InitialNameServicePackage/NameAlreadyBoundHolder.java \
com/sun/corba/se/spi/activation/InitialNameServicePackage/NameAlreadyBound.java \
com/sun/corba/se/spi/activation/InitialNameServiceOperations.java \
com/sun/corba/se/spi/activation/_RepositoryImplBase.java \
com/sun/corba/se/spi/activation/_RepositoryStub.java \
com/sun/corba/se/spi/activation/RepositoryHolder.java \
com/sun/corba/se/spi/activation/Repository.java \
com/sun/corba/se/spi/activation/RepositoryHelper.java \
com/sun/corba/se/spi/activation/RepositoryPackage/ServerDefHelper.java \
com/sun/corba/se/spi/activation/RepositoryPackage/ServerDefHolder.java \
com/sun/corba/se/spi/activation/RepositoryPackage/ServerDef.java \
com/sun/corba/se/spi/activation/RepositoryPackage/StringSeqHolder.java \
com/sun/corba/se/spi/activation/RepositoryPackage/StringSeqHelper.java \
com/sun/corba/se/spi/activation/RepositoryOperations.java

View File

@ -1,37 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for copyobject
#
com_sun_corba_se_spi_copyobject_java = \
com/sun/corba/se/spi/copyobject/CopierManager.java \
com/sun/corba/se/spi/copyobject/CopyobjectDefaults.java \
com/sun/corba/se/spi/copyobject/ObjectCopier.java \
com/sun/corba/se/spi/copyobject/ObjectCopierFactory.java \
com/sun/corba/se/spi/copyobject/ReflectiveCopyException.java
FILES_java = $(com_sun_corba_se_spi_copyobject_java)

View File

@ -1,30 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_encoding= \
com/sun/corba/se/spi/encoding/CorbaInputObject.java \
com/sun/corba/se/spi/encoding/CorbaOutputObject.java
FILES_java = $(com_sun_corba_se_spi_encoding)

View File

@ -1,36 +0,0 @@
#
# Copyright (c) 2001, 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for extension
#
com_sun_corba_se_spi_extension_java = \
com/sun/corba/se/spi/extension/ServantCachingPolicy.java \
com/sun/corba/se/spi/extension/ZeroPortPolicy.java \
com/sun/corba/se/spi/extension/RequestPartitioningPolicy.java \
com/sun/corba/se/spi/extension/CopyObjectPolicy.java
FILES_java = $(com_sun_corba_se_spi_extension_java)

View File

@ -1,62 +0,0 @@
#
# Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_ior_java = \
com/sun/corba/se/spi/ior/EncapsulationFactoryBase.java \
com/sun/corba/se/spi/ior/IOR.java \
com/sun/corba/se/spi/ior/IORFactory.java \
com/sun/corba/se/spi/ior/IORFactories.java \
com/sun/corba/se/spi/ior/IORTemplate.java \
com/sun/corba/se/spi/ior/IORTemplateList.java \
com/sun/corba/se/spi/ior/Identifiable.java \
com/sun/corba/se/spi/ior/IdentifiableBase.java \
com/sun/corba/se/spi/ior/IdentifiableContainerBase.java \
com/sun/corba/se/spi/ior/IdentifiableFactory.java \
com/sun/corba/se/spi/ior/IdentifiableFactoryFinder.java \
com/sun/corba/se/spi/ior/MakeImmutable.java \
com/sun/corba/se/spi/ior/ObjectAdapterId.java \
com/sun/corba/se/spi/ior/ObjectId.java \
com/sun/corba/se/spi/ior/ObjectKey.java \
com/sun/corba/se/spi/ior/ObjectKeyFactory.java \
com/sun/corba/se/spi/ior/ObjectKeyTemplate.java \
com/sun/corba/se/spi/ior/TaggedComponent.java \
com/sun/corba/se/spi/ior/TaggedComponentBase.java \
com/sun/corba/se/spi/ior/TaggedComponentFactoryFinder.java \
com/sun/corba/se/spi/ior/TaggedProfile.java \
com/sun/corba/se/spi/ior/TaggedProfileTemplate.java \
com/sun/corba/se/spi/ior/TaggedProfileTemplateBase.java \
com/sun/corba/se/spi/ior/WriteContents.java \
com/sun/corba/se/spi/ior/Writeable.java \
com/sun/corba/se/spi/ior/iiop/AlternateIIOPAddressComponent.java \
com/sun/corba/se/spi/ior/iiop/CodeSetsComponent.java \
com/sun/corba/se/spi/ior/iiop/JavaCodebaseComponent.java \
com/sun/corba/se/spi/ior/iiop/MaxStreamFormatVersionComponent.java \
com/sun/corba/se/spi/ior/iiop/RequestPartitioningComponent.java \
com/sun/corba/se/spi/ior/iiop/ORBTypeComponent.java \
com/sun/corba/se/spi/ior/iiop/GIOPVersion.java \
com/sun/corba/se/spi/ior/iiop/IIOPAddress.java \
com/sun/corba/se/spi/ior/iiop/IIOPFactories.java \
com/sun/corba/se/spi/ior/iiop/IIOPProfile.java \
com/sun/corba/se/spi/ior/iiop/IIOPProfileTemplate.java

View File

@ -1,37 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for connection
#
com_sun_corba_se_spi_legacy_connection_java = \
com/sun/corba/se/spi/legacy/connection/Connection.java \
com/sun/corba/se/spi/legacy/connection/GetEndPointInfoAgainException.java \
com/sun/corba/se/spi/legacy/connection/LegacyServerSocketEndPointInfo.java \
com/sun/corba/se/spi/legacy/connection/LegacyServerSocketManager.java \
com/sun/corba/se/spi/legacy/connection/ORBSocketFactory.java
FILES_java = $(com_sun_corba_se_spi_legacy_connection_java)

View File

@ -1,36 +0,0 @@
#
# Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for interceptor
#
com_sun_corba_se_spi_legacy_interceptor_java = \
com/sun/corba/se/spi/legacy/interceptor/IORInfoExt.java \
com/sun/corba/se/spi/legacy/interceptor/ORBInitInfoExt.java \
com/sun/corba/se/spi/legacy/interceptor/RequestInfoExt.java \
com/sun/corba/se/spi/legacy/interceptor/UnknownType.java
FILES_java = $(com_sun_corba_se_spi_legacy_interceptor_java)

View File

@ -1,34 +0,0 @@
#
# Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for logging
#
com_sun_corba_se_spi_logging_java = \
com/sun/corba/se/spi/logging/LogWrapperFactory.java \
com/sun/corba/se/spi/logging/LogWrapperBase.java \
com/sun/corba/se/spi/logging/CORBALogDomains.java

View File

@ -1,40 +0,0 @@
#
# Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
FILES_java = \
com/sun/corba/se/spi/monitoring/StatisticsAccumulator.java \
com/sun/corba/se/spi/monitoring/StatisticMonitoredAttribute.java \
com/sun/corba/se/spi/monitoring/MonitoredAttributeBase.java \
com/sun/corba/se/spi/monitoring/StringMonitoredAttributeBase.java \
com/sun/corba/se/spi/monitoring/LongMonitoredAttributeBase.java \
com/sun/corba/se/spi/monitoring/MonitoringFactories.java \
com/sun/corba/se/spi/monitoring/MonitoredAttributeInfo.java \
com/sun/corba/se/spi/monitoring/MonitoredObject.java \
com/sun/corba/se/spi/monitoring/MonitoredObjectFactory.java \
com/sun/corba/se/spi/monitoring/MonitoredAttribute.java \
com/sun/corba/se/spi/monitoring/MonitoredAttributeInfoFactory.java \
com/sun/corba/se/spi/monitoring/MonitoringConstants.java \
com/sun/corba/se/spi/monitoring/MonitoringManager.java \
com/sun/corba/se/spi/monitoring/MonitoringManagerFactory.java

View File

@ -1,33 +0,0 @@
#
# Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_oa_java = \
com/sun/corba/se/spi/oa/NullServant.java \
com/sun/corba/se/spi/oa/OADefault.java \
com/sun/corba/se/spi/oa/OADestroyed.java \
com/sun/corba/se/spi/oa/OAInvocationInfo.java \
com/sun/corba/se/spi/oa/ObjectAdapter.java \
com/sun/corba/se/spi/oa/ObjectAdapterFactory.java \
com/sun/corba/se/spi/oa/ObjectAdapterBase.java

View File

@ -1,41 +0,0 @@
#
# Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_orb_java = \
com/sun/corba/se/spi/orb/DataCollector.java \
com/sun/corba/se/spi/orb/ORBConfigurator.java \
com/sun/corba/se/spi/orb/ORBData.java \
com/sun/corba/se/spi/orb/Operation.java \
com/sun/corba/se/spi/orb/ORB.java \
com/sun/corba/se/spi/orb/ORBVersion.java \
com/sun/corba/se/spi/orb/ORBVersionFactory.java \
com/sun/corba/se/spi/orb/OperationFactory.java \
com/sun/corba/se/spi/orb/ParserData.java \
com/sun/corba/se/spi/orb/ParserDataFactory.java \
com/sun/corba/se/spi/orb/ParserImplBase.java \
com/sun/corba/se/spi/orb/ParserImplTableBase.java \
com/sun/corba/se/spi/orb/PropertyParser.java \
com/sun/corba/se/spi/orb/StringPair.java

View File

@ -1,53 +0,0 @@
#
# Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_orbutil_java = \
com/sun/corba/se/spi/orbutil/fsm/Action.java \
com/sun/corba/se/spi/orbutil/fsm/ActionBase.java \
com/sun/corba/se/spi/orbutil/fsm/Guard.java \
com/sun/corba/se/spi/orbutil/fsm/GuardBase.java \
com/sun/corba/se/spi/orbutil/fsm/Input.java \
com/sun/corba/se/spi/orbutil/fsm/InputImpl.java \
com/sun/corba/se/spi/orbutil/fsm/State.java \
com/sun/corba/se/spi/orbutil/fsm/StateEngine.java \
com/sun/corba/se/spi/orbutil/fsm/StateEngineFactory.java \
com/sun/corba/se/spi/orbutil/fsm/StateImpl.java \
com/sun/corba/se/spi/orbutil/fsm/FSM.java \
com/sun/corba/se/spi/orbutil/fsm/FSMImpl.java \
com/sun/corba/se/spi/orbutil/fsm/FSMTest.java \
com/sun/corba/se/spi/orbutil/closure/Closure.java \
com/sun/corba/se/spi/orbutil/closure/ClosureFactory.java \
com/sun/corba/se/spi/orbutil/threadpool/NoSuchThreadPoolException.java \
com/sun/corba/se/spi/orbutil/threadpool/NoSuchWorkQueueException.java \
com/sun/corba/se/spi/orbutil/threadpool/ThreadPool.java \
com/sun/corba/se/spi/orbutil/threadpool/ThreadPoolManager.java \
com/sun/corba/se/spi/orbutil/threadpool/Work.java \
com/sun/corba/se/spi/orbutil/threadpool/WorkQueue.java \
com/sun/corba/se/spi/orbutil/threadpool/ThreadPoolChooser.java \
com/sun/corba/se/spi/orbutil/proxy/LinkedInvocationHandler.java \
com/sun/corba/se/spi/orbutil/proxy/InvocationHandlerFactory.java \
com/sun/corba/se/spi/orbutil/proxy/DelegateInvocationHandlerImpl.java \
com/sun/corba/se/spi/orbutil/proxy/CompositeInvocationHandler.java \
com/sun/corba/se/spi/orbutil/proxy/CompositeInvocationHandlerImpl.java

View File

@ -1,33 +0,0 @@
#
# Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_presentation_rmi_java = \
com/sun/corba/se/spi/presentation/rmi/DynamicMethodMarshaller.java \
com/sun/corba/se/spi/presentation/rmi/DynamicStub.java \
com/sun/corba/se/spi/presentation/rmi/IDLNameTranslator.java \
com/sun/corba/se/spi/presentation/rmi/PresentationDefaults.java \
com/sun/corba/se/spi/presentation/rmi/PresentationManager.java \
com/sun/corba/se/spi/presentation/rmi/StubAdapter.java

View File

@ -1,38 +0,0 @@
#
# Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_protocol_java = \
com/sun/corba/se/spi/protocol/ClientDelegateFactory.java \
com/sun/corba/se/spi/protocol/CorbaClientDelegate.java \
com/sun/corba/se/spi/protocol/CorbaMessageMediator.java \
com/sun/corba/se/spi/protocol/CorbaProtocolHandler.java \
com/sun/corba/se/spi/protocol/CorbaServerRequestDispatcher.java \
com/sun/corba/se/spi/protocol/ForwardException.java \
com/sun/corba/se/spi/protocol/InitialServerRequestDispatcher.java \
com/sun/corba/se/spi/protocol/LocalClientRequestDispatcher.java \
com/sun/corba/se/spi/protocol/LocalClientRequestDispatcherFactory.java \
com/sun/corba/se/spi/protocol/PIHandler.java \
com/sun/corba/se/spi/protocol/RequestDispatcherDefault.java \
com/sun/corba/se/spi/protocol/RequestDispatcherRegistry.java

View File

@ -1,29 +0,0 @@
#
# Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_resolver_java = \
com/sun/corba/se/spi/resolver/Resolver.java \
com/sun/corba/se/spi/resolver/LocalResolver.java \
com/sun/corba/se/spi/resolver/ResolverDefault.java

View File

@ -1,37 +0,0 @@
#
# Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_servicecontext_java = \
com/sun/corba/se/spi/servicecontext/CodeSetServiceContext.java \
com/sun/corba/se/spi/servicecontext/MaxStreamFormatVersionServiceContext.java \
com/sun/corba/se/spi/servicecontext/ORBVersionServiceContext.java \
com/sun/corba/se/spi/servicecontext/SendingContextServiceContext.java \
com/sun/corba/se/spi/servicecontext/ServiceContext.java \
com/sun/corba/se/spi/servicecontext/ServiceContextData.java \
com/sun/corba/se/spi/servicecontext/ServiceContextRegistry.java \
com/sun/corba/se/spi/servicecontext/ServiceContexts.java \
com/sun/corba/se/spi/servicecontext/UEInfoServiceContext.java \
com/sun/corba/se/spi/servicecontext/UnknownServiceContext.java

View File

@ -1,44 +0,0 @@
#
# Copyright (c) 2002, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
com_sun_corba_se_spi_transport_java = \
com/sun/corba/se/spi/transport/CorbaAcceptor.java \
com/sun/corba/se/spi/transport/CorbaConnection.java \
com/sun/corba/se/spi/transport/CorbaConnectionCache.java \
com/sun/corba/se/spi/transport/CorbaContactInfo.java \
com/sun/corba/se/spi/transport/CorbaContactInfoList.java \
com/sun/corba/se/spi/transport/CorbaContactInfoListFactory.java \
com/sun/corba/se/spi/transport/CorbaContactInfoListIterator.java \
com/sun/corba/se/spi/transport/CorbaResponseWaitingRoom.java \
com/sun/corba/se/spi/transport/CorbaTransportManager.java \
com/sun/corba/se/spi/transport/IIOPPrimaryToContactInfo.java \
com/sun/corba/se/spi/transport/IORToSocketInfo.java \
com/sun/corba/se/spi/transport/IORTransformer.java \
com/sun/corba/se/spi/transport/ORBSocketFactory.java \
com/sun/corba/se/spi/transport/ReadTimeouts.java \
com/sun/corba/se/spi/transport/ReadTimeoutsFactory.java \
com/sun/corba/se/spi/transport/SocketInfo.java \
com/sun/corba/se/spi/transport/SocketOrChannelAcceptor.java \
com/sun/corba/se/spi/transport/TransportDefault.java

View File

@ -1,67 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
COM_SUN_CORBA_SE_INTERNAL_IDL_TOJAVAPORTABLE_java = \
com/sun/tools/corba/se/idl/toJavaPortable/Arguments.java \
com/sun/tools/corba/se/idl/toJavaPortable/AttributeGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/AuxGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/Compile.java \
com/sun/tools/corba/se/idl/toJavaPortable/ConstGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/EnumGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/ExceptionGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/Factories.java \
com/sun/tools/corba/se/idl/toJavaPortable/ForwardValueGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/GenFactory.java \
com/sun/tools/corba/se/idl/toJavaPortable/Helper.java \
com/sun/tools/corba/se/idl/toJavaPortable/Holder.java \
com/sun/tools/corba/se/idl/toJavaPortable/InterfaceGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/JavaGenerator.java \
com/sun/tools/corba/se/idl/toJavaPortable/MethodGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/ModuleGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/NativeGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/NameModifier.java \
com/sun/tools/corba/se/idl/toJavaPortable/NameModifierImpl.java \
com/sun/tools/corba/se/idl/toJavaPortable/PrimitiveGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/SequenceGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/Skeleton.java \
com/sun/tools/corba/se/idl/toJavaPortable/StringGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/StructGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/Stub.java \
com/sun/tools/corba/se/idl/toJavaPortable/TCOffsets.java \
com/sun/tools/corba/se/idl/toJavaPortable/TypedefGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/UnionGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/Util.java \
com/sun/tools/corba/se/idl/toJavaPortable/ValueBoxGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/ValueGen.java \
com/sun/tools/corba/se/idl/toJavaPortable/ValueFactory.java \
com/sun/tools/corba/se/idl/toJavaPortable/ValueBoxGen24.java \
com/sun/tools/corba/se/idl/toJavaPortable/ValueGen24.java \
com/sun/tools/corba/se/idl/toJavaPortable/MethodGen24.java \
com/sun/tools/corba/se/idl/toJavaPortable/Helper24.java \
com/sun/tools/corba/se/idl/toJavaPortable/MethodGenClone24.java \
com/sun/tools/corba/se/idl/toJavaPortable/AttributeGen24.java \
com/sun/tools/corba/se/idl/toJavaPortable/DefaultFactory.java

View File

@ -1,33 +0,0 @@
#
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
javax_activity_java = \
$(GROUP0)
GROUP0 = \
javax/activity/InvalidActivityException.java \
javax/activity/ActivityRequiredException.java \
javax/activity/ActivityCompletedException.java

View File

@ -1,31 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
javax_rmi_java = \
javax/rmi/PortableRemoteObject.java

View File

@ -1,39 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
javax_rmi_CORBA_java = \
javax/rmi/CORBA/Stub.java \
javax/rmi/CORBA/StubDelegate.java \
javax/rmi/CORBA/Tie.java \
javax/rmi/CORBA/Util.java \
javax/rmi/CORBA/UtilDelegate.java \
javax/rmi/CORBA/ValueHandler.java \
javax/rmi/CORBA/ValueHandlerMultiFormat.java \
javax/rmi/CORBA/ClassDesc.java \
javax/rmi/CORBA/PortableRemoteObjectDelegate.java \
javax/rmi/CORBA/GetORBPropertiesFileAction.java \

View File

@ -1,35 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
javax_transaction_java = \
$(GROUP0)
GROUP0 = \
javax/transaction/InvalidTransactionException.java \
javax/transaction/TransactionRequiredException.java \
javax/transaction/TransactionRolledbackException.java

View File

@ -1,263 +0,0 @@
#
# Copyright (c) 1996, 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files
org_omg_CORBA_java_1_2 = \
org/omg/CORBA/ARG_IN.java \
org/omg/CORBA/ARG_INOUT.java \
org/omg/CORBA/ARG_OUT.java \
org/omg/CORBA/Any.java \
org/omg/CORBA/AnyHolder.java \
org/omg/CORBA/BAD_CONTEXT.java \
org/omg/CORBA/BAD_INV_ORDER.java \
org/omg/CORBA/BAD_OPERATION.java \
org/omg/CORBA/BAD_PARAM.java \
org/omg/CORBA/BAD_POLICY.java \
org/omg/CORBA/BAD_POLICY_TYPE.java \
org/omg/CORBA/BAD_POLICY_VALUE.java \
org/omg/CORBA/BAD_TYPECODE.java \
org/omg/CORBA/BooleanHolder.java \
org/omg/CORBA/Bounds.java \
org/omg/CORBA/ByteHolder.java \
org/omg/CORBA/COMM_FAILURE.java \
org/omg/CORBA/CTX_RESTRICT_SCOPE.java \
org/omg/CORBA/CharHolder.java \
org/omg/CORBA/CompletionStatus.java \
org/omg/CORBA/Context.java \
org/omg/CORBA/ContextList.java \
org/omg/CORBA/Current.java \
org/omg/CORBA/DATA_CONVERSION.java \
org/omg/CORBA/DefinitionKind.java \
org/omg/CORBA/DomainManager.java \
org/omg/CORBA/DomainManagerOperations.java \
org/omg/CORBA/DoubleHolder.java \
org/omg/CORBA/DynAny.java \
org/omg/CORBA/DynAnyPackage/Invalid.java \
org/omg/CORBA/DynAnyPackage/InvalidSeq.java \
org/omg/CORBA/DynAnyPackage/InvalidValue.java \
org/omg/CORBA/DynAnyPackage/TypeMismatch.java \
org/omg/CORBA/DynArray.java \
org/omg/CORBA/DynEnum.java \
org/omg/CORBA/DynFixed.java \
org/omg/CORBA/DynSequence.java \
org/omg/CORBA/DynStruct.java \
org/omg/CORBA/DynUnion.java \
org/omg/CORBA/DynValue.java \
org/omg/CORBA/DynamicImplementation.java \
org/omg/CORBA/Environment.java \
org/omg/CORBA/ExceptionList.java \
org/omg/CORBA/FREE_MEM.java \
org/omg/CORBA/FixedHolder.java \
org/omg/CORBA/FloatHolder.java \
org/omg/CORBA/IDLType.java \
org/omg/CORBA/IMP_LIMIT.java \
org/omg/CORBA/INITIALIZE.java \
org/omg/CORBA/INTERNAL.java \
org/omg/CORBA/INTF_REPOS.java \
org/omg/CORBA/INVALID_TRANSACTION.java \
org/omg/CORBA/INV_FLAG.java \
org/omg/CORBA/INV_IDENT.java \
org/omg/CORBA/INV_OBJREF.java \
org/omg/CORBA/INV_POLICY.java \
org/omg/CORBA/IRObject.java \
org/omg/CORBA/IntHolder.java \
org/omg/CORBA/LongHolder.java \
org/omg/CORBA/MARSHAL.java \
org/omg/CORBA/NO_IMPLEMENT.java \
org/omg/CORBA/NO_MEMORY.java \
org/omg/CORBA/NO_PERMISSION.java \
org/omg/CORBA/NO_RESOURCES.java \
org/omg/CORBA/NO_RESPONSE.java \
org/omg/CORBA/NVList.java \
org/omg/CORBA/NameValuePair.java \
org/omg/CORBA/NamedValue.java \
org/omg/CORBA/OBJECT_NOT_EXIST.java \
org/omg/CORBA/OBJ_ADAPTER.java \
org/omg/CORBA/ORB.java \
org/omg/CORBA/ORBPackage/InconsistentTypeCode.java \
org/omg/CORBA/ORBPackage/InvalidName.java \
org/omg/CORBA/Object.java \
org/omg/CORBA/ObjectHolder.java \
org/omg/CORBA/OMGVMCID.java \
org/omg/CORBA/PERSIST_STORE.java \
org/omg/CORBA/PRIVATE_MEMBER.java \
org/omg/CORBA/PUBLIC_MEMBER.java \
org/omg/CORBA/Policy.java \
org/omg/CORBA/PolicyError.java \
org/omg/CORBA/Principal.java \
org/omg/CORBA/PrincipalHolder.java \
org/omg/CORBA/Request.java \
org/omg/CORBA/ServerRequest.java \
org/omg/CORBA/ServiceDetail.java \
org/omg/CORBA/ServiceDetailHelper.java \
org/omg/CORBA/ServiceInformation.java \
org/omg/CORBA/ServiceInformationHelper.java \
org/omg/CORBA/ServiceInformationHolder.java \
org/omg/CORBA/SetOverrideType.java \
org/omg/CORBA/ShortHolder.java \
org/omg/CORBA/StringHolder.java \
org/omg/CORBA/StructMember.java \
org/omg/CORBA/SystemException.java \
org/omg/CORBA/TCKind.java \
org/omg/CORBA/TRANSACTION_REQUIRED.java \
org/omg/CORBA/TRANSACTION_ROLLEDBACK.java \
org/omg/CORBA/TRANSIENT.java \
org/omg/CORBA/TypeCode.java \
org/omg/CORBA/TypeCodeHolder.java \
org/omg/CORBA/TypeCodePackage/BadKind.java \
org/omg/CORBA/TypeCodePackage/Bounds.java \
org/omg/CORBA/UNKNOWN.java \
org/omg/CORBA/UNSUPPORTED_POLICY.java \
org/omg/CORBA/UNSUPPORTED_POLICY_VALUE.java \
org/omg/CORBA/UnionMember.java \
org/omg/CORBA/UnknownUserException.java \
org/omg/CORBA/UserException.java \
org/omg/CORBA/VM_ABSTRACT.java \
org/omg/CORBA/VM_CUSTOM.java \
org/omg/CORBA/VM_NONE.java \
org/omg/CORBA/VM_TRUNCATABLE.java \
org/omg/CORBA/ValueMember.java \
org/omg/CORBA/WrongTransaction.java \
org/omg/CORBA/portable/ApplicationException.java \
org/omg/CORBA/portable/Delegate.java \
org/omg/CORBA/portable/IDLEntity.java \
org/omg/CORBA/portable/InputStream.java \
org/omg/CORBA/portable/InvokeHandler.java \
org/omg/CORBA/portable/ObjectImpl.java \
org/omg/CORBA/portable/OutputStream.java \
org/omg/CORBA/portable/RemarshalException.java \
org/omg/CORBA/portable/ResponseHandler.java \
org/omg/CORBA/portable/ServantObject.java \
org/omg/CORBA/portable/Streamable.java \
org/omg/CORBA/portable/ValueOutputStream.java \
org/omg/CORBA/portable/ValueInputStream.java
# org/omg/CORBA/AttributeMode.java \
# org/omg/CORBA/AttributeModeHelper.java \
org_omg_CORBA_java_1_3 = \
org/omg/CORBA/AnySeqHelper.java \
org/omg/CORBA/AnySeqHolder.java \
org/omg/CORBA/BooleanSeqHelper.java \
org/omg/CORBA/BooleanSeqHolder.java \
org/omg/CORBA/CharSeqHelper.java \
org/omg/CORBA/CharSeqHolder.java \
org/omg/CORBA/CompletionStatusHelper.java \
org/omg/CORBA/CurrentOperations.java \
org/omg/CORBA/CurrentHelper.java \
org/omg/CORBA/CurrentHolder.java \
org/omg/CORBA/CustomMarshal.java \
org/omg/CORBA/DataInputStream.java \
org/omg/CORBA/DataOutputStream.java \
org/omg/CORBA/DefinitionKindHelper.java \
org/omg/CORBA/DoubleSeqHelper.java \
org/omg/CORBA/DoubleSeqHolder.java \
org/omg/CORBA/FieldNameHelper.java \
org/omg/CORBA/FloatSeqHelper.java \
org/omg/CORBA/FloatSeqHolder.java \
org/omg/CORBA/IDLTypeHelper.java \
org/omg/CORBA/IDLTypeOperations.java \
org/omg/CORBA/IRObjectOperations.java \
org/omg/CORBA/IdentifierHelper.java \
org/omg/CORBA/LongLongSeqHelper.java \
org/omg/CORBA/LongLongSeqHolder.java \
org/omg/CORBA/LongSeqHelper.java \
org/omg/CORBA/LongSeqHolder.java \
org/omg/CORBA/NameValuePairHelper.java \
org/omg/CORBA/ObjectHelper.java \
org/omg/CORBA/OctetSeqHelper.java \
org/omg/CORBA/OctetSeqHolder.java \
org/omg/CORBA/PolicyOperations.java \
org/omg/CORBA/PolicyHelper.java \
org/omg/CORBA/PolicyHolder.java \
org/omg/CORBA/PolicyTypeHelper.java \
org/omg/CORBA/PolicyListHelper.java \
org/omg/CORBA/PolicyListHolder.java \
org/omg/CORBA/RepositoryIdHelper.java \
org/omg/CORBA/SetOverrideTypeHelper.java \
org/omg/CORBA/ShortSeqHelper.java \
org/omg/CORBA/ShortSeqHolder.java \
org/omg/CORBA/StringValueHelper.java \
org/omg/CORBA/StructMemberHelper.java \
org/omg/CORBA/ULongLongSeqHelper.java \
org/omg/CORBA/ULongLongSeqHolder.java \
org/omg/CORBA/ULongSeqHelper.java \
org/omg/CORBA/ULongSeqHolder.java \
org/omg/CORBA/UShortSeqHelper.java \
org/omg/CORBA/UShortSeqHolder.java \
org/omg/CORBA/UnionMemberHelper.java \
org/omg/CORBA/ValueBaseHelper.java \
org/omg/CORBA/ValueBaseHolder.java \
org/omg/CORBA/ValueMemberHelper.java \
org/omg/CORBA/VersionSpecHelper.java \
org/omg/CORBA/VisibilityHelper.java \
org/omg/CORBA/WCharSeqHelper.java \
org/omg/CORBA/WCharSeqHolder.java \
org/omg/CORBA/WStringValueHelper.java \
org/omg/CORBA/_IDLTypeStub.java \
org/omg/CORBA/_PolicyStub.java \
org/omg/CORBA/portable/BoxedValueHelper.java \
org/omg/CORBA/portable/CustomValue.java \
org/omg/CORBA/portable/IndirectionException.java \
org/omg/CORBA/portable/StreamableValue.java \
org/omg/CORBA/portable/UnknownException.java \
org/omg/CORBA/portable/ValueBase.java \
org/omg/CORBA/portable/ValueFactory.java
org_omg_CORBA_java_new = \
org/omg/CORBA/LocalObject.java \
org/omg/CORBA/ParameterMode.java \
org/omg/CORBA/ParameterModeHelper.java \
org/omg/CORBA/ParameterModeHolder.java \
org/omg/CORBA/PolicyErrorCodeHelper.java \
org/omg/CORBA/PolicyErrorHelper.java \
org/omg/CORBA/PolicyErrorHolder.java \
org/omg/CORBA/StringSeqHelper.java \
org/omg/CORBA/StringSeqHolder.java \
org/omg/CORBA/UnknownUserExceptionHelper.java \
org/omg/CORBA/UnknownUserExceptionHolder.java \
org/omg/CORBA/WStringSeqHelper.java \
org/omg/CORBA/WStringSeqHolder.java \
org/omg/CORBA/WrongTransactionHelper.java \
org/omg/CORBA/WrongTransactionHolder.java
org_omg_CORBA_TSIdentification_java = \
org/omg/CORBA/TSIdentification.java \
org/omg/CORBA/TSIdentificationPackage/AlreadyIdentified.java \
org/omg/CORBA/TSIdentificationPackage/NotAvailable.java
org_omg_CORBA30_java = \
org/omg/CORBA/ACTIVITY_COMPLETED.java \
org/omg/CORBA/ACTIVITY_REQUIRED.java \
org/omg/CORBA/BAD_QOS.java \
org/omg/CORBA/CODESET_INCOMPATIBLE.java \
org/omg/CORBA/INVALID_ACTIVITY.java \
org/omg/CORBA/REBIND.java \
org/omg/CORBA/TIMEOUT.java \
org/omg/CORBA/TRANSACTION_MODE.java \
org/omg/CORBA/TRANSACTION_UNAVAILABLE.java

View File

@ -1,46 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# CORBA IDL Generated Files
#
CORBA_java = \
org/omg/CORBA/ParameterMode.java \
org/omg/CORBA/ParameterModeHelper.java \
org/omg/CORBA/ParameterModeHolder.java \
org/omg/CORBA/PolicyErrorCodeHelper.java \
org/omg/CORBA/PolicyErrorHelper.java \
org/omg/CORBA/PolicyErrorHolder.java \
org/omg/CORBA/StringSeqHelper.java \
org/omg/CORBA/StringSeqHolder.java \
org/omg/CORBA/WStringSeqHelper.java \
org/omg/CORBA/WStringSeqHolder.java
CORBA_DUPLICATE_java = \
org/omg/CORBA/OctetSeqHelper.java \
org/omg/CORBA/OctetSeqHolder.java \
org/omg/CORBA/PolicyError.java \
org/omg/CORBA/RepositoryIdHelper.java

View File

@ -1,34 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
org_omg_CORBA_2_3_java = \
org/omg/CORBA_2_3/ORB.java \
org/omg/CORBA_2_3/portable/InputStream.java \
org/omg/CORBA_2_3/portable/OutputStream.java \
org/omg/CORBA_2_3/portable/Delegate.java \
org/omg/CORBA_2_3/portable/ObjectImpl.java

View File

@ -1,87 +0,0 @@
#
# Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
NS_GENERATED_java = \
org/omg/CosNaming/IstringHelper.java \
org/omg/CosNaming/Binding.java \
org/omg/CosNaming/BindingHelper.java \
org/omg/CosNaming/BindingHolder.java \
org/omg/CosNaming/BindingIterator.java \
org/omg/CosNaming/BindingIteratorPOA.java \
org/omg/CosNaming/BindingIteratorOperations.java \
org/omg/CosNaming/BindingIteratorHelper.java \
org/omg/CosNaming/BindingIteratorHolder.java \
org/omg/CosNaming/_BindingIteratorStub.java \
org/omg/CosNaming/BindingListHelper.java \
org/omg/CosNaming/BindingListHolder.java \
org/omg/CosNaming/BindingType.java \
org/omg/CosNaming/BindingTypeHelper.java \
org/omg/CosNaming/BindingTypeHolder.java \
org/omg/CosNaming/NameComponent.java \
org/omg/CosNaming/NameComponentHelper.java \
org/omg/CosNaming/NameComponentHolder.java \
org/omg/CosNaming/NameHelper.java \
org/omg/CosNaming/NameHolder.java \
org/omg/CosNaming/NamingContext.java \
org/omg/CosNaming/NamingContextHelper.java \
org/omg/CosNaming/NamingContextHolder.java \
org/omg/CosNaming/NamingContextOperations.java \
org/omg/CosNaming/_NamingContextStub.java \
org/omg/CosNaming/NamingContextPackage/AlreadyBound.java \
org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java \
org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java \
org/omg/CosNaming/NamingContextPackage/CannotProceed.java \
org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java \
org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java \
org/omg/CosNaming/NamingContextPackage/InvalidName.java \
org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java \
org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java \
org/omg/CosNaming/NamingContextPackage/NotEmpty.java \
org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java \
org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java \
org/omg/CosNaming/NamingContextPackage/NotFound.java \
org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java \
org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java \
org/omg/CosNaming/NamingContextPackage/NotFoundReason.java \
org/omg/CosNaming/NamingContextPackage/NotFoundReasonHelper.java \
org/omg/CosNaming/NamingContextPackage/NotFoundReasonHolder.java \
org/omg/CosNaming/NamingContextPOA.java \
org/omg/CosNaming/NamingContextExt.java \
org/omg/CosNaming/NamingContextExtOperations.java \
org/omg/CosNaming/NamingContextExtHelper.java \
org/omg/CosNaming/NamingContextExtHolder.java \
org/omg/CosNaming/NamingContextExtPOA.java \
org/omg/CosNaming/_NamingContextExtStub.java \
org/omg/CosNaming/NamingContextExtPackage/AddressHelper.java \
org/omg/CosNaming/NamingContextExtPackage/InvalidAddress.java \
org/omg/CosNaming/NamingContextExtPackage/InvalidAddressHelper.java \
org/omg/CosNaming/NamingContextExtPackage/InvalidAddressHolder.java \
org/omg/CosNaming/NamingContextExtPackage/StringNameHelper.java \
org/omg/CosNaming/NamingContextExtPackage/URLStringHelper.java
LEGACY_FILES_java = \
org/omg/CosNaming/_NamingContextImplBase.java \
org/omg/CosNaming/_BindingIteratorImplBase.java

View File

@ -1,117 +0,0 @@
#
# Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files
# Please keep this sorted.
#
DYNANY_GENERATED_java = \
org/omg/DynamicAny/DynAny.java \
org/omg/DynamicAny/DynAnyFactory.java \
org/omg/DynamicAny/DynAnyFactoryOperations.java \
org/omg/DynamicAny/DynAnyOperations.java \
org/omg/DynamicAny/DynArray.java \
org/omg/DynamicAny/DynArrayOperations.java \
org/omg/DynamicAny/DynEnum.java \
org/omg/DynamicAny/DynEnumOperations.java \
org/omg/DynamicAny/DynFixed.java \
org/omg/DynamicAny/DynFixedOperations.java \
org/omg/DynamicAny/DynSequence.java \
org/omg/DynamicAny/DynSequenceOperations.java \
org/omg/DynamicAny/DynStruct.java \
org/omg/DynamicAny/DynStructOperations.java \
org/omg/DynamicAny/DynUnion.java \
org/omg/DynamicAny/DynUnionOperations.java \
org/omg/DynamicAny/DynValue.java \
org/omg/DynamicAny/DynValueOperations.java \
org/omg/DynamicAny/DynValueBox.java \
org/omg/DynamicAny/DynValueBoxOperations.java \
org/omg/DynamicAny/DynValueCommon.java \
org/omg/DynamicAny/DynValueCommonOperations.java \
org/omg/DynamicAny/NameDynAnyPair.java \
org/omg/DynamicAny/NameValuePair.java \
org/omg/DynamicAny/DynAnyPackage/InvalidValue.java \
org/omg/DynamicAny/DynAnyPackage/InvalidValueHelper.java \
org/omg/DynamicAny/DynAnyPackage/TypeMismatch.java \
org/omg/DynamicAny/DynAnyPackage/TypeMismatchHelper.java \
org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCode.java \
org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCodeHelper.java \
org/omg/DynamicAny/AnySeqHelper.java \
org/omg/DynamicAny/DynStructHelper.java \
org/omg/DynamicAny/DynAnyFactoryHelper.java \
org/omg/DynamicAny/DynUnionHelper.java \
org/omg/DynamicAny/DynAnyHelper.java \
org/omg/DynamicAny/DynValueHelper.java \
org/omg/DynamicAny/DynArrayHelper.java \
org/omg/DynamicAny/DynAnySeqHelper.java \
org/omg/DynamicAny/DynEnumHelper.java \
org/omg/DynamicAny/DynFixedHelper.java \
org/omg/DynamicAny/FieldNameHelper.java \
org/omg/DynamicAny/NameDynAnyPairHelper.java \
org/omg/DynamicAny/DynSequenceHelper.java \
org/omg/DynamicAny/NameDynAnyPairSeqHelper.java \
org/omg/DynamicAny/NameValuePairHelper.java \
org/omg/DynamicAny/NameValuePairSeqHelper.java \
org/omg/DynamicAny/_DynAnyFactoryStub.java \
org/omg/DynamicAny/_DynAnyStub.java \
org/omg/DynamicAny/_DynArrayStub.java \
org/omg/DynamicAny/_DynEnumStub.java \
org/omg/DynamicAny/_DynFixedStub.java \
org/omg/DynamicAny/_DynSequenceStub.java \
org/omg/DynamicAny/_DynStructStub.java \
org/omg/DynamicAny/_DynUnionStub.java \
org/omg/DynamicAny/_DynValueStub.java
DYNANY_HELP_HOLD_java = \
org/omg/DynamicAny/AnySeqHolder.java \
org/omg/DynamicAny/DynStructHolder.java \
org/omg/DynamicAny/DynAnyFactoryHolder.java \
org/omg/DynamicAny/DynUnionHolder.java \
org/omg/DynamicAny/DynAnyHolder.java \
org/omg/DynamicAny/DynValueHolder.java \
org/omg/DynamicAny/DynArrayHolder.java \
org/omg/DynamicAny/DynAnySeqHolder.java \
org/omg/DynamicAny/DynEnumHolder.java \
org/omg/DynamicAny/DynFixedHolder.java \
org/omg/DynamicAny/DynSequenceHolder.java \
org/omg/DynamicAny/NameDynAnyPairHelper.java \
org/omg/DynamicAny/NameDynAnyPairHolder.java \
org/omg/DynamicAny/NameDynAnyPairSeqHolder.java \
org/omg/DynamicAny/NameValuePairHolder.java \
org/omg/DynamicAny/NameValuePairSeqHolder.java \
org/omg/DynamicAny/DynAnyPackage/InvalidValueHolder.java \
org/omg/DynamicAny/DynAnyPackage/TypeMismatchHolder.java \
org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCodeHolder.java
DYNANY_TO_DELETE_FILES = \
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

View File

@ -1,71 +0,0 @@
#
# Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# IOP IDL Generated Files
#
IOP_java = \
org/omg/IOP/CodeSets.java \
org/omg/IOP/ComponentIdHelper.java \
org/omg/IOP/IOR.java \
org/omg/IOP/IORHelper.java \
org/omg/IOP/IORHolder.java \
org/omg/IOP/MultipleComponentProfileHelper.java \
org/omg/IOP/MultipleComponentProfileHolder.java \
org/omg/IOP/ProfileIdHelper.java \
org/omg/IOP/RMICustomMaxStreamFormat.java \
org/omg/IOP/ServiceContext.java \
org/omg/IOP/ServiceContextHelper.java \
org/omg/IOP/ServiceContextHolder.java \
org/omg/IOP/ServiceContextListHelper.java \
org/omg/IOP/ServiceContextListHolder.java \
org/omg/IOP/ServiceIdHelper.java \
org/omg/IOP/TAG_INTERNET_IOP.java \
org/omg/IOP/TAG_MULTIPLE_COMPONENTS.java \
org/omg/IOP/TAG_ALTERNATE_IIOP_ADDRESS.java \
org/omg/IOP/TAG_CODE_SETS.java \
org/omg/IOP/TAG_JAVA_CODEBASE.java \
org/omg/IOP/TAG_ORB_TYPE.java \
org/omg/IOP/TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.java \
org/omg/IOP/TAG_POLICIES.java \
org/omg/IOP/TaggedComponent.java \
org/omg/IOP/TaggedComponentHelper.java \
org/omg/IOP/TaggedComponentHolder.java \
org/omg/IOP/TaggedProfile.java \
org/omg/IOP/TaggedProfileHelper.java \
org/omg/IOP/TaggedProfileHolder.java \
org/omg/IOP/TransactionService.java
IOP_TO_DELETE_FILES = \
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

View File

@ -1,32 +0,0 @@
#
# Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Messaging IDL Generated Files
#
Messaging_java = \
org/omg/Messaging/SYNC_WITH_TRANSPORT.java \
org/omg/Messaging/SyncScopeHelper.java

View File

@ -1,162 +0,0 @@
#
# Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Interceptors IDL Generated Files
#
# List of files that must be present after a build:
PI_GENERATED_java = \
org/omg/PortableInterceptor/ACTIVE.java \
org/omg/PortableInterceptor/AdapterManagerIdHelper.java \
org/omg/PortableInterceptor/AdapterNameHelper.java \
org/omg/PortableInterceptor/AdapterStateHelper.java \
org/omg/PortableInterceptor/ClientRequestInfo.java \
org/omg/PortableInterceptor/ClientRequestInfoOperations.java \
org/omg/PortableInterceptor/ClientRequestInterceptor.java \
org/omg/PortableInterceptor/ClientRequestInterceptorOperations.java \
org/omg/PortableInterceptor/Current.java \
org/omg/PortableInterceptor/CurrentHelper.java \
org/omg/PortableInterceptor/CurrentOperations.java \
org/omg/PortableInterceptor/DISCARDING.java \
org/omg/PortableInterceptor/ForwardRequest.java \
org/omg/PortableInterceptor/ForwardRequestHelper.java \
org/omg/PortableInterceptor/HOLDING.java \
org/omg/PortableInterceptor/IORInfo.java \
org/omg/PortableInterceptor/IORInfoOperations.java \
org/omg/PortableInterceptor/IORInterceptor.java \
org/omg/PortableInterceptor/IORInterceptorOperations.java \
org/omg/PortableInterceptor/IORInterceptor_3_0.java \
org/omg/PortableInterceptor/IORInterceptor_3_0Operations.java \
org/omg/PortableInterceptor/IORInterceptor_3_0Helper.java \
org/omg/PortableInterceptor/IORInterceptor_3_0Holder.java \
org/omg/PortableInterceptor/INACTIVE.java \
org/omg/PortableInterceptor/Interceptor.java \
org/omg/PortableInterceptor/InvalidSlotHelper.java \
org/omg/PortableInterceptor/InterceptorOperations.java \
org/omg/PortableInterceptor/InvalidSlot.java \
org/omg/PortableInterceptor/NON_EXISTENT.java \
org/omg/PortableInterceptor/ObjectIdHelper.java \
org/omg/PortableInterceptor/ObjectReferenceFactory.java \
org/omg/PortableInterceptor/ObjectReferenceFactoryHelper.java \
org/omg/PortableInterceptor/ObjectReferenceFactoryHolder.java \
org/omg/PortableInterceptor/ObjectReferenceTemplate.java \
org/omg/PortableInterceptor/ObjectReferenceTemplateHelper.java \
org/omg/PortableInterceptor/ObjectReferenceTemplateHolder.java \
org/omg/PortableInterceptor/ObjectReferenceTemplateSeqHelper.java \
org/omg/PortableInterceptor/ObjectReferenceTemplateSeqHolder.java \
org/omg/PortableInterceptor/ORBIdHelper.java \
org/omg/PortableInterceptor/ORBInitInfo.java \
org/omg/PortableInterceptor/ORBInitInfoOperations.java \
org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateName.java \
org/omg/PortableInterceptor/ORBInitInfoPackage/DuplicateNameHelper.java \
org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidName.java \
org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidNameHelper.java \
org/omg/PortableInterceptor/ORBInitInfoPackage/ObjectIdHelper.java \
org/omg/PortableInterceptor/ORBInitializer.java \
org/omg/PortableInterceptor/ORBInitializerOperations.java \
org/omg/PortableInterceptor/PolicyFactory.java \
org/omg/PortableInterceptor/PolicyFactoryOperations.java \
org/omg/PortableInterceptor/RequestInfo.java \
org/omg/PortableInterceptor/RequestInfoOperations.java \
org/omg/PortableInterceptor/SUCCESSFUL.java \
org/omg/PortableInterceptor/SYSTEM_EXCEPTION.java \
org/omg/PortableInterceptor/USER_EXCEPTION.java \
org/omg/PortableInterceptor/LOCATION_FORWARD.java \
org/omg/PortableInterceptor/TRANSPORT_RETRY.java \
org/omg/PortableInterceptor/ServerIdHelper.java \
org/omg/PortableInterceptor/ServerRequestInfo.java \
org/omg/PortableInterceptor/ServerRequestInfoOperations.java \
org/omg/PortableInterceptor/ServerRequestInterceptor.java \
org/omg/PortableInterceptor/ServerRequestInterceptorOperations.java \
org/omg/IOP/Codec.java \
org/omg/IOP/CodecFactory.java \
org/omg/IOP/CodecFactoryHelper.java \
org/omg/IOP/CodecFactoryOperations.java \
org/omg/IOP/CodecFactoryPackage/UnknownEncoding.java \
org/omg/IOP/CodecFactoryPackage/UnknownEncodingHelper.java \
org/omg/IOP/CodecOperations.java \
org/omg/IOP/CodecPackage/FormatMismatch.java \
org/omg/IOP/CodecPackage/FormatMismatchHelper.java \
org/omg/IOP/CodecPackage/InvalidTypeForEncoding.java \
org/omg/IOP/CodecPackage/InvalidTypeForEncodingHelper.java \
org/omg/IOP/CodecPackage/TypeMismatch.java \
org/omg/IOP/CodecPackage/TypeMismatchHelper.java \
org/omg/IOP/ENCODING_CDR_ENCAPS.java \
org/omg/IOP/Encoding.java \
org/omg/IOP/ExceptionDetailMessage.java \
org/omg/Dynamic/Parameter.java
# Helper and Holder files to be removed:
PI_GENERATED_HELP_HOL_java = \
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

View File

@ -1,146 +0,0 @@
#
# Copyright (c) 1998, 2002, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
PortableServer_java = \
org/omg/PortableServer/Servant.java \
org/omg/PortableServer/ServantLocatorPackage/CookieHolder.java \
org/omg/PortableServer/DynamicImplementation.java \
org/omg/PortableServer/portable/Delegate.java
POA_GENERATED_java = \
org/omg/PortableServer/AdapterActivator.java \
org/omg/PortableServer/AdapterActivatorOperations.java \
org/omg/PortableServer/Current.java \
org/omg/PortableServer/CurrentHelper.java \
org/omg/PortableServer/CurrentOperations.java \
org/omg/PortableServer/CurrentPackage/NoContext.java \
org/omg/PortableServer/CurrentPackage/NoContextHelper.java \
org/omg/PortableServer/ForwardRequest.java \
org/omg/PortableServer/ForwardRequestHelper.java \
org/omg/PortableServer/ID_ASSIGNMENT_POLICY_ID.java \
org/omg/PortableServer/ID_UNIQUENESS_POLICY_ID.java \
org/omg/PortableServer/IMPLICIT_ACTIVATION_POLICY_ID.java \
org/omg/PortableServer/IdAssignmentPolicy.java \
org/omg/PortableServer/IdAssignmentPolicyOperations.java \
org/omg/PortableServer/IdAssignmentPolicyValue.java \
org/omg/PortableServer/IdUniquenessPolicy.java \
org/omg/PortableServer/IdUniquenessPolicyOperations.java \
org/omg/PortableServer/IdUniquenessPolicyValue.java \
org/omg/PortableServer/ImplicitActivationPolicy.java \
org/omg/PortableServer/ImplicitActivationPolicyOperations.java \
org/omg/PortableServer/ImplicitActivationPolicyValue.java \
org/omg/PortableServer/LIFESPAN_POLICY_ID.java \
org/omg/PortableServer/LifespanPolicy.java \
org/omg/PortableServer/LifespanPolicyOperations.java \
org/omg/PortableServer/LifespanPolicyValue.java \
org/omg/PortableServer/POA.java \
org/omg/PortableServer/POAHelper.java \
org/omg/PortableServer/POAOperations.java \
org/omg/PortableServer/POAManager.java \
org/omg/PortableServer/POAManagerOperations.java \
org/omg/PortableServer/POAManagerPackage/AdapterInactive.java \
org/omg/PortableServer/POAManagerPackage/AdapterInactiveHelper.java \
org/omg/PortableServer/POAManagerPackage/State.java \
org/omg/PortableServer/POAPackage/AdapterAlreadyExists.java \
org/omg/PortableServer/POAPackage/AdapterAlreadyExistsHelper.java \
org/omg/PortableServer/POAPackage/AdapterNonExistent.java \
org/omg/PortableServer/POAPackage/AdapterNonExistentHelper.java \
org/omg/PortableServer/POAPackage/InvalidPolicy.java \
org/omg/PortableServer/POAPackage/InvalidPolicyHelper.java \
org/omg/PortableServer/POAPackage/NoServant.java \
org/omg/PortableServer/POAPackage/NoServantHelper.java \
org/omg/PortableServer/POAPackage/ObjectAlreadyActive.java \
org/omg/PortableServer/POAPackage/ObjectAlreadyActiveHelper.java \
org/omg/PortableServer/POAPackage/ObjectNotActive.java \
org/omg/PortableServer/POAPackage/ObjectNotActiveHelper.java \
org/omg/PortableServer/POAPackage/ServantAlreadyActive.java \
org/omg/PortableServer/POAPackage/ServantAlreadyActiveHelper.java \
org/omg/PortableServer/POAPackage/ServantNotActive.java \
org/omg/PortableServer/POAPackage/ServantNotActiveHelper.java \
org/omg/PortableServer/POAPackage/WrongAdapter.java \
org/omg/PortableServer/POAPackage/WrongAdapterHelper.java \
org/omg/PortableServer/POAPackage/WrongPolicy.java \
org/omg/PortableServer/POAPackage/WrongPolicyHelper.java \
org/omg/PortableServer/REQUEST_PROCESSING_POLICY_ID.java \
org/omg/PortableServer/RequestProcessingPolicy.java \
org/omg/PortableServer/RequestProcessingPolicyOperations.java \
org/omg/PortableServer/RequestProcessingPolicyValue.java \
org/omg/PortableServer/ServantActivator.java \
org/omg/PortableServer/ServantActivatorHelper.java \
org/omg/PortableServer/ServantActivatorOperations.java \
org/omg/PortableServer/ServantActivatorPOA.java \
org/omg/PortableServer/_ServantActivatorStub.java \
org/omg/PortableServer/ServantLocator.java \
org/omg/PortableServer/ServantLocatorHelper.java \
org/omg/PortableServer/ServantLocatorOperations.java \
org/omg/PortableServer/ServantLocatorPOA.java \
org/omg/PortableServer/_ServantLocatorStub.java \
org/omg/PortableServer/ServantManager.java \
org/omg/PortableServer/ServantManagerOperations.java \
org/omg/PortableServer/SERVANT_RETENTION_POLICY_ID.java \
org/omg/PortableServer/ServantRetentionPolicy.java \
org/omg/PortableServer/ServantRetentionPolicyOperations.java \
org/omg/PortableServer/ServantRetentionPolicyValue.java \
org/omg/PortableServer/THREAD_POLICY_ID.java \
org/omg/PortableServer/ThreadPolicy.java \
org/omg/PortableServer/ThreadPolicyOperations.java \
org/omg/PortableServer/ThreadPolicyValue.java
POA_GENERATED_HELP_HOL_java = \
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

View File

@ -1,30 +0,0 @@
#
# Copyright (c) 1998, 2002, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# Generated by IBM JTC-SV tools.genmake
# Copyright (c) IBM Corporation 1998.
org_omg_SendingContext_java = \
org/omg/SendingContext/RunTime.java \
org/omg/SendingContext/RunTimeOperations.java

View File

@ -1,28 +0,0 @@
#
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
sun_corba_java = \
sun/corba/BridgePermission.java \
sun/corba/Bridge.java

View File

@ -1,48 +0,0 @@
#
# Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Makefile for building all of java
#
BUILDDIR = ../../../..
PRODUCT = se
include $(BUILDDIR)/common/Defs.gmk
# IDL code generation is moved out to an extra step before the
# actual classes are compiled
# the files should be compiled in the following order, core to be built
# before connection
# Note that sources generates the logging wrappers, and pept compiles
# them, because pept is the earliest build target that can use
# the log wrappers. Note that rmi is moved here after pept because
# the rmic iiop backend needs some classes that are part of the impl/util
# package. These classes use log wrappers, so they must be built after
# pept and before rmi.
SUBDIRS = sources pept corespi core spi impl rmi
all build clean clobber::
$(SUBDIRS-loop)

View File

@ -1,43 +0,0 @@
#
# Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../..
PACKAGE = com.sun.corba.se.PortableActivation
PRODUCT = org
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
include $(MINCLUDES)com_sun_corba_se_PortableActivationIDL.jmk
FILES_java=$(com_sun_corba_se_PortableActivationIDL_java)
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,37 +0,0 @@
#
# Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for connection
#
com_sun_corba_se_spi_legacy_connection_java = \
com/sun/corba/se/spi/legacy/connection/Connection.java \
com/sun/corba/se/spi/legacy/connection/GetEndPointInfoAgainException.java \
com/sun/corba/se/spi/legacy/connection/LegacyServerSocketEndPointInfo.java \
com/sun/corba/se/spi/legacy/connection/LegacyServerSocketManager.java \
com/sun/corba/se/spi/legacy/connection/ORBSocketFactory.java
FILES_java = $(com_sun_corba_se_spi_legacy_connection_java)

View File

@ -1,42 +0,0 @@
#
# Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../..
PACKAGE = com.sun.corba.se.connection
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
include FILES_java.gmk
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,77 +0,0 @@
#
# Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../..
PACKAGE = com.sun.corba.se.impl.core
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_corba.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_core.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_dynamicany.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_encoding.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_legacy.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_servicecontext.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_ior.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_orb.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_orbutil.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_protocol.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_resolver.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_transport.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_util.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_io.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_presentation_rmi.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_internal_LegacyFiles.jmk
#
# Include
#
FILES_java = $(com_sun_corba_se_impl_corba_java) \
$(com_sun_corba_se_impl_core_java) \
$(com_sun_corba_se_impl_dynamicany_java) \
$(com_sun_corba_se_impl_encoding_java) \
$(com_sun_corba_se_impl_legacy_java) \
$(com_sun_corba_se_spi_servicecontext_java) \
$(com_sun_corba_se_impl_ior_java) \
$(com_sun_corba_se_impl_orb_java) \
$(com_sun_corba_se_impl_orbutil_java) \
$(com_sun_corba_se_impl_protocol_java) \
$(com_sun_corba_se_impl_resolver_java) \
$(com_sun_corba_se_impl_transport_java) \
$(com_sun_corba_se_impl_util_java) \
$(com_sun_corba_se_impl_io_java) \
$(com_sun_corba_se_impl_presentation_rmi_java) \
$(com_sun_corba_se_internal_LegacyFiles_java)
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,59 +0,0 @@
#
# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../..
PACKAGE = com.sun.corba.se.impl.corespi
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_ior.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_oa.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_orb.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_protocol.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_resolver.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_transport.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_orbutil.jmk
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_spi_presentation_rmi.jmk
#
# Include
#
FILES_java = $(com_sun_corba_se_spi_ior_java) \
$(com_sun_corba_se_spi_oa_java) \
$(com_sun_corba_se_spi_orb_java) \
$(com_sun_corba_se_spi_protocol_java) \
$(com_sun_corba_se_spi_resolver_java) \
$(com_sun_corba_se_spi_transport_java) \
$(com_sun_corba_se_spi_orbutil_java) \
$(com_sun_corba_se_spi_presentation_rmi_java)
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,53 +0,0 @@
#
# Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Makefile for building all of java
#
BUILDDIR = ../../../../..
PRODUCT = impl
include $(BUILDDIR)/common/Defs.gmk
# order is important
ifdef STANDALONE_CORBA_WS
SUBDIRS = oa naming activation txpoa interceptors logging monitoring
else
SUBDIRS = oa naming activation interceptors logging monitoring
endif
LOG_GENDIRECTORY = $(GENSRCDIR)/com/sun/corba/se/impl/logging
LOG_CLASS_OUTPUTDIRECTORY = $(CLASSBINDIR)/com/sun/corba/se/impl/logging
LOGSTRINGS_PROPERTIES = LogStrings.properties
all build clean clobber::
$(SUBDIRS-loop)
# Copy the generated LogStrings.properties to the Classes directory
all build:: $(LOG_CLASS_OUTPUTDIRECTORY)/$(LOGSTRINGS_PROPERTIES)
$(LOG_CLASS_OUTPUTDIRECTORY)/$(LOGSTRINGS_PROPERTIES): $(LOG_GENDIRECTORY)/$(LOGSTRINGS_PROPERTIES)
$(install-file)

View File

@ -1,34 +0,0 @@
#
# Copyright (c) 1997, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../..
PACKAGE = com.sun.corba.se.impl.activation
PRODUCT = Activation
include $(BUILDDIR)/common/Defs.gmk
SUBDIRS = orbd servertool
all build clean clobber::
$(SUBDIRS-loop)

View File

@ -1,41 +0,0 @@
#
# Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../../..
PACKAGE = com.sun.corba.se.impl.activation
PRODUCT = Activation
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_activation.jmk
#
# Rules.
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,41 +0,0 @@
#
# Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../../..
PACKAGE = com.sun.corba.se.impl.activation
PRODUCT = Activation
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_activation.jmk
#
# Rules.
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,44 +0,0 @@
#
# Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../..
PACKAGE = com.sun.corba.se.impl.interceptors
PRODUCT = com
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_interceptors.jmk
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,41 +0,0 @@
#
# Copyright (c) 2001, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../..
PACKAGE = com.sun.corba.se.impl.logging
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_logging.jmk
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,41 +0,0 @@
#
# Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../..
PACKAGE = com.sun.corba.se.impl.monitoring
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_monitoring.jmk
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,34 +0,0 @@
#
# Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../..
PRODUCT = se
include $(BUILDDIR)/common/Defs.gmk
SUBDIRS = namingutil cosnaming pcosnaming
all build clean clobber::
$(SUBDIRS-loop)

View File

@ -1,46 +0,0 @@
#
# Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Build the tnameserv executable.
#
BUILDDIR = ../../../../../../..
PACKAGE = com.sun.corba.se.impl.naming.cosnaming
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files.
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_naming_cosnaming.jmk
FILES_java = $(com_sun_corba_se_impl_naming_cosnaming_java)
#
# Rules.
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,41 +0,0 @@
#
# Copyright (c) 2002, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../../..
PACKAGE = com.sun.corba.se.impl.namingutil
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_naming_namingutil.jmk
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,44 +0,0 @@
#
# Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Build the Persistent CosNaming Classes
#
BUILDDIR = ../../../../../../..
PACKAGE = com.sun.corba.se.impl.naming.pcosnaming
PRODUCT = PCosNaming
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_naming_pcosnaming.jmk
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,36 +0,0 @@
#
# Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../..
PRODUCT = impl
include $(BUILDDIR)/common/Defs.gmk
# order is important
SUBDIRS = poa toa
all build clean clobber::
$(SUBDIRS-loop)

View File

@ -1,41 +0,0 @@
#
# Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../../..
PACKAGE = com.sun.corba.se.impl.oa.poa
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_oa_poa.jmk
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,42 +0,0 @@
#
# Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
BUILDDIR = ../../../../../../..
PACKAGE = com.sun.corba.se.impl.oa.toa
PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk
#
# Files
#
CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
include $(CORBA_JMK_DIRECTORY)com_sun_corba_se_impl_oa_toa.jmk
#
# Include
#
include $(BUILDDIR)/common/Classes.gmk

View File

@ -1,35 +0,0 @@
#
# Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
#
# Files for interceptor
#
com_sun_corba_se_spi_legacy_interceptor_java = \
com/sun/corba/se/spi/legacy/interceptor/IORInfoExt.java \
com/sun/corba/se/spi/legacy/interceptor/RequestInfoExt.java \
com/sun/corba/se/spi/legacy/interceptor/UnknownType.java
FILES_java = $(com_sun_corba_se_spi_legacy_interceptor_java)

Some files were not shown because too many files have changed in this diff Show More