# Main PolyORB Makefile .PHONY: default default: all # To use this make file, say "make ". # You must be in the top-level polyorb directory. # (???We probably want a convenient way to do a build from any subdirectory.) # You still have to do: # support/reconfig # ./configure ... # first, although this make file mostly ignores the results of configure. # NOTE: You must set the ADA_PROJECT_PATH so that we can find xmlada.gpr. # See projects/polyorb_src_soap.gpr. # Interesting targets to use from the command line: # # all (the default) -- builds all of PolyORB, but not examples, # testsuite, docs # # examples -- builds the examples # # testsuite -- builds the examples and testsuite # # run_tests -- runs the testsuite (presumes polyorb built) # # all-and-test -- builds everything needed, then runs the testsuite # # polyorb_src_corba.gpr -- target to build src/corba (and similarly for all # the *.gpr files in the projects subdirectory). That is, there is a ".PHONY" # target with the same name as each project file, sans directory name. # # libpolyorb-corba.a -- ".PHONY" target to build the library # lib/libpolyorb-corba.a (and similarly for all the other libraries). # Each of these depends on the *.gpr target (e.g. lib/libpolyorb-corba.a # depends on polyorb_src_corba.gpr). # # examples/corba/all_functions/build-test -- target to build a particular # example (and similarly for other subdirectories under examples). # # testsuite/corba/all_exceptions/build-test -- target to build a particular # test (and similarly for other subdirectories under testsuite). # # docs -- target to build the document. ################################################################ # Don't rely on undefined variables being empty, nor on builtin stuff. # Note that these do not override command-line options; these options are # in addition. MAKEFLAGS := --no-builtin-rules \ --no-builtin-variables \ --warn-undefined-variables ################################################################ include Makefile.common HOST_EXE_SUFFIX := @HOST_EXE_SUFFIX@ TARGET_EXE_SUFFIX := @TARGET_EXE_SUFFIX@ CC_FOR_TARGET := @CC_FOR_TARGET@ GNATCHOP := @GNATCHOP@ GNATMAKE := @GNATMAKE@ GPRBUILD_FOR_TARGET := @GPRBUILD_FOR_TARGET@ # Flags common to build and target # Do not use := for the following flags, so that they can be overriden on # the command line if needed. Also, need to specify PARALLEL_GNATMAKE_FLAGS # before GNATMAKE_FLAGS, otherwise this variable is simply ignored. CFLAGS = @CFLAGS@ ADAFLAGS = @ADAFLAGS@ CPPFLAGS = @CPPFLAGS@ PARALLEL_GNATMAKE_FLAGS = -j0 EXTRA_GNATMAKE_FLAGS = @EXTRA_GNATMAKE_FLAGS@ # EXTRA_GNATMAKE_FLAGS are user-provided, empty by default (typically # used to specify a non-default --RTS switch). ifneq ($(filter -%args,$(EXTRA_GNATMAKE_FLAGS)),) MARGS:=-margs endif BASE_GNATMAKE_FLAGS :=--create-missing-dirs ${ADAFLAGS} ${PARALLEL_GNATMAKE_FLAGS} ${EXTRA_GNATMAKE_FLAGS} ${MARGS} # Gnatmake flags for units built from project files # Note: if EXTRA_GNATMAKE_FLAGS contains a -%args argument, we add -margs at # the end because further builder flags may need to be passed. COMP_TOOLS_GNATMAKE_FLAGS := @STYLE_SWITCHES@ -gnatwa@WARNINGS_MODE@ -gnat12 -gnatec=${top_builddir}/compilers/config.adc ${BASE_GNATMAKE_FLAGS} # Gnatmake flags for compilation tools mains, built without project files # Extra flags for target CFLAGS_FOR_TARGET := @CFLAGS_FOR_TARGET@ ADAFLAGS_FOR_TARGET := @ADAFLAGS_FOR_TARGET@ GNATMAKE_FLAGS_FOR_TARGET := -XLIBRARY_TYPE=@LIBRARY_TYPE@ -cargs ${ADAFLAGS_FOR_TARGET} # Feature substitutions HAVE_ADA_DYNAMIC_PRIORITIES := @HAVE_ADA_DYNAMIC_PRIORITIES@ HAVE_GPRBUILD := @HAVE_GPRBUILD@ HAVE_SSL := @HAVE_SSL@ OPENSSL := @OPENSSL@ .PHONY: all all: all-compilers perfect-hash polyorb-idl-stamps do-gnatmake IDLAC_bin := compilers/@IDLAC@/@IDLAC@ IDLAC_WRAPPER := ${top_builddir}/contrib/idlac_wrapper/idlac_wrapper # Cancel build-in implicit rule %: %.o # IDLAC_bin is rebuilt as part of the all-compilers target ${IDLAC_bin}: all-compilers # Path separator -- ":" or ";" for Unix/Windows. # Note that @PATH_SEPARATOR@ is : for cygwin, so we need to adjust that. @WINDOWS_FALSE@PATH_SEP := @PATH_SEPARATOR@ @WINDOWS_TRUE@PATH_SEP := ; ################################################################ # Subcomponents build control include Makefile.common.project ################################################################ # Rules for building programs in the 'compilers' directory COMPILER_EXES := gnatprfh/gnatprfh ifeq "${filter corba, ${APPLI_LIST}}" "corba" COMPILER_EXES += @IDLAC@/@IDLAC@ endif ifeq "${filter dsa, ${APPLI_LIST}}" "dsa" COMPILER_EXES += gnatdist/po_gnatdist endif COMPILERS := ${foreach comp,${COMPILER_EXES},${notdir ${comp}}} .PHONY: all-compilers all-compilers: ${patsubst %, build-%, ${COMPILERS}} ################ # gnatprfh tool .PHONY: build-gnatprfh build-gnatprfh: compiler_dir := gnatprfh ############################# # idlac IDL-to-Ada compiler # ############################# #???Compare with Makefile.am. .PHONY: build-testparser \ build-testlexer \ build-testgen \ build-idlac build-testgen build-idlac: \ PRJ_GNATMAKE_FLAGS := -I${top_srcdir}/compilers/common_files \ -I${top_builddir}/compilers/common_files build-testparser build-testlexer build-testgen build-idlac: \ compiler_dir := idlac ########################### # iac IDL-to-Ada compiler # ########################### .PHONY: build-mknodes build-iac build-mknodes build-iac : \ PRJ_GNATMAKE_FLAGS := -I${top_srcdir}/compilers/common_files \ -I${top_builddir}/compilers/common_files build-mknodes build-iac : \ compiler_dir := iac IAC_NODES_STAMPS= \ compilers/iac/frontend-nodes.idl-stamp \ compilers/iac/backend-be_corba_ada-nodes.idl-stamp IAC_NODES_SOURCES= \ ${IAC_NODES_STAMPS:.idl-stamp=.ads} \ ${IAC_NODES_STAMPS:.idl-stamp=.adb} ${IAC_NODES_STAMPS}: %-stamp: ${top_srcdir}/% build-mknodes cd compilers/iac && ./mknodes $< && touch ${notdir $@} ${filter %.ads,${IAC_NODES_SOURCES}}: %.ads: %.idl-stamp ${filter %.adb,${IAC_NODES_SOURCES}}: %.adb: %.idl-stamp # Additional dependency of iac upon files generated by mknodes build-iac: ${IAC_NODES_SOURCES} ################################## # gnatdist DSA partitioning tool # ################################## .PHONY: build-po_gnatdist build-po_gnatdist: \ compiler_dir := gnatdist build-po_gnatdist: \ COMP_TOOLS_GNATMAKE_FLAGS := ${COMP_TOOLS_GNATMAKE_FLAGS} \ -P${top_srcdir}/compilers/gnatdist/gnatdist.gpr --relocate-build-tree \ -XCOMPILERS_DIR=${top_builddir}/compilers -cargs ################################################ # Common build rule for all compile-time tools # ################################################ build-gnatprfh \ \ build-testparser \ build-testlexer \ build-testgen \ build-idlac \ \ build-mknodes \ build-iac \ \ build-po_gnatdist \ \ : build-%: mkdir -p compilers/${compiler_dir} && \ cd compilers/${compiler_dir} && \ ${GNATMAKE} -m \ $*.adb \ ${COMP_TOOLS_GNATMAKE_FLAGS} \ -I${top_srcdir}/compilers/${compiler_dir} \ ${PRJ_GNATMAKE_FLAGS} -bargs -E # Binder switch -E causes traceback information to be included in # Exception_Occurrences. # The following variables are used for invoking idlac. There is a static # pattern rule for each; see "Rules for running idlac", below. Each file # mumble.idl has a corresponding empty mumble.idl-stamp file, which is # 'touch'ed to record the time at which idlac was run. Targets that use # the output of idlac should depend on the .idl-stamp files, rather than the # actual .ads/.adb files produced by idlac. This allows the optimization # implemented in idlac_wrapper. There can be more than one .idl-stamp for the # same .idl file, in different directories, if we wish to run idlac more than # once on the same file with different options. # For each mumble.idl-stamp, we write: # xxx_idl_stamps += mumble.idl-stamp # causes the target to exist # mumble.idl-stamp: idlac_flags := ... # flags used to compile that target # xxx indicates the directories for the .idl and .idl-stamp files; # self_idl_stamps is for cases where the .idl-stamp is put in the same # directory as the .idl. idls_idl_stamps := interop_corba_idl_stamps := interop_corba_iop_idl_stamps := interop_corba_security_idl_stamps := interop_corba_security_gssup_idl_stamps := misc_corba_dynamicany_idl_stamps := misc_corba_messaging_idl_stamps := misc_corba_portableinterceptor_idl_stamps := rtcorba_corba_rtcorba_idl_stamps := self_idl_stamps := all_idl_stamps = \ ${idls_idl_stamps} \ ${interop_corba_idl_stamps} \ ${interop_corba_iop_idl_stamps} \ ${interop_corba_security_idl_stamps} \ ${interop_corba_security_gssup_idl_stamps} \ ${misc_corba_dynamicany_idl_stamps} \ ${misc_corba_messaging_idl_stamps} \ ${misc_corba_portableinterceptor_idl_stamps} \ ${rtcorba_corba_rtcorba_idl_stamps} \ ${self_idl_stamps} idlac_include_dirs := \ idls/CORBA_IDL idls/CORBA_PIDL idls/Misc idls/Interop \ idls/Misc idls/cos/event idls/cos/notification idls/cos/time idlac_include_flags := \ ${addprefix -I${top_srcdir}/,${idlac_include_dirs}} \ -I. # Command used to run idlac: ifeq (@USE_IDLAC_WRAPPER@,yes) idlac := ${IDLAC_WRAPPER} --idlac="${top_builddir}/${IDLAC_bin}" ${idlac_include_flags} installed_idlac := ${IDLAC_WRAPPER} --idlac=@IDLAC@ ${idlac_include_flags} else idlac := ${top_builddir}/${IDLAC_bin} ${idlac_include_flags} installed_idlac := @IDLAC@ ${idlac_include_flags} endif ################################################################ # Rules for running gnatprfh in the src/soap directory .PHONY: perfect-hash perfect-hash: build-gnatprfh src/soap/polyorb-http_methods.adb src/soap/polyorb-http_headers.adb GNATPRFH = ${top_builddir}/compilers/gnatprfh/gnatprfh$(HOST_EXE_SUFFIX) GEN_HTTP_BODY = ${top_srcdir}/src/soap/gen_http_body ${GNATPRFH}: build-gnatprfh src/soap/polyorb-http_methods.adb: ${GEN_HTTP_BODY} ${GNATPRFH} # Note that the second gen_http_body command below overwrites perfect_hash.adb # with different content. src/soap/polyorb-http_methods.adb src/soap/polyorb-http_headers.adb: ${GEN_HTTP_BODY} ${GNATPRFH} ${top_srcdir}/src/soap/polyorb-http_methods.ads ${top_srcdir}/src/soap/polyorb-http_headers.ads mkdir -p src/soap cd src/soap && ${GEN_HTTP_BODY} ${GNATPRFH} ${top_srcdir}/src/soap Method cd src/soap && ${GEN_HTTP_BODY} ${GNATPRFH} ${top_srcdir}/src/soap Header ################################################################ # src/giop, tools/po_catref. gen_codeset. GEN_CODESET = src/giop/tools/gen_codeset${HOST_EXE_SUFFIX} ${GEN_CODESET}: build-gen_codeset build-gen_codeset: mkdir -p src/giop/tools && cd src/giop/tools && \ ${GNATMAKE} gen_codeset -I${top_srcdir}/src/giop/tools ${COMP_TOOLS_GNATMAKE_FLAGS} -bargs -E src/giop/polyorb-giop_p-code_sets-data.ads-stamp: ${top_srcdir}/src/giop/cs_registry1.2h ${GEN_CODESET} cd src/giop && ./tools/gen_codeset -c "PolyORB.GIOP_P.Code_Sets.Data" \ polyorb-giop_p-code_sets-data.ads.new \ < $< cd src/giop && ${MOVEIFCHANGE} polyorb-giop_p-code_sets-data.ads.new polyorb-giop_p-code_sets-data.ads touch src/giop/polyorb-giop_p-code_sets-data.ads-stamp tools/po_catref/polyorb-giop_p-code_sets-description_data.ads-stamp: ${top_srcdir}/src/giop/cs_registry1.2h ${GEN_CODESET} Makefile cd tools/po_catref && ${top_builddir}/${GEN_CODESET} -d "PolyORB.GIOP_P.Code_Sets.Description_Data" \ polyorb-giop_p-code_sets-description_data.ads.new \ < $< cd tools/po_catref && ${MOVEIFCHANGE} polyorb-giop_p-code_sets-description_data.ads.new polyorb-giop_p-code_sets-description_data.ads touch tools/po_catref/polyorb-giop_p-code_sets-description_data.ads-stamp ################################################################ # PolyORB IDL files server_idl_stamps := \ cos/event/CosEventChannelAdmin.idl-stamp \ cos/event/CosEventComm.idl-stamp \ cos/event/CosTypedEventChannelAdmin.idl-stamp \ cos/event/CosTypedEventComm.idl-stamp \ cos/naming/CosNaming.idl-stamp \ cos/notification/CosNotification.idl-stamp \ cos/notification/CosNotifyChannelAdmin.idl-stamp \ cos/notification/CosNotifyComm.idl-stamp \ cos/notification/CosNotifyFilter.idl-stamp \ cos/time/CosTime.idl-stamp idls_idl_stamps += ${server_idl_stamps} ${server_idl_stamps}: idlac_flags := -s client_idl_stamps := ${server_idl_stamps:cos/%=idls/cos/%} \ idls/cos/time/TimeBase.idl-stamp self_idl_stamps += ${client_idl_stamps} ${client_idl_stamps}: idlac_flags := -c self_idl_stamps += cos/naming/File.idl-stamp cos/naming/File.idl-stamp: idlac_flags := interop_corba_idl_stamps += src/corba/CONV_FRAME.idl-stamp src/corba/CONV_FRAME.idl-stamp: idlac_flags := misc_corba_dynamicany_idl_stamps += src/corba/dynamicany/DynamicAny.idl-stamp src/corba/dynamicany/DynamicAny.idl-stamp: idlac_flags := interop_corba_iop_idl_stamps += src/corba/iop/IOP.idl-stamp src/corba/iop/IOP.idl-stamp: idlac_flags := misc_corba_messaging_idl_stamps += src/corba/messaging/Messaging.idl-stamp src/corba/messaging/Messaging.idl-stamp: idlac_flags := misc_corba_portableinterceptor_idl_stamps += src/corba/portableinterceptor/PortableInterceptor.idl-stamp src/corba/portableinterceptor/PortableInterceptor.idl-stamp: idlac_flags := misc_corba_portableinterceptor_idl_stamps += src/corba/portableinterceptor/Dynamic.idl-stamp src/corba/portableinterceptor/Dynamic.idl-stamp: idlac_flags := rtcorba_corba_rtcorba_idl_stamps += src/corba/rtcorba/RTCosScheduling.idl-stamp src/corba/rtcorba/RTCosScheduling.idl-stamp: idlac_flags := interop_corba_security_idl_stamps += src/corba/security/CSI.idl-stamp src/corba/security/CSI.idl-stamp: idlac_flags := -c interop_corba_security_idl_stamps += src/corba/security/CSIIOP.idl-stamp src/corba/security/CSIIOP.idl-stamp: idlac_flags := -c interop_corba_security_gssup_idl_stamps += src/corba/security/gssup/GSSUP.idl-stamp src/corba/security/gssup/GSSUP.idl-stamp: idlac_flags := -c # This is expanded here, and therefore leaves out the examples below. polyorb_idl_stamps := ${all_idl_stamps} # All so far, that is. .PHONY: polyorb-idl-stamps polyorb-idl-stamps: build-@IDLAC@ ${polyorb_idl_stamps} cos/ir/orb.idl-stamp #???What is the following all about? Why does it "chmod" and "rm"? cos/ir/orb.idl-stamp: ${top_srcdir}/idls/CORBA_IDL/orb.idl ${top_srcdir}/idls/CORBA_IDL/CORBA_InterfaceRepository.idl ${top_srcdir}/idls/CORBA_IDL/CORBA_TypeCode.idl ${IDLAC_bin} ${IDLAC_WRAPPER} @chmod a+x ${IDLAC_WRAPPER} mkdir -p ${dir $@} cd ${dir $@} && ${idlac} $< ${RM} cos/ir/corba-repository_root.ads touch $@ ################################################################ #????idls_dirs := \ # cos/naming \ # idls/CORBA_IDL \ # idls/CORBA_PIDL \ # idls/Interop \ # idls/Misc \ # idls/RTCORBA \ # idls/cos/collection \ # idls/cos/concurrency \ # idls/cos/event \ # idls/cos/externalization \ # idls/cos/licensing \ # idls/cos/lifecycle \ # idls/cos/naming \ # idls/cos/notification \ # idls/cos/persistent \ # idls/cos/property \ # idls/cos/query \ # idls/cos/relationship \ # idls/cos/security \ # idls/cos/time \ # idls/cos/trader \ # idls/cos/transaction ################################################################ # Targets for compiling the PolyORB Ada code # ???Currently, this depends on all the .idl-stamp files; # we could make this more fine-grained. # Get list of all .gpr files, and strip off directory name. Note that most are # in ${top_srcdir}/projects, but some are generated from *.gpr.in, and are # therefore in ${top_builddir}/projects. Use ${sort} to remove duplicates # (in case srcdir and builddir are the same). ALL_PROJECT_FILES := ${sort \ ${notdir ${wildcard ${top_srcdir}/projects/*.gpr}} \ ${notdir ${wildcard ${top_builddir}/projects/*.gpr}}} # Remove the ones that shouldn't be built: IGNORED_PROJECT_FILES := polyorb_build_all.gpr polyorb_common.gpr polyorb_config.gpr PROJECT_FILES := ${filter-out ${IGNORED_PROJECT_FILES},${ALL_PROJECT_FILES}} # The ones that start with "polyorb_tools_" are for building (target) # executables. The rest are for building libraries. LIBRARY_PROJECT_FILES := ${filter-out polyorb_tools_%,${PROJECT_FILES}} EXE_PROJECT_FILES := ${filter polyorb_tools_%,${PROJECT_FILES}} # Additional C sources C_FILES= src/csupport.c .PHONY: do-gnatmake do-gnatmake: ${POLYORB_LIBS} ${SERVICE_LIBS} ${EXE_PROJECT_FILES} #??? ${APPLI_EXES} ${SERVICE_EXES} #???lib/polyorb.ali is missing the first time around. # Because we can't share library directories! .PHONY: libpolyorb-aws.a libpolyorb-aws.a: polyorb_src_aws.gpr .PHONY: libpolyorb-corba-cos-event-impl.a libpolyorb-corba-cos-event-impl.a: polyorb_cos_event.gpr .PHONY: libpolyorb-corba-cos-ir-impl.a libpolyorb-corba-cos-ir-impl.a: polyorb_cos_ir.gpr .PHONY: libpolyorb-corba-cos-naming-impl.a libpolyorb-corba-cos-naming-impl.a: polyorb_cos_naming.gpr .PHONY: libpolyorb-corba-cos-notification-impl.a libpolyorb-corba-cos-notification-impl.a: polyorb_cos_notification.gpr .PHONY: libpolyorb-corba-cos-time-impl.a libpolyorb-corba-cos-time-impl.a: polyorb_cos_time.gpr .PHONY: libpolyorb-corba-cos-event.a libpolyorb-corba-cos-event.a: polyorb_idls_cos_event.gpr .PHONY: libpolyorb-corba-cos-naming.a libpolyorb-corba-cos-naming.a: polyorb_idls_cos_naming.gpr .PHONY: libpolyorb-corba-cos-notification.a libpolyorb-corba-cos-notification.a: polyorb_idls_cos_notification.gpr .PHONY: libpolyorb-corba-cos-time.a libpolyorb-corba-cos-time.a: polyorb_idls_cos_time.gpr .PHONY: libpolyorb.a libpolyorb.a: polyorb.gpr polyorb_src.gpr .PHONY: libpolyorb-corba.a libpolyorb-corba.a: polyorb_src_corba.gpr .PHONY: libpolyorb-corba-dynamicany.a libpolyorb-corba-dynamicany.a: polyorb_src_corba_dynamicany.gpr .PHONY: libpolyorb-corba-iop.a libpolyorb-corba-iop.a: polyorb_src_corba_iop.gpr .PHONY: libpolyorb-corba-messaging.a libpolyorb-corba-messaging.a: polyorb_src_corba_messaging.gpr .PHONY: libpolyorb-corba-portableinterceptor.a libpolyorb-corba-portableinterceptor.a: polyorb_src_corba_portableinterceptor.gpr .PHONY: libpolyorb-corba-rtcorba.a libpolyorb-corba-rtcorba.a: polyorb_src_corba_rtcorba.gpr .PHONY: libpolyorb-corba-security.a libpolyorb-corba-security.a: polyorb_src_corba_security.gpr .PHONY: libpolyorb-corba-security-gssup.a libpolyorb-corba-security-gssup.a: polyorb_src_corba_security_gssup.gpr .PHONY: libpolyorb-dsa.a libpolyorb-dsa.a: polyorb_src_dsa.gpr ifeq (${HAVE_GPRBUILD}, no) polyorb_src_dsa.gpr: PRJ_GNATMAKE_FLAGS := -a # Some components of the DSA application personality are child units of # System: use -a to allow gnatmake to compile them. endif .PHONY: libpolyorb-dns.a libpolyorb-dns.a: polyorb_src_dns.gpr .PHONY: libpolyorb-dns-udns.a libpolyorb-dns-udns.a: polyorb_src_dns_udns.gpr .PHONY: libpolyorb-dns-mdns.a libpolyorb-dns-mdns.a: polyorb_src_dns_mdns.gpr .PHONY: libpolyorb-giop.a libpolyorb-giop.a: polyorb_src_giop.gpr .PHONY: libpolyorb-giop-diop.a libpolyorb-giop-diop.a: polyorb_src_giop_diop.gpr .PHONY: libpolyorb-giop-iiop.a libpolyorb-giop-iiop.a: polyorb_src_giop_iiop.gpr .PHONY: libpolyorb-giop-iiop-security.a libpolyorb-giop-iiop-security.a: polyorb_src_giop_iiop_security.gpr .PHONY: libpolyorb-giop-iiop-security-tls.a libpolyorb-giop-iiop-security-tls.a: polyorb_src_giop_iiop_security_tls.gpr .PHONY: libpolyorb-giop-iiop-ssliop.a libpolyorb-giop-iiop-ssliop.a: polyorb_src_giop_iiop_ssliop.gpr .PHONY: libpolyorb-giop-miop.a libpolyorb-giop-miop.a: polyorb_src_giop_miop.gpr .PHONY: libpolyorb-moma.a libpolyorb-moma.a: polyorb_src_moma.gpr .PHONY: libpolyorb-security.a libpolyorb-security.a: polyorb_src_security.gpr .PHONY: libpolyorb-security-gssup.a libpolyorb-security-gssup.a: polyorb_src_security_gssup.gpr .PHONY: libpolyorb-security-tls.a libpolyorb-security-tls.a: polyorb_src_security_tls.gpr .PHONY: libpolyorb-security-x509.a libpolyorb-security-x509.a: polyorb_src_security_x509.gpr .PHONY: libpolyorb-setup.a libpolyorb-setup.a: polyorb_src_setup.gpr .PHONY: libpolyorb-setup-security.a libpolyorb-setup-security.a: polyorb_src_setup_security.gpr .PHONY: libpolyorb-soap.a libpolyorb-soap.a: polyorb_src_soap.gpr .PHONY: libpolyorb-srp.a libpolyorb-srp.a: polyorb_src_srp.gpr .PHONY: libpolyorb-ssl.a libpolyorb-ssl.a: polyorb_src_ssl.gpr .PHONY: libpolyorb-web_common.a libpolyorb-web_common.a: polyorb_src_web_common.gpr # Additional dependencies between projects polyorb_src_corba.gpr: polyorb_src_corba_dynamicany.gpr polyorb_src_corba_iop.gpr polyorb_src_corba_messaging.gpr polyorb_src_corba_portableinterceptor.gpr polyorb_src_corba_rtcorba.gpr polyorb_src_setup.gpr: @APPLI_PRJS@ @PROTO_PRJS@ polyorb.gpr: @SERVICE_PRJS@ @SETUP_PRJS@ ifeq (${HAVE_SSL},yes) polyorb_src_giop_iiop.gpr: polyorb_src_giop_iiop_security.gpr polyorb_src_giop_iiop_security_tls.gpr polyorb_src_corba.gpr: polyorb_src_corba_security.gpr polyorb_src_corba_security_gssup.gpr C_FILES += \ src/ssl/polyorb_ssl.c \ src/security/polyorb_asn1.c \ src/security/x509/polyorb_x509.c endif # Additional dependencies on C sources, if building using gnatmake ifeq (${HAVE_GPRBUILD}, no) polyorb_src.gpr: src/csupport.o polyorb_src_ssl.gpr: src/ssl/polyorb_ssl.o polyorb_src_security.gpr: src/security/polyorb_asn1.o polyorb_src_security_x509.gpr: src/security/x509/polyorb_x509.o # Rule for compilation of C source files C_OBJECTS=${C_FILES:.c=.o} ${C_OBJECTS}: %.o: ${top_srcdir}/%.c ${CC_FOR_TARGET} -c -o $@ -I${top_builddir}/src ${CPPFLAGS} ${CFLAGS} ${CFLAGS_FOR_TARGET} $< endif ### No additions to C_FILES / C_OBJECTS beyond this point # The mkdir.flag targets are used to create the necessary directories. There is # one ALI directory for each project file (for example, ali/src_corba is the # ALI directory for projects/polyorb_src_corba.gpr). There is also a single # library directory (lib) shared by all project files. # Note: This would be unnecessary if we used the -p switch of gnatmake, # but we want this to work with older versions of gnatmake that do not # support -p (this option was introduced in GNAT 6.0). # WAG: 5.04 ALI_MKDIR_FLAGS = ${patsubst %.gpr,ali/%/mkdir.flag,${PROJECT_FILES}} C_MKDIR_FLAGS = ${patsubst %,%mkdir.flag,${dir ${C_OBJECTS}}} MKDIR_FLAGS = ${ALI_MKDIR_FLAGS} ${C_MKDIR_FLAGS} lib/mkdir.flag ${MKDIR_FLAGS}: %/mkdir.flag: mkdir -p $* touch $@ # Note that each polyorb_foo.gpr target depends on ALL .../mkdir.flag targets, # because gnatmake needs to look at the ALI directories for imported # projects. PRJ_GNATMAKE_FLAGS := # This variable is used to pass additional per-project command line switches # to gnatmake. .PHONY: ${PROJECT_FILES} ${PROJECT_FILES}: %.gpr: \ ${MKDIR_FLAGS} \ perfect-hash \ polyorb-idl-stamps \ build-gen_codeset \ src/giop/polyorb-giop_p-code_sets-data.ads-stamp \ tools/po_catref/polyorb-giop_p-code_sets-description_data.ads-stamp ${GPRBUILD_FOR_TARGET} -aP"${top_builddir}/projects" -aP"${top_srcdir}/projects" -P $@ ${BASE_GNATMAKE_FLAGS} ${PRJ_GNATMAKE_FLAGS} ${GNATMAKE_FLAGS_FOR_TARGET} -bargs -E ################ # Installation # ################ # Note: some testsuite targets refer to installation paths, so this must # occur first. host=@host@ target=@target@ ifeq (${target}, ${host}) target_prefix=${prefix} host_exe_dir=${prefix}/bin host_cmdprefix= target_exe_dir=${prefix}/bin else target_prefix=${prefix}/${target} host_exe_dir=${prefix}/bin host_cmdprefix=${target}- target_exe_dir=${target_prefix}/bin endif projects_subdir=lib/gnat/polyorb .PHONY: install install: install-bins install-docs install-bins: @echo " Sources dir: ${top_srcdir}" @echo " Build dir: ${top_builddir}" @echo "Install prefix: ${prefix}" @echo " Host: ${host}" @echo " Target: ${target}" ${PINSTALL} -d ${prefix}/bin ${target_prefix}/bin ${RM} -fr "${target_prefix}/${projects_subdir}" ${PINSTALL} -d ${target_prefix}/${projects_subdir} ${PINSTALL} -d ${target_prefix}/lib/polyorb ${PINSTALL} -d ${target_prefix}/lib/polyorb/static ${RM} -fr "${target_prefix}/include/polyorb" ${PINSTALL} -d ${target_prefix}/include/polyorb for comp in ${COMPILER_EXES}; do \ ${INSTALL_BIN} ${top_builddir}/compilers/$${comp}${HOST_EXE_SUFFIX} ${host_exe_dir}/${host_cmdprefix}`basename $${comp}`${HOST_EXE_SUFFIX}; \ done ${INSTALL_SCRIPT} ${top_builddir}/polyorb-config ${host_exe_dir}/${host_cmdprefix}polyorb-config for tool in po_cos_naming/po_cos_naming po_cos_naming/po_cos_naming_shell po_cos_naming/ir_ab_names po_ir/po_ir po_catref/po_catref po_createref/po_createref po_names/po_names po_dumpir/po_dumpir; do \ ${INSTALL_BIN} ${top_builddir}/tools/$$tool${TARGET_EXE_SUFFIX} ${target_exe_dir}/`basename $$tool`${TARGET_EXE_SUFFIX}; \ done ls ${top_builddir}/lib/*.a | ${PINSTALL} -m 444 - ${target_prefix}/lib/polyorb/static ls ${top_builddir}/lib/*.so | ${PINSTALL} -m 555 - ${target_prefix}/lib ls ${top_builddir}/lib/*.dll | ${PINSTALL} -m 555 - ${target_prefix}/lib ls ${top_srcdir}/projects-distrib/*.gpr | ${PINSTALL} -m 444 - ${target_prefix}/lib/gnat ls ${top_builddir}/projects-distrib/*.gpr | ${PINSTALL} -m 444 - ${target_prefix}/lib/gnat ls ${top_srcdir}/projects-distrib/polyorb/*.gpr | ${PINSTALL} -m 444 - ${target_prefix}/${projects_subdir} ls ${top_builddir}/projects-distrib/polyorb/*.gpr | ${PINSTALL} -m 444 - ${target_prefix}/${projects_subdir} (find \ ${top_builddir}/src \ ${top_builddir}/cos \ ${top_builddir}/idls \ ${top_srcdir}/src \ ${top_srcdir}/cos \ ${top_srcdir}/idls \ -name '*.ads' -o -name '*.adb' -o -name '*.idl') | \ ${PINSTALL} -m 444 - ${target_prefix}/include/polyorb (find \ ${top_builddir}/ali \ -name '*.ali' \ -a ! -name 'polyorb-dsa_p-partitions.ali' \ -a ! -name 'polyorb-dsa_p-storages-config.ali' \ -a ! -name 'polyorb-partition_elaboration.ali') | \ ${PINSTALL} -m 444 - ${target_prefix}/lib/polyorb install-docs: # Install documentation only if it has been built locally, or # pre-built and packaged with sources. In that case, pass # SPHINXBUILD=true to child make process in order to bypass # check for existence of sphinx-build. if [ -r doc/_build ]; \ then \ (cd doc && ${MAKE} install prefix="${prefix}" SPHINXBUILD=true); \ elif [ -r $(top_srcdir)/doc/_build ]; \ then \ (cd doc && ${MAKE} install prefix="${prefix}" doc_build_dir="$(top_srcdir)/doc/" SPHINXBUILD=true); \ fi # polyorb-dsa_p-partitions.ali is a special case above. # It is never installed, so that this unit is recompiled for each application # by gnatdist. This is necessary because two compilations must occur: # receiving stubs for the main partition, and calling stubs for others. # # Note that any change of the location where DSA application personality # files are installed (relative to ${prefix}) must be reflected in # gnatdist. ################################################################ ########################## # examples and testsuite # ########################## # We treat the examples and testsuite directories the same. # Each subdirectory that has test (or example) programs should contain # local.gpr, and may contain one or more *.idl files. We use 'find' to find # all of the *.idl. # # In addition, if there are any idl files, we need to define the flags to use # with idlac, and make the test target depend on building the idl, like this: # ${current_dir}<...>.idl-stamp: idlac_flags := <...> # ${test_target}: ${current_dir}<...>.idl-stamp # Note that ${current_dir} contains a trailing slash. # local.gpr should contain: # with "polyorb", "polyorb_test_common"; # # project local is # # Dir := external ("Test_Dir"); # Obj_Dir := PolyORB_Test_Common.Build_Dir & Dir; # for Object_Dir use Obj_Dir; # for Source_Dirs use (Obj_Dir, PolyORB_Test_Common.Source_Dir & Dir); # # package Compiler is # # for Default_Switches ("Ada") # use PolyORB_Test_Common.Compiler'Default_Switches ("Ada"); # # end Compiler; # # for Main use (<...>); # # end local; # The only variable part is the Mains. test_dirs := ${top_srcdir}/examples ${top_srcdir}/testsuite test_idls := ${shell find ${test_dirs} -name '*.idl' 2> /dev/null} test_idls := ${patsubst ${top_srcdir}/%,%,${test_idls}} test_idl_stamps := ${patsubst %.idl,%.idl-stamp,${test_idls}} ifeq (@USE_INSTALLED@,yes) ${test_idl_stamps}: %.idl-stamp: ${top_srcdir}/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${installed_idlac} ${idlac_flags} $< touch $@ else self_idl_stamps += ${test_idl_stamps} endif # Include all the Makefile.local files. @LOCAL_MAKEFILES@ test_targets := ${sort ${test_targets}} TESTSUITE_GNATMAKE_FLAGS := -aP"${top_builddir}/testsuite/projects" -aP"${top_srcdir}/testsuite/projects" ifeq (@USE_INSTALLED@,yes) INSTALLED_IAC=$(shell which iac) ifeq ($(strip ${INSTALLED_IAC}),) $(error Installed iac(1) not found) endif INSTALLED_TARGET_PREFIX=${shell echo `dirname ${INSTALLED_IAC}`/..} TESTSUITE_GNATMAKE_FLAGS += -aP"${INSTALLED_TARGET_PREFIX}/${projects_subdir}" else # If building examples and testsuite using the newly built PolyORB, # add build-time project files to project path. TESTSUITE_GNATMAKE_FLAGS += -aP"${top_builddir}/projects" -aP"${top_srcdir}/projects" endif .PHONY: ${test_targets} ${test_targets}: %/build-test: ${GPRBUILD_FOR_TARGET} "-XTest_Dir=$*" $(TESTSUITE_GNATMAKE_FLAGS) -P ${top_srcdir}/$*/local.gpr ${BASE_GNATMAKE_FLAGS} ${GNATMAKE_FLAGS_FOR_TARGET} -bargs -E # Set active_tests to a subset of test_targets -- remove the ones that are for # application personalities that were not configured. Note: examples/polyorb # and testsuite/core are built unconditionally, independent of personalities. # Note that two tests are for multiple personalities: examples/bbs is built # only if we are configured for both corba and dsa, and # examples/corba/all_types is built only if we are configured for both corba # and moma. Also remove the ones that depend on ssl, if we're not configured # with ssl support. active_tests := ${test_targets} ifneq "${filter corba, ${APPLI_LIST}}" "corba" active_tests := ${filter-out examples/corba/%,${active_tests}} active_tests := ${filter-out testsuite/corba/%,${active_tests}} active_tests := ${filter-out examples/bbs/%,${active_tests}} endif ifneq "${filter dsa, ${APPLI_LIST}}" "dsa" active_tests := ${filter-out examples/dsa/%,${active_tests}} active_tests := ${filter-out testsuite/acats/%,${active_tests}} active_tests := ${filter-out examples/bbs/%,${active_tests}} endif ifneq "${filter moma, ${APPLI_LIST}}" "moma" active_tests := ${filter-out examples/moma/%,${active_tests}} active_tests := ${filter-out examples/corba/all_types/%,${active_tests}} endif ifneq "${filter aws, ${APPLI_LIST}}" "aws" active_tests := ${filter-out examples/aws/%,${active_tests}} endif ifneq "${HAVE_ADA_DYNAMIC_PRIORITIES}" "true" active_tests := ${filter-out examples/corba/rtcorba/%,${active_tests}} active_tests := ${filter-out testsuite/corba/rtcorba/%,${active_tests}} endif #???The following are disabled for now, because of minor build problems: skip_tests := examples/bbs \ examples/dsa \ testsuite/acats/CXE1001 \ testsuite/acats/CXE2001 \ testsuite/acats/CXE4001 \ testsuite/acats/CXE4002 \ testsuite/acats/CXE4005 \ testsuite/acats/CXE4006 skip_tests := ${patsubst %,%/build-test,${skip_tests}} active_tests := ${filter-out ${skip_tests},${active_tests}} active_tests := ${sort ${active_tests}} .PHONY: print_active_tests print_active_tests: @echo "All tests: ${patsubst %/build-test,%,${test_targets}}" @echo "Tests to build: ${patsubst %/build-test,%,${active_tests}}" .PHONY: testsuite testsuite: print_active_tests ${active_tests} # Create the 'examples' target as a subset of 'testsuite' -- just the ones # under the 'examples' subdirectory: active_examples := ${filter examples/%,${active_tests}} .PHONY: examples examples: ${active_examples} .PHONY: run_tests run_tests: cd testsuite && ./testsuite.py --diffs --testsuite-src-dir=${top_srcdir}/testsuite # 'all' depends on either build-iac or build-idlac; we might as well build # both, here. We run_tests via recursive make, rather than having all-and-test # depend on run_tests, so it works for parallel make (run_tests should not # run concurrently with the other stuff). .PHONY: all-and-test all-and-test: all build-iac build-idlac examples testsuite ${MAKE} run_tests ################################################################ # Rules for running idlac on .idl files # These patterns are all the same, except the directories where they expect to # find the .idl file, and the directories where they put the .idl-stamp files. # Each target that is part of xxx_idl_stamps should have set idlac_flags # as a target-specific variable. ${idls_idl_stamps}: %.idl-stamp: ${top_srcdir}/idls/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${interop_corba_idl_stamps}: src/corba/%.idl-stamp: ${top_srcdir}/idls/Interop/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${interop_corba_iop_idl_stamps}: src/corba/iop/%.idl-stamp: ${top_srcdir}/idls/Interop/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${interop_corba_security_idl_stamps}: src/corba/security/%.idl-stamp: ${top_srcdir}/idls/Interop/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${interop_corba_security_gssup_idl_stamps}: src/corba/security/gssup/%.idl-stamp: ${top_srcdir}/idls/Interop/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${misc_corba_dynamicany_idl_stamps}: src/corba/dynamicany/%.idl-stamp: ${top_srcdir}/idls/Misc/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${misc_corba_messaging_idl_stamps}: src/corba/messaging/%.idl-stamp: ${top_srcdir}/idls/Misc/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${misc_corba_portableinterceptor_idl_stamps}: src/corba/portableinterceptor/%.idl-stamp: ${top_srcdir}/idls/Misc/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${rtcorba_corba_rtcorba_idl_stamps}: src/corba/rtcorba/%.idl-stamp: ${top_srcdir}/idls/RTCORBA/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${self_idl_stamps}: %.idl-stamp: ${top_srcdir}/%.idl mkdir -p ${dir $@} cd ${dir $@} && ${idlac} ${idlac_flags} $< touch $@ ${all_idl_stamps}: ${IDLAC_bin} ${IDLAC_WRAPPER} ################# # Documentation # ################# # We use the old make files for the documentation; recursively invoke make in # the docs directory. .PHONY: docs docs: (cd doc && ${MAKE} sources html latexpdf MANIFEST) force:: .PHONY: clean distclean clean: ${RM} -f ${all_idl_stamps} ./cos/ir/orb.idl-stamp # ???and more ${RM} -f ${idlac_output_files} find . -name '*.ali' -o -name '*.o' -o -name 'b__*.ad?'| xargs ${RM} -f ${RM} -f lib/lib*.a ${RM} -f ${all_example_exes} (cd compilers && ${RM} -f ${COMPILER_EXES}) ${RM} -f ${MKDIR_FLAGS} ${RM} -f ${IAC_NODES_STAMPS} ${RM} -f ${IAC_NODES_SOURCES} ${RM} -f src/soap/polyorb-http_methods.adb src/soap/polyorb-http_headers.adb ${RM} -f cos/ir/po_ir ${RM} -f src/giop/tools/gen_codeset ${RM} -f src/giop/polyorb-giop_p-code_sets-data.ads ${RM} -f src/giop/polyorb-giop_p-code_sets-data.ads-stamp ${RM} -f src/soap/perfect_hash.adb ${RM} -f src/soap/perfect_hash.ads ${RM} -f tools/po_catref/po_catref ${RM} -f tools/po_cos_naming/ir_ab_names ${RM} -f tools/po_cos_naming/po_cos_naming ${RM} -f tools/po_cos_naming/po_cos_naming_shell ${RM} -f tools/po_createref/po_createref ${RM} -f tools/po_catref/polyorb-giop_p-code_sets-description_data.ads ${RM} -f tools/po_catref/polyorb-giop_p-code_sets-description_data.ads-stamp ${RM} -f tools/po_dumpir/po_dumpir ${RM} -f tools/po_names/po_names distclean: clean ${SHELL} ${top_srcdir}/support/cleanup-conf-files ${RM} -f config.* .SUFFIXES: .c .o # This tells make to delete half-baked files, as recommended by section 5.4 of # the GNU Make manual. .DELETE_ON_ERROR: idlac_output_files := \ cos/event/coseventchanneladmin-consumeradmin-skel.adb \ cos/event/coseventchanneladmin-consumeradmin-skel.ads \ cos/event/coseventchanneladmin-eventchannel-skel.adb \ cos/event/coseventchanneladmin-eventchannel-skel.ads \ cos/event/coseventchanneladmin-proxypullconsumer-skel.adb \ cos/event/coseventchanneladmin-proxypullconsumer-skel.ads \ cos/event/coseventchanneladmin-proxypullsupplier-skel.adb \ cos/event/coseventchanneladmin-proxypullsupplier-skel.ads \ cos/event/coseventchanneladmin-proxypushconsumer-skel.adb \ cos/event/coseventchanneladmin-proxypushconsumer-skel.ads \ cos/event/coseventchanneladmin-proxypushsupplier-skel.adb \ cos/event/coseventchanneladmin-proxypushsupplier-skel.ads \ cos/event/coseventchanneladmin-supplieradmin-skel.adb \ cos/event/coseventchanneladmin-supplieradmin-skel.ads \ cos/event/coseventcomm-pullconsumer-skel.adb \ cos/event/coseventcomm-pullconsumer-skel.ads \ cos/event/coseventcomm-pullsupplier-skel.adb \ cos/event/coseventcomm-pullsupplier-skel.ads \ cos/event/coseventcomm-pushconsumer-skel.adb \ cos/event/coseventcomm-pushconsumer-skel.ads \ cos/event/coseventcomm-pushsupplier-skel.adb \ cos/event/coseventcomm-pushsupplier-skel.ads \ cos/event/costypedeventchanneladmin-typedconsumeradmin-skel.adb \ cos/event/costypedeventchanneladmin-typedconsumeradmin-skel.ads \ cos/event/costypedeventchanneladmin-typedeventchannel-skel.adb \ cos/event/costypedeventchanneladmin-typedeventchannel-skel.ads \ cos/event/costypedeventchanneladmin-typedproxypullsupplier-skel.adb \ cos/event/costypedeventchanneladmin-typedproxypullsupplier-skel.ads \ cos/event/costypedeventchanneladmin-typedproxypushconsumer-skel.adb \ cos/event/costypedeventchanneladmin-typedproxypushconsumer-skel.ads \ cos/event/costypedeventchanneladmin-typedsupplieradmin-skel.adb \ cos/event/costypedeventchanneladmin-typedsupplieradmin-skel.ads \ cos/event/costypedeventcomm-typedpullsupplier-skel.adb \ cos/event/costypedeventcomm-typedpullsupplier-skel.ads \ cos/event/costypedeventcomm-typedpushconsumer-skel.adb \ cos/event/costypedeventcomm-typedpushconsumer-skel.ads \ cos/naming/cosnaming-bindingiterator-skel.adb \ cos/naming/cosnaming-bindingiterator-skel.ads \ cos/naming/cosnaming-namingcontextext-skel.adb \ cos/naming/cosnaming-namingcontextext-skel.ads \ cos/naming/cosnaming-namingcontext-skel.adb \ cos/naming/cosnaming-namingcontext-skel.ads \ cos/notification/cosnotification-adminpropertiesadmin-skel.adb \ cos/notification/cosnotification-adminpropertiesadmin-skel.ads \ cos/notification/cosnotification-qosadmin-skel.adb \ cos/notification/cosnotification-qosadmin-skel.ads \ cos/notification/cosnotifychanneladmin-consumeradmin-skel.adb \ cos/notification/cosnotifychanneladmin-consumeradmin-skel.ads \ cos/notification/cosnotifychanneladmin-eventchannelfactory-skel.adb \ cos/notification/cosnotifychanneladmin-eventchannelfactory-skel.ads \ cos/notification/cosnotifychanneladmin-eventchannel-skel.adb \ cos/notification/cosnotifychanneladmin-eventchannel-skel.ads \ cos/notification/cosnotifychanneladmin-proxyconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-proxyconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-proxypullconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-proxypullconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-proxypullsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-proxypullsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-proxypushconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-proxypushconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-proxypushsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-proxypushsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-proxysupplier-skel.adb \ cos/notification/cosnotifychanneladmin-proxysupplier-skel.ads \ cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-structuredproxypullconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-structuredproxypullconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-structuredproxypullsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-structuredproxypullsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-structuredproxypushconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-structuredproxypushconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-structuredproxypushsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-structuredproxypushsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-supplieradmin-skel.adb \ cos/notification/cosnotifychanneladmin-supplieradmin-skel.ads \ cos/notification/cosnotifycomm-notifypublish-skel.adb \ cos/notification/cosnotifycomm-notifypublish-skel.ads \ cos/notification/cosnotifycomm-notifysubscribe-skel.adb \ cos/notification/cosnotifycomm-notifysubscribe-skel.ads \ cos/notification/cosnotifycomm-pullconsumer-skel.adb \ cos/notification/cosnotifycomm-pullconsumer-skel.ads \ cos/notification/cosnotifycomm-pullsupplier-skel.adb \ cos/notification/cosnotifycomm-pullsupplier-skel.ads \ cos/notification/cosnotifycomm-pushconsumer-skel.adb \ cos/notification/cosnotifycomm-pushconsumer-skel.ads \ cos/notification/cosnotifycomm-pushsupplier-skel.adb \ cos/notification/cosnotifycomm-pushsupplier-skel.ads \ cos/notification/cosnotifycomm-sequencepullconsumer-skel.adb \ cos/notification/cosnotifycomm-sequencepullconsumer-skel.ads \ cos/notification/cosnotifycomm-sequencepullsupplier-skel.adb \ cos/notification/cosnotifycomm-sequencepullsupplier-skel.ads \ cos/notification/cosnotifycomm-sequencepushconsumer-skel.adb \ cos/notification/cosnotifycomm-sequencepushconsumer-skel.ads \ cos/notification/cosnotifycomm-sequencepushsupplier-skel.adb \ cos/notification/cosnotifycomm-sequencepushsupplier-skel.ads \ cos/notification/cosnotifycomm-structuredpullconsumer-skel.adb \ cos/notification/cosnotifycomm-structuredpullconsumer-skel.ads \ cos/notification/cosnotifycomm-structuredpullsupplier-skel.adb \ cos/notification/cosnotifycomm-structuredpullsupplier-skel.ads \ cos/notification/cosnotifycomm-structuredpushconsumer-skel.adb \ cos/notification/cosnotifycomm-structuredpushconsumer-skel.ads \ cos/notification/cosnotifycomm-structuredpushsupplier-skel.adb \ cos/notification/cosnotifycomm-structuredpushsupplier-skel.ads \ cos/notification/cosnotifyfilter-filteradmin-skel.adb \ cos/notification/cosnotifyfilter-filteradmin-skel.ads \ cos/notification/cosnotifyfilter-filterfactory-skel.adb \ cos/notification/cosnotifyfilter-filterfactory-skel.ads \ cos/notification/cosnotifyfilter-filter-skel.adb \ cos/notification/cosnotifyfilter-filter-skel.ads \ cos/notification/cosnotifyfilter-mappingfilter-skel.adb \ cos/notification/cosnotifyfilter-mappingfilter-skel.ads \ cos/time/costime-timeservice-skel.adb \ cos/time/costime-timeservice-skel.ads \ cos/time/costime-tio-skel.adb \ cos/time/costime-tio-skel.ads \ cos/time/costime-uto-skel.adb \ cos/time/costime-uto-skel.ads \ src/corba/conv_frame.ads \ src/corba/conv_frame-helper.adb \ src/corba/conv_frame-helper.ads \ src/corba/iop/iop.ads \ src/corba/iop/iop-codec.adb \ src/corba/iop/iop-codec.ads \ src/corba/iop/iop-codecfactory.adb \ src/corba/iop/iop-codecfactory.ads \ src/corba/iop/iop-codecfactory-helper.adb \ src/corba/iop/iop-codecfactory-helper.ads \ src/corba/iop/iop-codec-helper.adb \ src/corba/iop/iop-codec-helper.ads \ src/corba/iop/iop-helper.adb \ src/corba/iop/iop-helper.ads \ src/corba/security/csi.ads \ src/corba/security/csi-helper.adb \ src/corba/security/csi-helper.ads \ src/corba/security/csiiop.ads \ src/corba/security/csiiop-helper.adb \ src/corba/security/csiiop-helper.ads \ src/corba/security/gssup/gssup.ads \ src/corba/security/gssup/gssup-helper.adb \ src/corba/security/gssup/gssup-helper.ads \ src/corba/dynamicany/dynamicany.adb \ src/corba/dynamicany/dynamicany.ads \ src/corba/dynamicany/dynamicany-dynany.adb \ src/corba/dynamicany/dynamicany-dynany.ads \ src/corba/dynamicany/dynamicany-dynanyfactory.adb \ src/corba/dynamicany/dynamicany-dynanyfactory.ads \ src/corba/dynamicany/dynamicany-dynanyfactory-helper.adb \ src/corba/dynamicany/dynamicany-dynanyfactory-helper.ads \ src/corba/dynamicany/dynamicany-dynany-helper.adb \ src/corba/dynamicany/dynamicany-dynany-helper.ads \ src/corba/dynamicany/dynamicany-dynarray.adb \ src/corba/dynamicany/dynamicany-dynarray.ads \ src/corba/dynamicany/dynamicany-dynarray-helper.adb \ src/corba/dynamicany/dynamicany-dynarray-helper.ads \ src/corba/dynamicany/dynamicany-dynenum.adb \ src/corba/dynamicany/dynamicany-dynenum.ads \ src/corba/dynamicany/dynamicany-dynenum-helper.adb \ src/corba/dynamicany/dynamicany-dynenum-helper.ads \ src/corba/dynamicany/dynamicany-dynfixed.adb \ src/corba/dynamicany/dynamicany-dynfixed.ads \ src/corba/dynamicany/dynamicany-dynfixed-helper.adb \ src/corba/dynamicany/dynamicany-dynfixed-helper.ads \ src/corba/dynamicany/dynamicany-dynsequence.adb \ src/corba/dynamicany/dynamicany-dynsequence.ads \ src/corba/dynamicany/dynamicany-dynsequence-helper.adb \ src/corba/dynamicany/dynamicany-dynsequence-helper.ads \ src/corba/dynamicany/dynamicany-dynstruct.adb \ src/corba/dynamicany/dynamicany-dynstruct.ads \ src/corba/dynamicany/dynamicany-dynstruct-helper.adb \ src/corba/dynamicany/dynamicany-dynstruct-helper.ads \ src/corba/dynamicany/dynamicany-dynunion.adb \ src/corba/dynamicany/dynamicany-dynunion.ads \ src/corba/dynamicany/dynamicany-dynunion-helper.adb \ src/corba/dynamicany/dynamicany-dynunion-helper.ads \ src/corba/dynamicany/dynamicany-dynvalue.adb \ src/corba/dynamicany/dynamicany-dynvalue.ads \ src/corba/dynamicany/dynamicany-dynvaluebox.adb \ src/corba/dynamicany/dynamicany-dynvaluebox.ads \ src/corba/dynamicany/dynamicany-dynvaluebox-helper.adb \ src/corba/dynamicany/dynamicany-dynvaluebox-helper.ads \ src/corba/dynamicany/dynamicany-dynvaluecommon.adb \ src/corba/dynamicany/dynamicany-dynvaluecommon.ads \ src/corba/dynamicany/dynamicany-dynvaluecommon-helper.adb \ src/corba/dynamicany/dynamicany-dynvaluecommon-helper.ads \ src/corba/dynamicany/dynamicany-dynvalue-helper.adb \ src/corba/dynamicany/dynamicany-dynvalue-helper.ads \ src/corba/dynamicany/dynamicany-helper.adb \ src/corba/dynamicany/dynamicany-helper.ads \ src/corba/messaging/messaging.ads \ src/corba/messaging/messaging-helper.adb \ src/corba/messaging/messaging-helper.ads \ src/corba/portableinterceptor/portableinterceptor.adb \ src/corba/portableinterceptor/portableinterceptor.ads \ src/corba/portableinterceptor/portableinterceptor-clientrequestinfo.adb \ src/corba/portableinterceptor/portableinterceptor-clientrequestinfo.ads \ src/corba/portableinterceptor/portableinterceptor-clientrequestinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-clientrequestinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-clientrequestinterceptor.adb \ src/corba/portableinterceptor/portableinterceptor-clientrequestinterceptor.ads \ src/corba/portableinterceptor/portableinterceptor-clientrequestinterceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-clientrequestinterceptor-helper.ads \ src/corba/portableinterceptor/portableinterceptor-current.adb \ src/corba/portableinterceptor/portableinterceptor-current.ads \ src/corba/portableinterceptor/portableinterceptor-current-helper.adb \ src/corba/portableinterceptor/portableinterceptor-current-helper.ads \ src/corba/portableinterceptor/portableinterceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-helper.ads \ src/corba/portableinterceptor/portableinterceptor-interceptor.adb \ src/corba/portableinterceptor/portableinterceptor-interceptor.ads \ src/corba/portableinterceptor/portableinterceptor-interceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-interceptor-helper.ads \ src/corba/portableinterceptor/portableinterceptor-iorinfo.adb \ src/corba/portableinterceptor/portableinterceptor-iorinfo.ads \ src/corba/portableinterceptor/portableinterceptor-iorinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-iorinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor_3_0.adb \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor_3_0.ads \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor_3_0-helper.adb \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor_3_0-helper.ads \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor.adb \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor.ads \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor-helper.ads \ src/corba/portableinterceptor/portableinterceptor-orbinitializer.adb \ src/corba/portableinterceptor/portableinterceptor-orbinitializer.ads \ src/corba/portableinterceptor/portableinterceptor-orbinitializer-helper.adb \ src/corba/portableinterceptor/portableinterceptor-orbinitializer-helper.ads \ src/corba/portableinterceptor/portableinterceptor-orbinitinfo.adb \ src/corba/portableinterceptor/portableinterceptor-orbinitinfo.ads \ src/corba/portableinterceptor/portableinterceptor-orbinitinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-orbinitinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-policyfactory.adb \ src/corba/portableinterceptor/portableinterceptor-policyfactory.ads \ src/corba/portableinterceptor/portableinterceptor-policyfactory-helper.adb \ src/corba/portableinterceptor/portableinterceptor-policyfactory-helper.ads \ src/corba/portableinterceptor/portableinterceptor-requestinfo.adb \ src/corba/portableinterceptor/portableinterceptor-requestinfo.ads \ src/corba/portableinterceptor/portableinterceptor-requestinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-requestinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-serverrequestinfo.adb \ src/corba/portableinterceptor/portableinterceptor-serverrequestinfo.ads \ src/corba/portableinterceptor/portableinterceptor-serverrequestinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-serverrequestinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-serverrequestinterceptor.adb \ src/corba/portableinterceptor/portableinterceptor-serverrequestinterceptor.ads \ src/corba/portableinterceptor/portableinterceptor-serverrequestinterceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-serverrequestinterceptor-helper.ads \ src/corba/portableinterceptor/dynamic.ads \ src/corba/portableinterceptor/dynamic-helper.adb \ src/corba/portableinterceptor/dynamic-helper.ads \ src/corba/rtcorba/rtcosscheduling.adb \ src/corba/rtcorba/rtcosscheduling.ads \ src/corba/rtcorba/rtcosscheduling-clientscheduler.adb \ src/corba/rtcorba/rtcosscheduling-clientscheduler.ads \ src/corba/rtcorba/rtcosscheduling-clientscheduler-helper.adb \ src/corba/rtcorba/rtcosscheduling-clientscheduler-helper.ads \ src/corba/rtcorba/rtcosscheduling-helper.adb \ src/corba/rtcorba/rtcosscheduling-helper.ads \ src/corba/rtcorba/rtcosscheduling-serverscheduler.adb \ src/corba/rtcorba/rtcosscheduling-serverscheduler.ads \ src/corba/rtcorba/rtcosscheduling-serverscheduler-helper.adb \ src/corba/rtcorba/rtcosscheduling-serverscheduler-helper.ads \ idls/cos/event/coseventchanneladmin.adb \ idls/cos/event/coseventchanneladmin.ads \ idls/cos/event/coseventchanneladmin-consumeradmin.adb \ idls/cos/event/coseventchanneladmin-consumeradmin.ads \ idls/cos/event/coseventchanneladmin-consumeradmin-helper.adb \ idls/cos/event/coseventchanneladmin-consumeradmin-helper.ads \ idls/cos/event/coseventchanneladmin-eventchannel.adb \ idls/cos/event/coseventchanneladmin-eventchannel.ads \ idls/cos/event/coseventchanneladmin-eventchannel-helper.adb \ idls/cos/event/coseventchanneladmin-eventchannel-helper.ads \ idls/cos/event/coseventchanneladmin-helper.adb \ idls/cos/event/coseventchanneladmin-helper.ads \ idls/cos/event/coseventchanneladmin-proxypullconsumer.adb \ idls/cos/event/coseventchanneladmin-proxypullconsumer.ads \ idls/cos/event/coseventchanneladmin-proxypullconsumer-helper.adb \ idls/cos/event/coseventchanneladmin-proxypullconsumer-helper.ads \ idls/cos/event/coseventchanneladmin-proxypullsupplier.adb \ idls/cos/event/coseventchanneladmin-proxypullsupplier.ads \ idls/cos/event/coseventchanneladmin-proxypullsupplier-helper.adb \ idls/cos/event/coseventchanneladmin-proxypullsupplier-helper.ads \ idls/cos/event/coseventchanneladmin-proxypushconsumer.adb \ idls/cos/event/coseventchanneladmin-proxypushconsumer.ads \ idls/cos/event/coseventchanneladmin-proxypushconsumer-helper.adb \ idls/cos/event/coseventchanneladmin-proxypushconsumer-helper.ads \ idls/cos/event/coseventchanneladmin-proxypushsupplier.adb \ idls/cos/event/coseventchanneladmin-proxypushsupplier.ads \ idls/cos/event/coseventchanneladmin-proxypushsupplier-helper.adb \ idls/cos/event/coseventchanneladmin-proxypushsupplier-helper.ads \ idls/cos/event/coseventchanneladmin-supplieradmin.adb \ idls/cos/event/coseventchanneladmin-supplieradmin.ads \ idls/cos/event/coseventchanneladmin-supplieradmin-helper.adb \ idls/cos/event/coseventchanneladmin-supplieradmin-helper.ads \ idls/cos/event/coseventcomm.adb \ idls/cos/event/coseventcomm.ads \ idls/cos/event/coseventcomm-helper.adb \ idls/cos/event/coseventcomm-helper.ads \ idls/cos/event/coseventcomm-pullconsumer.adb \ idls/cos/event/coseventcomm-pullconsumer.ads \ idls/cos/event/coseventcomm-pullconsumer-helper.adb \ idls/cos/event/coseventcomm-pullconsumer-helper.ads \ idls/cos/event/coseventcomm-pullsupplier.adb \ idls/cos/event/coseventcomm-pullsupplier.ads \ idls/cos/event/coseventcomm-pullsupplier-helper.adb \ idls/cos/event/coseventcomm-pullsupplier-helper.ads \ idls/cos/event/coseventcomm-pushconsumer.adb \ idls/cos/event/coseventcomm-pushconsumer.ads \ idls/cos/event/coseventcomm-pushconsumer-helper.adb \ idls/cos/event/coseventcomm-pushconsumer-helper.ads \ idls/cos/event/coseventcomm-pushsupplier.adb \ idls/cos/event/coseventcomm-pushsupplier.ads \ idls/cos/event/coseventcomm-pushsupplier-helper.adb \ idls/cos/event/coseventcomm-pushsupplier-helper.ads \ idls/cos/event/costypedeventchanneladmin.adb \ idls/cos/event/costypedeventchanneladmin.ads \ idls/cos/event/costypedeventchanneladmin-helper.adb \ idls/cos/event/costypedeventchanneladmin-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedconsumeradmin.adb \ idls/cos/event/costypedeventchanneladmin-typedconsumeradmin.ads \ idls/cos/event/costypedeventchanneladmin-typedconsumeradmin-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedconsumeradmin-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedeventchannel.adb \ idls/cos/event/costypedeventchanneladmin-typedeventchannel.ads \ idls/cos/event/costypedeventchanneladmin-typedeventchannel-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedeventchannel-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedproxypullsupplier.adb \ idls/cos/event/costypedeventchanneladmin-typedproxypullsupplier.ads \ idls/cos/event/costypedeventchanneladmin-typedproxypullsupplier-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedproxypullsupplier-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedproxypushconsumer.adb \ idls/cos/event/costypedeventchanneladmin-typedproxypushconsumer.ads \ idls/cos/event/costypedeventchanneladmin-typedproxypushconsumer-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedproxypushconsumer-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedsupplieradmin.adb \ idls/cos/event/costypedeventchanneladmin-typedsupplieradmin.ads \ idls/cos/event/costypedeventchanneladmin-typedsupplieradmin-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedsupplieradmin-helper.ads \ idls/cos/event/costypedeventcomm.ads \ idls/cos/event/costypedeventcomm-typedpullsupplier.adb \ idls/cos/event/costypedeventcomm-typedpullsupplier.ads \ idls/cos/event/costypedeventcomm-typedpullsupplier-helper.adb \ idls/cos/event/costypedeventcomm-typedpullsupplier-helper.ads \ idls/cos/event/costypedeventcomm-typedpushconsumer.adb \ idls/cos/event/costypedeventcomm-typedpushconsumer.ads \ idls/cos/event/costypedeventcomm-typedpushconsumer-helper.adb \ idls/cos/event/costypedeventcomm-typedpushconsumer-helper.ads \ idls/cos/naming/cosnaming.ads \ idls/cos/naming/cosnaming-bindingiterator.adb \ idls/cos/naming/cosnaming-bindingiterator.ads \ idls/cos/naming/cosnaming-bindingiterator-helper.adb \ idls/cos/naming/cosnaming-bindingiterator-helper.ads \ idls/cos/naming/cosnaming-helper.adb \ idls/cos/naming/cosnaming-helper.ads \ idls/cos/naming/cosnaming-namingcontext.adb \ idls/cos/naming/cosnaming-namingcontext.ads \ idls/cos/naming/cosnaming-namingcontextext.adb \ idls/cos/naming/cosnaming-namingcontextext.ads \ idls/cos/naming/cosnaming-namingcontextext-helper.adb \ idls/cos/naming/cosnaming-namingcontextext-helper.ads \ idls/cos/naming/cosnaming-namingcontext-helper.adb \ idls/cos/naming/cosnaming-namingcontext-helper.ads \ idls/cos/notification/cosnotification.adb \ idls/cos/notification/cosnotification-adminpropertiesadmin.adb \ idls/cos/notification/cosnotification-adminpropertiesadmin.ads \ idls/cos/notification/cosnotification-adminpropertiesadmin-helper.adb \ idls/cos/notification/cosnotification-adminpropertiesadmin-helper.ads \ idls/cos/notification/cosnotification.ads \ idls/cos/notification/cosnotification-helper.adb \ idls/cos/notification/cosnotification-helper.ads \ idls/cos/notification/cosnotification-qosadmin.adb \ idls/cos/notification/cosnotification-qosadmin.ads \ idls/cos/notification/cosnotification-qosadmin-helper.adb \ idls/cos/notification/cosnotification-qosadmin-helper.ads \ idls/cos/notification/cosnotifychanneladmin.adb \ idls/cos/notification/cosnotifychanneladmin.ads \ idls/cos/notification/cosnotifychanneladmin-consumeradmin.adb \ idls/cos/notification/cosnotifychanneladmin-consumeradmin.ads \ idls/cos/notification/cosnotifychanneladmin-consumeradmin-helper.adb \ idls/cos/notification/cosnotifychanneladmin-consumeradmin-helper.ads \ idls/cos/notification/cosnotifychanneladmin-eventchannel.adb \ idls/cos/notification/cosnotifychanneladmin-eventchannel.ads \ idls/cos/notification/cosnotifychanneladmin-eventchannelfactory.adb \ idls/cos/notification/cosnotifychanneladmin-eventchannelfactory.ads \ idls/cos/notification/cosnotifychanneladmin-eventchannelfactory-helper.adb \ idls/cos/notification/cosnotifychanneladmin-eventchannelfactory-helper.ads \ idls/cos/notification/cosnotifychanneladmin-eventchannel-helper.adb \ idls/cos/notification/cosnotifychanneladmin-eventchannel-helper.ads \ idls/cos/notification/cosnotifychanneladmin-helper.adb \ idls/cos/notification/cosnotifychanneladmin-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxyconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-proxyconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-proxyconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxyconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxypullconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-proxypullconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-proxypullconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxypullconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxypullsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-proxypullsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-proxypullsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxypullsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxypushconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-proxypushconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-proxypushconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxypushconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxypushsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-proxypushsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-proxypushsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxypushsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxysupplier.adb \ idls/cos/notification/cosnotifychanneladmin-proxysupplier.ads \ idls/cos/notification/cosnotifychanneladmin-proxysupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxysupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-supplieradmin.adb \ idls/cos/notification/cosnotifychanneladmin-supplieradmin.ads \ idls/cos/notification/cosnotifychanneladmin-supplieradmin-helper.adb \ idls/cos/notification/cosnotifychanneladmin-supplieradmin-helper.ads \ idls/cos/notification/cosnotifycomm.adb \ idls/cos/notification/cosnotifycomm.ads \ idls/cos/notification/cosnotifycomm-helper.adb \ idls/cos/notification/cosnotifycomm-helper.ads \ idls/cos/notification/cosnotifycomm-notifypublish.adb \ idls/cos/notification/cosnotifycomm-notifypublish.ads \ idls/cos/notification/cosnotifycomm-notifypublish-helper.adb \ idls/cos/notification/cosnotifycomm-notifypublish-helper.ads \ idls/cos/notification/cosnotifycomm-notifysubscribe.adb \ idls/cos/notification/cosnotifycomm-notifysubscribe.ads \ idls/cos/notification/cosnotifycomm-notifysubscribe-helper.adb \ idls/cos/notification/cosnotifycomm-notifysubscribe-helper.ads \ idls/cos/notification/cosnotifycomm-pullconsumer.adb \ idls/cos/notification/cosnotifycomm-pullconsumer.ads \ idls/cos/notification/cosnotifycomm-pullconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-pullconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-pullsupplier.adb \ idls/cos/notification/cosnotifycomm-pullsupplier.ads \ idls/cos/notification/cosnotifycomm-pullsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-pullsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-pushconsumer.adb \ idls/cos/notification/cosnotifycomm-pushconsumer.ads \ idls/cos/notification/cosnotifycomm-pushconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-pushconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-pushsupplier.adb \ idls/cos/notification/cosnotifycomm-pushsupplier.ads \ idls/cos/notification/cosnotifycomm-pushsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-pushsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-sequencepullconsumer.adb \ idls/cos/notification/cosnotifycomm-sequencepullconsumer.ads \ idls/cos/notification/cosnotifycomm-sequencepullconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-sequencepullconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-sequencepullsupplier.adb \ idls/cos/notification/cosnotifycomm-sequencepullsupplier.ads \ idls/cos/notification/cosnotifycomm-sequencepullsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-sequencepullsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-sequencepushconsumer.adb \ idls/cos/notification/cosnotifycomm-sequencepushconsumer.ads \ idls/cos/notification/cosnotifycomm-sequencepushconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-sequencepushconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-sequencepushsupplier.adb \ idls/cos/notification/cosnotifycomm-sequencepushsupplier.ads \ idls/cos/notification/cosnotifycomm-sequencepushsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-sequencepushsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-structuredpullconsumer.adb \ idls/cos/notification/cosnotifycomm-structuredpullconsumer.ads \ idls/cos/notification/cosnotifycomm-structuredpullconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-structuredpullconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-structuredpullsupplier.adb \ idls/cos/notification/cosnotifycomm-structuredpullsupplier.ads \ idls/cos/notification/cosnotifycomm-structuredpullsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-structuredpullsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-structuredpushconsumer.adb \ idls/cos/notification/cosnotifycomm-structuredpushconsumer.ads \ idls/cos/notification/cosnotifycomm-structuredpushconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-structuredpushconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-structuredpushsupplier.adb \ idls/cos/notification/cosnotifycomm-structuredpushsupplier.ads \ idls/cos/notification/cosnotifycomm-structuredpushsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-structuredpushsupplier-helper.ads \ idls/cos/notification/cosnotifyfilter.adb \ idls/cos/notification/cosnotifyfilter.ads \ idls/cos/notification/cosnotifyfilter-filter.adb \ idls/cos/notification/cosnotifyfilter-filteradmin.adb \ idls/cos/notification/cosnotifyfilter-filteradmin.ads \ idls/cos/notification/cosnotifyfilter-filteradmin-helper.adb \ idls/cos/notification/cosnotifyfilter-filteradmin-helper.ads \ idls/cos/notification/cosnotifyfilter-filter.ads \ idls/cos/notification/cosnotifyfilter-filterfactory.adb \ idls/cos/notification/cosnotifyfilter-filterfactory.ads \ idls/cos/notification/cosnotifyfilter-filterfactory-helper.adb \ idls/cos/notification/cosnotifyfilter-filterfactory-helper.ads \ idls/cos/notification/cosnotifyfilter-filter-helper.adb \ idls/cos/notification/cosnotifyfilter-filter-helper.ads \ idls/cos/notification/cosnotifyfilter-helper.adb \ idls/cos/notification/cosnotifyfilter-helper.ads \ idls/cos/notification/cosnotifyfilter-mappingfilter.adb \ idls/cos/notification/cosnotifyfilter-mappingfilter.ads \ idls/cos/notification/cosnotifyfilter-mappingfilter-helper.adb \ idls/cos/notification/cosnotifyfilter-mappingfilter-helper.ads \ idls/cos/time/costime.adb \ idls/cos/time/costime.ads \ idls/cos/time/costime-helper.adb \ idls/cos/time/costime-helper.ads \ idls/cos/time/costime-timeservice.adb \ idls/cos/time/costime-timeservice.ads \ idls/cos/time/costime-timeservice-helper.adb \ idls/cos/time/costime-timeservice-helper.ads \ idls/cos/time/costime-tio.adb \ idls/cos/time/costime-tio.ads \ idls/cos/time/costime-tio-helper.adb \ idls/cos/time/costime-tio-helper.ads \ idls/cos/time/costime-uto.adb \ idls/cos/time/costime-uto.ads \ idls/cos/time/costime-uto-helper.adb \ idls/cos/time/costime-uto-helper.ads \ idls/cos/time/timebase.ads \ idls/cos/time/timebase-helper.adb \ idls/cos/time/timebase-helper.ads \ cos/naming/file.adb \ cos/naming/file.ads \ cos/naming/file-helper.adb \ cos/naming/file-helper.ads \ cos/naming/file-skel.adb \ cos/naming/file-skel.ads \ examples/corba/all_functions/all_functions.adb \ examples/corba/all_functions/all_functions.ads \ examples/corba/all_functions/all_functions-helper.adb \ examples/corba/all_functions/all_functions-helper.ads \ examples/corba/all_functions/all_functions-skel.adb \ examples/corba/all_functions/all_functions-skel.ads \ examples/corba/random/random.adb \ examples/corba/random/random.ads \ examples/corba/random/random-helper.adb \ examples/corba/random/random-helper.ads \ examples/corba/random/random-skel.adb \ examples/corba/random/random-skel.ads \ examples/corba/send/test.ads \ examples/corba/send/test-printer.adb \ examples/corba/send/test-printer.ads \ examples/corba/send/test-printer-delegate.adb \ examples/corba/send/test-printer-delegate.ads \ examples/corba/send/test-printer-helper.adb \ examples/corba/send/test-printer-helper.ads \ examples/corba/send/test-printer-skel.adb \ examples/corba/send/test-printer-skel.ads \ examples/corba/all_types/all_types.adb \ examples/corba/all_types/all_types.ads \ examples/corba/all_types/all_types-helper.adb \ examples/corba/all_types/all_types-helper.ads \ examples/corba/all_types/all_types-ir_info.adb \ examples/corba/all_types/all_types-ir_info.ads \ examples/corba/all_types/all_types-skel.adb \ examples/corba/all_types/all_types-skel.ads \ examples/corba/rtcorba/rtcosscheduling/echo.adb \ examples/corba/rtcorba/rtcosscheduling/echo.ads \ examples/corba/rtcorba/rtcosscheduling/echo-helper.adb \ examples/corba/rtcorba/rtcosscheduling/echo-helper.ads \ examples/corba/rtcorba/rtcosscheduling/echo-skel.adb \ examples/corba/rtcorba/rtcosscheduling/echo-skel.ads \ examples/corba/rtcorba/client_propagated/echo.adb \ examples/corba/rtcorba/client_propagated/echo.ads \ examples/corba/rtcorba/client_propagated/echo-helper.adb \ examples/corba/rtcorba/client_propagated/echo-helper.ads \ examples/corba/rtcorba/client_propagated/echo-skel.adb \ examples/corba/rtcorba/client_propagated/echo-skel.ads \ examples/corba/rtcorba/server_declared/echo.adb \ examples/corba/rtcorba/server_declared/echo.ads \ examples/corba/rtcorba/server_declared/echo-helper.adb \ examples/corba/rtcorba/server_declared/echo-helper.ads \ examples/corba/rtcorba/server_declared/echo-skel.adb \ examples/corba/rtcorba/server_declared/echo-skel.ads \ examples/corba/rtcorba/dhb/dhb.ads \ examples/corba/rtcorba/dhb/dhb-background_worker.adb \ examples/corba/rtcorba/dhb/dhb-background_worker.ads \ examples/corba/rtcorba/dhb/dhb-background_worker_factory.adb \ examples/corba/rtcorba/dhb/dhb-background_worker_factory.ads \ examples/corba/rtcorba/dhb/dhb-background_worker_factory-helper.adb \ examples/corba/rtcorba/dhb/dhb-background_worker_factory-helper.ads \ examples/corba/rtcorba/dhb/dhb-background_worker_factory-skel.adb \ examples/corba/rtcorba/dhb/dhb-background_worker_factory-skel.ads \ examples/corba/rtcorba/dhb/dhb-background_worker-helper.adb \ examples/corba/rtcorba/dhb/dhb-background_worker-helper.ads \ examples/corba/rtcorba/dhb/dhb-background_worker-skel.adb \ examples/corba/rtcorba/dhb/dhb-background_worker-skel.ads \ examples/corba/rtcorba/dhb/dhb-helper.adb \ examples/corba/rtcorba/dhb/dhb-helper.ads \ examples/corba/rtcorba/dhb/dhb-worker.adb \ examples/corba/rtcorba/dhb/dhb-worker.ads \ examples/corba/rtcorba/dhb/dhb-worker_factory.adb \ examples/corba/rtcorba/dhb/dhb-worker_factory.ads \ examples/corba/rtcorba/dhb/dhb-worker_factory-helper.adb \ examples/corba/rtcorba/dhb/dhb-worker_factory-helper.ads \ examples/corba/rtcorba/dhb/dhb-worker_factory-skel.adb \ examples/corba/rtcorba/dhb/dhb-worker_factory-skel.ads \ examples/corba/rtcorba/dhb/dhb-worker-helper.adb \ examples/corba/rtcorba/dhb/dhb-worker-helper.ads \ examples/corba/rtcorba/dhb/dhb-worker-skel.adb \ examples/corba/rtcorba/dhb/dhb-worker-skel.ads \ examples/corba/echo/echo.adb \ examples/corba/echo/echo.ads \ examples/corba/echo/echo-delegate.adb \ examples/corba/echo/echo-delegate.ads \ examples/corba/echo/echo-helper.adb \ examples/corba/echo/echo-helper.ads \ examples/corba/echo/echo-skel.adb \ examples/corba/echo/echo-skel.ads \ \ src/corba/conv_frame.ads \ src/corba/conv_frame-helper.adb \ src/corba/conv_frame-helper.ads \ src/corba/dynamicany/dynamicany.adb \ src/corba/dynamicany/dynamicany.ads \ src/corba/dynamicany/dynamicany-dynany.adb \ src/corba/dynamicany/dynamicany-dynany.ads \ src/corba/dynamicany/dynamicany-dynanyfactory.adb \ src/corba/dynamicany/dynamicany-dynanyfactory.ads \ src/corba/dynamicany/dynamicany-dynanyfactory-helper.adb \ src/corba/dynamicany/dynamicany-dynanyfactory-helper.ads \ src/corba/dynamicany/dynamicany-dynany-helper.adb \ src/corba/dynamicany/dynamicany-dynany-helper.ads \ src/corba/dynamicany/dynamicany-dynarray.adb \ src/corba/dynamicany/dynamicany-dynarray.ads \ src/corba/dynamicany/dynamicany-dynarray-helper.adb \ src/corba/dynamicany/dynamicany-dynarray-helper.ads \ src/corba/dynamicany/dynamicany-dynenum.adb \ src/corba/dynamicany/dynamicany-dynenum.ads \ src/corba/dynamicany/dynamicany-dynenum-helper.adb \ src/corba/dynamicany/dynamicany-dynenum-helper.ads \ src/corba/dynamicany/dynamicany-dynfixed.adb \ src/corba/dynamicany/dynamicany-dynfixed.ads \ src/corba/dynamicany/dynamicany-dynfixed-helper.adb \ src/corba/dynamicany/dynamicany-dynfixed-helper.ads \ src/corba/dynamicany/dynamicany-dynsequence.adb \ src/corba/dynamicany/dynamicany-dynsequence.ads \ src/corba/dynamicany/dynamicany-dynsequence-helper.adb \ src/corba/dynamicany/dynamicany-dynsequence-helper.ads \ src/corba/dynamicany/dynamicany-dynstruct.adb \ src/corba/dynamicany/dynamicany-dynstruct.ads \ src/corba/dynamicany/dynamicany-dynstruct-helper.adb \ src/corba/dynamicany/dynamicany-dynstruct-helper.ads \ src/corba/dynamicany/dynamicany-dynunion.adb \ src/corba/dynamicany/dynamicany-dynunion.ads \ src/corba/dynamicany/dynamicany-dynunion-helper.adb \ src/corba/dynamicany/dynamicany-dynunion-helper.ads \ src/corba/dynamicany/dynamicany-dynvalue.adb \ src/corba/dynamicany/dynamicany-dynvalue.ads \ src/corba/dynamicany/dynamicany-dynvaluebox.adb \ src/corba/dynamicany/dynamicany-dynvaluebox.ads \ src/corba/dynamicany/dynamicany-dynvaluebox-helper.adb \ src/corba/dynamicany/dynamicany-dynvaluebox-helper.ads \ src/corba/dynamicany/dynamicany-dynvaluecommon.adb \ src/corba/dynamicany/dynamicany-dynvaluecommon.ads \ src/corba/dynamicany/dynamicany-dynvaluecommon-helper.adb \ src/corba/dynamicany/dynamicany-dynvaluecommon-helper.ads \ src/corba/dynamicany/dynamicany-dynvalue-helper.adb \ src/corba/dynamicany/dynamicany-dynvalue-helper.ads \ src/corba/dynamicany/dynamicany-helper.adb \ src/corba/dynamicany/dynamicany-helper.ads \ src/corba/iop/iop.ads \ src/corba/iop/iop-codec.adb \ src/corba/iop/iop-codec.ads \ src/corba/iop/iop-codecfactory.adb \ src/corba/iop/iop-codecfactory.ads \ src/corba/iop/iop-codecfactory-helper.adb \ src/corba/iop/iop-codecfactory-helper.ads \ src/corba/iop/iop-codec-helper.adb \ src/corba/iop/iop-codec-helper.ads \ src/corba/iop/iop-helper.adb \ src/corba/iop/iop-helper.ads \ src/corba/messaging/messaging.ads \ src/corba/messaging/messaging-helper.adb \ src/corba/messaging/messaging-helper.ads \ src/corba/portableinterceptor/portableinterceptor.adb \ src/corba/portableinterceptor/portableinterceptor.ads \ src/corba/portableinterceptor/portableinterceptor-clientrequestinfo.adb \ src/corba/portableinterceptor/portableinterceptor-clientrequestinfo.ads \ src/corba/portableinterceptor/portableinterceptor-clientrequestinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-clientrequestinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-clientrequestinterceptor.adb \ src/corba/portableinterceptor/portableinterceptor-clientrequestinterceptor.ads \ src/corba/portableinterceptor/portableinterceptor-clientrequestinterceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-clientrequestinterceptor-helper.ads \ src/corba/portableinterceptor/portableinterceptor-current.adb \ src/corba/portableinterceptor/portableinterceptor-current.ads \ src/corba/portableinterceptor/portableinterceptor-current-helper.adb \ src/corba/portableinterceptor/portableinterceptor-current-helper.ads \ src/corba/portableinterceptor/portableinterceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-helper.ads \ src/corba/portableinterceptor/portableinterceptor-interceptor.adb \ src/corba/portableinterceptor/portableinterceptor-interceptor.ads \ src/corba/portableinterceptor/portableinterceptor-interceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-interceptor-helper.ads \ src/corba/portableinterceptor/portableinterceptor-iorinfo.adb \ src/corba/portableinterceptor/portableinterceptor-iorinfo.ads \ src/corba/portableinterceptor/portableinterceptor-iorinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-iorinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor_3_0.adb \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor_3_0.ads \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor_3_0-helper.adb \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor_3_0-helper.ads \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor.adb \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor.ads \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-iorinterceptor-helper.ads \ src/corba/portableinterceptor/portableinterceptor-orbinitializer.adb \ src/corba/portableinterceptor/portableinterceptor-orbinitializer.ads \ src/corba/portableinterceptor/portableinterceptor-orbinitializer-helper.adb \ src/corba/portableinterceptor/portableinterceptor-orbinitializer-helper.ads \ src/corba/portableinterceptor/portableinterceptor-orbinitinfo.adb \ src/corba/portableinterceptor/portableinterceptor-orbinitinfo.ads \ src/corba/portableinterceptor/portableinterceptor-orbinitinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-orbinitinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-policyfactory.adb \ src/corba/portableinterceptor/portableinterceptor-policyfactory.ads \ src/corba/portableinterceptor/portableinterceptor-policyfactory-helper.adb \ src/corba/portableinterceptor/portableinterceptor-policyfactory-helper.ads \ src/corba/portableinterceptor/portableinterceptor-requestinfo.adb \ src/corba/portableinterceptor/portableinterceptor-requestinfo.ads \ src/corba/portableinterceptor/portableinterceptor-requestinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-requestinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-serverrequestinfo.adb \ src/corba/portableinterceptor/portableinterceptor-serverrequestinfo.ads \ src/corba/portableinterceptor/portableinterceptor-serverrequestinfo-helper.adb \ src/corba/portableinterceptor/portableinterceptor-serverrequestinfo-helper.ads \ src/corba/portableinterceptor/portableinterceptor-serverrequestinterceptor.adb \ src/corba/portableinterceptor/portableinterceptor-serverrequestinterceptor.ads \ src/corba/portableinterceptor/portableinterceptor-serverrequestinterceptor-helper.adb \ src/corba/portableinterceptor/portableinterceptor-serverrequestinterceptor-helper.ads \ src/corba/portableinterceptor/dynamic.ads \ src/corba/portableinterceptor/dynamic-helper.adb \ src/corba/portableinterceptor/dynamic-helper.ads \ src/corba/rtcorba/rtcosscheduling.adb \ src/corba/rtcorba/rtcosscheduling.ads \ src/corba/rtcorba/rtcosscheduling-clientscheduler.adb \ src/corba/rtcorba/rtcosscheduling-clientscheduler.ads \ src/corba/rtcorba/rtcosscheduling-clientscheduler-helper.adb \ src/corba/rtcorba/rtcosscheduling-clientscheduler-helper.ads \ src/corba/rtcorba/rtcosscheduling-helper.adb \ src/corba/rtcorba/rtcosscheduling-helper.ads \ src/corba/rtcorba/rtcosscheduling-serverscheduler.adb \ src/corba/rtcorba/rtcosscheduling-serverscheduler.ads \ src/corba/rtcorba/rtcosscheduling-serverscheduler-helper.adb \ src/corba/rtcorba/rtcosscheduling-serverscheduler-helper.ads \ src/corba/security/csi.ads \ src/corba/security/csi-helper.adb \ src/corba/security/csi-helper.ads \ src/corba/security/csiiop.ads \ src/corba/security/csiiop-helper.adb \ src/corba/security/csiiop-helper.ads \ src/corba/security/gssup/gssup.ads \ src/corba/security/gssup/gssup-helper.adb \ src/corba/security/gssup/gssup-helper.ads \ idls/cos/naming/cosnaming.ads \ idls/cos/naming/cosnaming-bindingiterator.adb \ idls/cos/naming/cosnaming-bindingiterator.ads \ idls/cos/naming/cosnaming-bindingiterator-helper.adb \ idls/cos/naming/cosnaming-bindingiterator-helper.ads \ idls/cos/naming/cosnaming-bindingiterator-skel.adb \ idls/cos/naming/cosnaming-bindingiterator-skel.ads \ idls/cos/naming/cosnaming-helper.adb \ idls/cos/naming/cosnaming-helper.ads \ idls/cos/naming/cosnaming-namingcontext.adb \ idls/cos/naming/cosnaming-namingcontext.ads \ idls/cos/naming/cosnaming-namingcontextext.adb \ idls/cos/naming/cosnaming-namingcontextext.ads \ idls/cos/naming/cosnaming-namingcontextext-helper.adb \ idls/cos/naming/cosnaming-namingcontextext-helper.ads \ idls/cos/naming/cosnaming-namingcontextext-skel.adb \ idls/cos/naming/cosnaming-namingcontextext-skel.ads \ idls/cos/naming/cosnaming-namingcontext-helper.adb \ idls/cos/naming/cosnaming-namingcontext-helper.ads \ idls/cos/naming/cosnaming-namingcontext-skel.adb \ idls/cos/naming/cosnaming-namingcontext-skel.ads \ idls/cos/event/coseventchanneladmin.adb \ idls/cos/event/coseventchanneladmin.ads \ idls/cos/event/coseventchanneladmin-consumeradmin.adb \ idls/cos/event/coseventchanneladmin-consumeradmin.ads \ idls/cos/event/coseventchanneladmin-consumeradmin-helper.adb \ idls/cos/event/coseventchanneladmin-consumeradmin-helper.ads \ idls/cos/event/coseventchanneladmin-eventchannel.adb \ idls/cos/event/coseventchanneladmin-eventchannel.ads \ idls/cos/event/coseventchanneladmin-eventchannel-helper.adb \ idls/cos/event/coseventchanneladmin-eventchannel-helper.ads \ idls/cos/event/coseventchanneladmin-helper.adb \ idls/cos/event/coseventchanneladmin-helper.ads \ idls/cos/event/coseventchanneladmin-proxypullconsumer.adb \ idls/cos/event/coseventchanneladmin-proxypullconsumer.ads \ idls/cos/event/coseventchanneladmin-proxypullconsumer-helper.adb \ idls/cos/event/coseventchanneladmin-proxypullconsumer-helper.ads \ idls/cos/event/coseventchanneladmin-proxypullsupplier.adb \ idls/cos/event/coseventchanneladmin-proxypullsupplier.ads \ idls/cos/event/coseventchanneladmin-proxypullsupplier-helper.adb \ idls/cos/event/coseventchanneladmin-proxypullsupplier-helper.ads \ idls/cos/event/coseventchanneladmin-proxypushconsumer.adb \ idls/cos/event/coseventchanneladmin-proxypushconsumer.ads \ idls/cos/event/coseventchanneladmin-proxypushconsumer-helper.adb \ idls/cos/event/coseventchanneladmin-proxypushconsumer-helper.ads \ idls/cos/event/coseventchanneladmin-proxypushsupplier.adb \ idls/cos/event/coseventchanneladmin-proxypushsupplier.ads \ idls/cos/event/coseventchanneladmin-proxypushsupplier-helper.adb \ idls/cos/event/coseventchanneladmin-proxypushsupplier-helper.ads \ idls/cos/event/coseventchanneladmin-supplieradmin.adb \ idls/cos/event/coseventchanneladmin-supplieradmin.ads \ idls/cos/event/coseventchanneladmin-supplieradmin-helper.adb \ idls/cos/event/coseventchanneladmin-supplieradmin-helper.ads \ idls/cos/event/coseventcomm.adb \ idls/cos/event/coseventcomm.ads \ idls/cos/event/coseventcomm-helper.adb \ idls/cos/event/coseventcomm-helper.ads \ idls/cos/event/coseventcomm-pullconsumer.adb \ idls/cos/event/coseventcomm-pullconsumer.ads \ idls/cos/event/coseventcomm-pullconsumer-helper.adb \ idls/cos/event/coseventcomm-pullconsumer-helper.ads \ idls/cos/event/coseventcomm-pullsupplier.adb \ idls/cos/event/coseventcomm-pullsupplier.ads \ idls/cos/event/coseventcomm-pullsupplier-helper.adb \ idls/cos/event/coseventcomm-pullsupplier-helper.ads \ idls/cos/event/coseventcomm-pushconsumer.adb \ idls/cos/event/coseventcomm-pushconsumer.ads \ idls/cos/event/coseventcomm-pushconsumer-helper.adb \ idls/cos/event/coseventcomm-pushconsumer-helper.ads \ idls/cos/event/coseventcomm-pushsupplier.adb \ idls/cos/event/coseventcomm-pushsupplier.ads \ idls/cos/event/coseventcomm-pushsupplier-helper.adb \ idls/cos/event/coseventcomm-pushsupplier-helper.ads \ idls/cos/event/costypedeventchanneladmin.adb \ idls/cos/event/costypedeventchanneladmin.ads \ idls/cos/event/costypedeventchanneladmin-helper.adb \ idls/cos/event/costypedeventchanneladmin-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedconsumeradmin.adb \ idls/cos/event/costypedeventchanneladmin-typedconsumeradmin.ads \ idls/cos/event/costypedeventchanneladmin-typedconsumeradmin-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedconsumeradmin-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedeventchannel.adb \ idls/cos/event/costypedeventchanneladmin-typedeventchannel.ads \ idls/cos/event/costypedeventchanneladmin-typedeventchannel-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedeventchannel-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedproxypullsupplier.adb \ idls/cos/event/costypedeventchanneladmin-typedproxypullsupplier.ads \ idls/cos/event/costypedeventchanneladmin-typedproxypullsupplier-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedproxypullsupplier-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedproxypushconsumer.adb \ idls/cos/event/costypedeventchanneladmin-typedproxypushconsumer.ads \ idls/cos/event/costypedeventchanneladmin-typedproxypushconsumer-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedproxypushconsumer-helper.ads \ idls/cos/event/costypedeventchanneladmin-typedsupplieradmin.adb \ idls/cos/event/costypedeventchanneladmin-typedsupplieradmin.ads \ idls/cos/event/costypedeventchanneladmin-typedsupplieradmin-helper.adb \ idls/cos/event/costypedeventchanneladmin-typedsupplieradmin-helper.ads \ idls/cos/event/costypedeventcomm.ads \ idls/cos/event/costypedeventcomm-typedpullsupplier.adb \ idls/cos/event/costypedeventcomm-typedpullsupplier.ads \ idls/cos/event/costypedeventcomm-typedpullsupplier-helper.adb \ idls/cos/event/costypedeventcomm-typedpullsupplier-helper.ads \ idls/cos/event/costypedeventcomm-typedpushconsumer.adb \ idls/cos/event/costypedeventcomm-typedpushconsumer.ads \ idls/cos/event/costypedeventcomm-typedpushconsumer-helper.adb \ idls/cos/event/costypedeventcomm-typedpushconsumer-helper.ads \ idls/cos/notification/cosnotification.adb \ idls/cos/notification/cosnotification-adminpropertiesadmin.adb \ idls/cos/notification/cosnotification-adminpropertiesadmin.ads \ idls/cos/notification/cosnotification-adminpropertiesadmin-helper.adb \ idls/cos/notification/cosnotification-adminpropertiesadmin-helper.ads \ idls/cos/notification/cosnotification.ads \ idls/cos/notification/cosnotification-helper.adb \ idls/cos/notification/cosnotification-helper.ads \ idls/cos/notification/cosnotification-qosadmin.adb \ idls/cos/notification/cosnotification-qosadmin.ads \ idls/cos/notification/cosnotification-qosadmin-helper.adb \ idls/cos/notification/cosnotification-qosadmin-helper.ads \ idls/cos/notification/cosnotifychanneladmin.adb \ idls/cos/notification/cosnotifychanneladmin.ads \ idls/cos/notification/cosnotifychanneladmin-consumeradmin.adb \ idls/cos/notification/cosnotifychanneladmin-consumeradmin.ads \ idls/cos/notification/cosnotifychanneladmin-consumeradmin-helper.adb \ idls/cos/notification/cosnotifychanneladmin-consumeradmin-helper.ads \ idls/cos/notification/cosnotifychanneladmin-eventchannel.adb \ idls/cos/notification/cosnotifychanneladmin-eventchannel.ads \ idls/cos/notification/cosnotifychanneladmin-eventchannelfactory.adb \ idls/cos/notification/cosnotifychanneladmin-eventchannelfactory.ads \ idls/cos/notification/cosnotifychanneladmin-eventchannelfactory-helper.adb \ idls/cos/notification/cosnotifychanneladmin-eventchannelfactory-helper.ads \ idls/cos/notification/cosnotifychanneladmin-eventchannel-helper.adb \ idls/cos/notification/cosnotifychanneladmin-eventchannel-helper.ads \ idls/cos/notification/cosnotifychanneladmin-helper.adb \ idls/cos/notification/cosnotifychanneladmin-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxyconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-proxyconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-proxyconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxyconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxypullconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-proxypullconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-proxypullconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxypullconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxypullsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-proxypullsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-proxypullsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxypullsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxypushconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-proxypushconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-proxypushconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxypushconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxypushsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-proxypushsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-proxypushsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxypushsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-proxysupplier.adb \ idls/cos/notification/cosnotifychanneladmin-proxysupplier.ads \ idls/cos/notification/cosnotifychanneladmin-proxysupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-proxysupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypullsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushconsumer.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushconsumer.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushconsumer-helper.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushconsumer-helper.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushsupplier.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushsupplier.ads \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushsupplier-helper.adb \ idls/cos/notification/cosnotifychanneladmin-structuredproxypushsupplier-helper.ads \ idls/cos/notification/cosnotifychanneladmin-supplieradmin.adb \ idls/cos/notification/cosnotifychanneladmin-supplieradmin.ads \ idls/cos/notification/cosnotifychanneladmin-supplieradmin-helper.adb \ idls/cos/notification/cosnotifychanneladmin-supplieradmin-helper.ads \ idls/cos/notification/cosnotifycomm.adb \ idls/cos/notification/cosnotifycomm.ads \ idls/cos/notification/cosnotifycomm-helper.adb \ idls/cos/notification/cosnotifycomm-helper.ads \ idls/cos/notification/cosnotifycomm-notifypublish.adb \ idls/cos/notification/cosnotifycomm-notifypublish.ads \ idls/cos/notification/cosnotifycomm-notifypublish-helper.adb \ idls/cos/notification/cosnotifycomm-notifypublish-helper.ads \ idls/cos/notification/cosnotifycomm-notifysubscribe.adb \ idls/cos/notification/cosnotifycomm-notifysubscribe.ads \ idls/cos/notification/cosnotifycomm-notifysubscribe-helper.adb \ idls/cos/notification/cosnotifycomm-notifysubscribe-helper.ads \ idls/cos/notification/cosnotifycomm-pullconsumer.adb \ idls/cos/notification/cosnotifycomm-pullconsumer.ads \ idls/cos/notification/cosnotifycomm-pullconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-pullconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-pullsupplier.adb \ idls/cos/notification/cosnotifycomm-pullsupplier.ads \ idls/cos/notification/cosnotifycomm-pullsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-pullsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-pushconsumer.adb \ idls/cos/notification/cosnotifycomm-pushconsumer.ads \ idls/cos/notification/cosnotifycomm-pushconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-pushconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-pushsupplier.adb \ idls/cos/notification/cosnotifycomm-pushsupplier.ads \ idls/cos/notification/cosnotifycomm-pushsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-pushsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-sequencepullconsumer.adb \ idls/cos/notification/cosnotifycomm-sequencepullconsumer.ads \ idls/cos/notification/cosnotifycomm-sequencepullconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-sequencepullconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-sequencepullsupplier.adb \ idls/cos/notification/cosnotifycomm-sequencepullsupplier.ads \ idls/cos/notification/cosnotifycomm-sequencepullsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-sequencepullsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-sequencepushconsumer.adb \ idls/cos/notification/cosnotifycomm-sequencepushconsumer.ads \ idls/cos/notification/cosnotifycomm-sequencepushconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-sequencepushconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-sequencepushsupplier.adb \ idls/cos/notification/cosnotifycomm-sequencepushsupplier.ads \ idls/cos/notification/cosnotifycomm-sequencepushsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-sequencepushsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-structuredpullconsumer.adb \ idls/cos/notification/cosnotifycomm-structuredpullconsumer.ads \ idls/cos/notification/cosnotifycomm-structuredpullconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-structuredpullconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-structuredpullsupplier.adb \ idls/cos/notification/cosnotifycomm-structuredpullsupplier.ads \ idls/cos/notification/cosnotifycomm-structuredpullsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-structuredpullsupplier-helper.ads \ idls/cos/notification/cosnotifycomm-structuredpushconsumer.adb \ idls/cos/notification/cosnotifycomm-structuredpushconsumer.ads \ idls/cos/notification/cosnotifycomm-structuredpushconsumer-helper.adb \ idls/cos/notification/cosnotifycomm-structuredpushconsumer-helper.ads \ idls/cos/notification/cosnotifycomm-structuredpushsupplier.adb \ idls/cos/notification/cosnotifycomm-structuredpushsupplier.ads \ idls/cos/notification/cosnotifycomm-structuredpushsupplier-helper.adb \ idls/cos/notification/cosnotifycomm-structuredpushsupplier-helper.ads \ idls/cos/notification/cosnotifyfilter.adb \ idls/cos/notification/cosnotifyfilter.ads \ idls/cos/notification/cosnotifyfilter-filter.adb \ idls/cos/notification/cosnotifyfilter-filteradmin.adb \ idls/cos/notification/cosnotifyfilter-filteradmin.ads \ idls/cos/notification/cosnotifyfilter-filteradmin-helper.adb \ idls/cos/notification/cosnotifyfilter-filteradmin-helper.ads \ idls/cos/notification/cosnotifyfilter-filter.ads \ idls/cos/notification/cosnotifyfilter-filterfactory.adb \ idls/cos/notification/cosnotifyfilter-filterfactory.ads \ idls/cos/notification/cosnotifyfilter-filterfactory-helper.adb \ idls/cos/notification/cosnotifyfilter-filterfactory-helper.ads \ idls/cos/notification/cosnotifyfilter-filter-helper.adb \ idls/cos/notification/cosnotifyfilter-filter-helper.ads \ idls/cos/notification/cosnotifyfilter-helper.adb \ idls/cos/notification/cosnotifyfilter-helper.ads \ idls/cos/notification/cosnotifyfilter-mappingfilter.adb \ idls/cos/notification/cosnotifyfilter-mappingfilter.ads \ idls/cos/notification/cosnotifyfilter-mappingfilter-helper.adb \ idls/cos/notification/cosnotifyfilter-mappingfilter-helper.ads \ idls/cos/time/costime.adb \ idls/cos/time/costime.ads \ idls/cos/time/costime-helper.adb \ idls/cos/time/costime-helper.ads \ idls/cos/time/costime-timeservice.adb \ idls/cos/time/costime-timeservice.ads \ idls/cos/time/costime-timeservice-helper.adb \ idls/cos/time/costime-timeservice-helper.ads \ idls/cos/time/costime-tio.adb \ idls/cos/time/costime-tio.ads \ idls/cos/time/costime-tio-helper.adb \ idls/cos/time/costime-tio-helper.ads \ idls/cos/time/costime-uto.adb \ idls/cos/time/costime-uto.ads \ idls/cos/time/costime-uto-helper.adb \ idls/cos/time/costime-uto-helper.ads \ idls/cos/time/timebase.ads \ idls/cos/time/timebase-helper.adb \ idls/cos/time/timebase-helper.ads \ cos/ir/corba-repository_root-abstractinterfacedef.adb \ cos/ir/corba-repository_root-abstractinterfacedef.ads \ cos/ir/corba-repository_root-abstractinterfacedef-helper.adb \ cos/ir/corba-repository_root-abstractinterfacedef-helper.ads \ cos/ir/corba-repository_root-abstractinterfacedef-skel.adb \ cos/ir/corba-repository_root-abstractinterfacedef-skel.ads \ cos/ir/corba-repository_root.ads \ cos/ir/corba-repository_root-aliasdef.adb \ cos/ir/corba-repository_root-aliasdef.ads \ cos/ir/corba-repository_root-aliasdef-helper.adb \ cos/ir/corba-repository_root-aliasdef-helper.ads \ cos/ir/corba-repository_root-aliasdef-skel.adb \ cos/ir/corba-repository_root-aliasdef-skel.ads \ cos/ir/corba-repository_root-arraydef.adb \ cos/ir/corba-repository_root-arraydef.ads \ cos/ir/corba-repository_root-arraydef-helper.adb \ cos/ir/corba-repository_root-arraydef-helper.ads \ cos/ir/corba-repository_root-arraydef-skel.adb \ cos/ir/corba-repository_root-arraydef-skel.ads \ cos/ir/corba-repository_root-attributedef.adb \ cos/ir/corba-repository_root-attributedef.ads \ cos/ir/corba-repository_root-attributedef-helper.adb \ cos/ir/corba-repository_root-attributedef-helper.ads \ cos/ir/corba-repository_root-attributedef-skel.adb \ cos/ir/corba-repository_root-attributedef-skel.ads \ cos/ir/corba-repository_root-constantdef.adb \ cos/ir/corba-repository_root-constantdef.ads \ cos/ir/corba-repository_root-constantdef-helper.adb \ cos/ir/corba-repository_root-constantdef-helper.ads \ cos/ir/corba-repository_root-constantdef-skel.adb \ cos/ir/corba-repository_root-constantdef-skel.ads \ cos/ir/corba-repository_root-contained.adb \ cos/ir/corba-repository_root-contained.ads \ cos/ir/corba-repository_root-contained-helper.adb \ cos/ir/corba-repository_root-contained-helper.ads \ cos/ir/corba-repository_root-contained-skel.adb \ cos/ir/corba-repository_root-contained-skel.ads \ cos/ir/corba-repository_root-container.adb \ cos/ir/corba-repository_root-container.ads \ cos/ir/corba-repository_root-container-helper.adb \ cos/ir/corba-repository_root-container-helper.ads \ cos/ir/corba-repository_root-container-skel.adb \ cos/ir/corba-repository_root-container-skel.ads \ cos/ir/corba-repository_root-enumdef.adb \ cos/ir/corba-repository_root-enumdef.ads \ cos/ir/corba-repository_root-enumdef-helper.adb \ cos/ir/corba-repository_root-enumdef-helper.ads \ cos/ir/corba-repository_root-enumdef-skel.adb \ cos/ir/corba-repository_root-enumdef-skel.ads \ cos/ir/corba-repository_root-exceptiondef.adb \ cos/ir/corba-repository_root-exceptiondef.ads \ cos/ir/corba-repository_root-exceptiondef-helper.adb \ cos/ir/corba-repository_root-exceptiondef-helper.ads \ cos/ir/corba-repository_root-exceptiondef-skel.adb \ cos/ir/corba-repository_root-exceptiondef-skel.ads \ cos/ir/corba-repository_root-extabstractinterfacedef.adb \ cos/ir/corba-repository_root-extabstractinterfacedef.ads \ cos/ir/corba-repository_root-extabstractinterfacedef-helper.adb \ cos/ir/corba-repository_root-extabstractinterfacedef-helper.ads \ cos/ir/corba-repository_root-extabstractinterfacedef-skel.adb \ cos/ir/corba-repository_root-extabstractinterfacedef-skel.ads \ cos/ir/corba-repository_root-extattributedef.adb \ cos/ir/corba-repository_root-extattributedef.ads \ cos/ir/corba-repository_root-extattributedef-helper.adb \ cos/ir/corba-repository_root-extattributedef-helper.ads \ cos/ir/corba-repository_root-extattributedef-skel.adb \ cos/ir/corba-repository_root-extattributedef-skel.ads \ cos/ir/corba-repository_root-extinterfacedef.adb \ cos/ir/corba-repository_root-extinterfacedef.ads \ cos/ir/corba-repository_root-extinterfacedef-helper.adb \ cos/ir/corba-repository_root-extinterfacedef-helper.ads \ cos/ir/corba-repository_root-extinterfacedef-skel.adb \ cos/ir/corba-repository_root-extinterfacedef-skel.ads \ cos/ir/corba-repository_root-extlocalinterfacedef.adb \ cos/ir/corba-repository_root-extlocalinterfacedef.ads \ cos/ir/corba-repository_root-extlocalinterfacedef-helper.adb \ cos/ir/corba-repository_root-extlocalinterfacedef-helper.ads \ cos/ir/corba-repository_root-extlocalinterfacedef-skel.adb \ cos/ir/corba-repository_root-extlocalinterfacedef-skel.ads \ cos/ir/corba-repository_root-fixeddef.adb \ cos/ir/corba-repository_root-fixeddef.ads \ cos/ir/corba-repository_root-fixeddef-helper.adb \ cos/ir/corba-repository_root-fixeddef-helper.ads \ cos/ir/corba-repository_root-fixeddef-skel.adb \ cos/ir/corba-repository_root-fixeddef-skel.ads \ cos/ir/corba-repository_root-helper.adb \ cos/ir/corba-repository_root-helper.ads \ cos/ir/corba-repository_root-idltype.adb \ cos/ir/corba-repository_root-idltype.ads \ cos/ir/corba-repository_root-idltype-helper.adb \ cos/ir/corba-repository_root-idltype-helper.ads \ cos/ir/corba-repository_root-idltype-skel.adb \ cos/ir/corba-repository_root-idltype-skel.ads \ cos/ir/corba-repository_root-interfaceattrextension.adb \ cos/ir/corba-repository_root-interfaceattrextension.ads \ cos/ir/corba-repository_root-interfaceattrextension-helper.adb \ cos/ir/corba-repository_root-interfaceattrextension-helper.ads \ cos/ir/corba-repository_root-interfaceattrextension-skel.adb \ cos/ir/corba-repository_root-interfaceattrextension-skel.ads \ cos/ir/corba-repository_root-interfacedef.adb \ cos/ir/corba-repository_root-interfacedef.ads \ cos/ir/corba-repository_root-interfacedef-helper.adb \ cos/ir/corba-repository_root-interfacedef-helper.ads \ cos/ir/corba-repository_root-interfacedef-skel.adb \ cos/ir/corba-repository_root-interfacedef-skel.ads \ cos/ir/corba-repository_root-irobject.adb \ cos/ir/corba-repository_root-irobject.ads \ cos/ir/corba-repository_root-irobject-helper.adb \ cos/ir/corba-repository_root-irobject-helper.ads \ cos/ir/corba-repository_root-irobject-skel.adb \ cos/ir/corba-repository_root-irobject-skel.ads \ cos/ir/corba-repository_root-localinterfacedef.adb \ cos/ir/corba-repository_root-localinterfacedef.ads \ cos/ir/corba-repository_root-localinterfacedef-helper.adb \ cos/ir/corba-repository_root-localinterfacedef-helper.ads \ cos/ir/corba-repository_root-localinterfacedef-skel.adb \ cos/ir/corba-repository_root-localinterfacedef-skel.ads \ cos/ir/corba-repository_root-moduledef.adb \ cos/ir/corba-repository_root-moduledef.ads \ cos/ir/corba-repository_root-moduledef-helper.adb \ cos/ir/corba-repository_root-moduledef-helper.ads \ cos/ir/corba-repository_root-moduledef-skel.adb \ cos/ir/corba-repository_root-moduledef-skel.ads \ cos/ir/corba-repository_root-nativedef.adb \ cos/ir/corba-repository_root-nativedef.ads \ cos/ir/corba-repository_root-nativedef-helper.adb \ cos/ir/corba-repository_root-nativedef-helper.ads \ cos/ir/corba-repository_root-nativedef-skel.adb \ cos/ir/corba-repository_root-nativedef-skel.ads \ cos/ir/corba-repository_root-operationdef.adb \ cos/ir/corba-repository_root-operationdef.ads \ cos/ir/corba-repository_root-operationdef-helper.adb \ cos/ir/corba-repository_root-operationdef-helper.ads \ cos/ir/corba-repository_root-operationdef-skel.adb \ cos/ir/corba-repository_root-operationdef-skel.ads \ cos/ir/corba-repository_root-primitivedef.adb \ cos/ir/corba-repository_root-primitivedef.ads \ cos/ir/corba-repository_root-primitivedef-helper.adb \ cos/ir/corba-repository_root-primitivedef-helper.ads \ cos/ir/corba-repository_root-primitivedef-skel.adb \ cos/ir/corba-repository_root-primitivedef-skel.ads \ cos/ir/corba-repository_root-repository.adb \ cos/ir/corba-repository_root-repository.ads \ cos/ir/corba-repository_root-repository-helper.adb \ cos/ir/corba-repository_root-repository-helper.ads \ cos/ir/corba-repository_root-repository-skel.adb \ cos/ir/corba-repository_root-repository-skel.ads \ cos/ir/corba-repository_root-sequencedef.adb \ cos/ir/corba-repository_root-sequencedef.ads \ cos/ir/corba-repository_root-sequencedef-helper.adb \ cos/ir/corba-repository_root-sequencedef-helper.ads \ cos/ir/corba-repository_root-sequencedef-skel.adb \ cos/ir/corba-repository_root-sequencedef-skel.ads \ cos/ir/corba-repository_root-stringdef.adb \ cos/ir/corba-repository_root-stringdef.ads \ cos/ir/corba-repository_root-stringdef-helper.adb \ cos/ir/corba-repository_root-stringdef-helper.ads \ cos/ir/corba-repository_root-stringdef-skel.adb \ cos/ir/corba-repository_root-stringdef-skel.ads \ cos/ir/corba-repository_root-structdef.adb \ cos/ir/corba-repository_root-structdef.ads \ cos/ir/corba-repository_root-structdef-helper.adb \ cos/ir/corba-repository_root-structdef-helper.ads \ cos/ir/corba-repository_root-structdef-skel.adb \ cos/ir/corba-repository_root-structdef-skel.ads \ cos/ir/corba-repository_root-typedefdef.adb \ cos/ir/corba-repository_root-typedefdef.ads \ cos/ir/corba-repository_root-typedefdef-helper.adb \ cos/ir/corba-repository_root-typedefdef-helper.ads \ cos/ir/corba-repository_root-typedefdef-skel.adb \ cos/ir/corba-repository_root-typedefdef-skel.ads \ cos/ir/corba-repository_root-uniondef.adb \ cos/ir/corba-repository_root-uniondef.ads \ cos/ir/corba-repository_root-uniondef-helper.adb \ cos/ir/corba-repository_root-uniondef-helper.ads \ cos/ir/corba-repository_root-uniondef-skel.adb \ cos/ir/corba-repository_root-uniondef-skel.ads \ cos/ir/corba-repository_root-valueboxdef.adb \ cos/ir/corba-repository_root-valueboxdef.ads \ cos/ir/corba-repository_root-valueboxdef-helper.adb \ cos/ir/corba-repository_root-valueboxdef-helper.ads \ cos/ir/corba-repository_root-valueboxdef-skel.adb \ cos/ir/corba-repository_root-valueboxdef-skel.ads \ cos/ir/corba-repository_root-valuedef.adb \ cos/ir/corba-repository_root-valuedef.ads \ cos/ir/corba-repository_root-valuedef-helper.adb \ cos/ir/corba-repository_root-valuedef-helper.ads \ cos/ir/corba-repository_root-valuedef-skel.adb \ cos/ir/corba-repository_root-valuedef-skel.ads \ cos/ir/corba-repository_root-valuememberdef.adb \ cos/ir/corba-repository_root-valuememberdef.ads \ cos/ir/corba-repository_root-valuememberdef-helper.adb \ cos/ir/corba-repository_root-valuememberdef-helper.ads \ cos/ir/corba-repository_root-valuememberdef-skel.adb \ cos/ir/corba-repository_root-valuememberdef-skel.ads \ cos/ir/corba-repository_root-wstringdef.adb \ cos/ir/corba-repository_root-wstringdef.ads \ cos/ir/corba-repository_root-wstringdef-helper.adb \ cos/ir/corba-repository_root-wstringdef-helper.ads \ cos/ir/corba-repository_root-wstringdef-skel.adb \ cos/ir/corba-repository_root-wstringdef-skel.ads \ cos/ir/corba_repository_root_abstractinterfacedef_hash.adb \ cos/ir/corba_repository_root_abstractinterfacedef_hash.ads \ cos/ir/corba_repository_root_aliasdef_hash.adb \ cos/ir/corba_repository_root_aliasdef_hash.ads \ cos/ir/corba_repository_root_arraydef_hash.adb \ cos/ir/corba_repository_root_arraydef_hash.ads \ cos/ir/corba_repository_root_attributedef_hash.adb \ cos/ir/corba_repository_root_attributedef_hash.ads \ cos/ir/corba_repository_root_constantdef_hash.adb \ cos/ir/corba_repository_root_constantdef_hash.ads \ cos/ir/corba_repository_root_contained_hash.adb \ cos/ir/corba_repository_root_contained_hash.ads \ cos/ir/corba_repository_root_container_hash.adb \ cos/ir/corba_repository_root_container_hash.ads \ cos/ir/corba_repository_root_enumdef_hash.adb \ cos/ir/corba_repository_root_enumdef_hash.ads \ cos/ir/corba_repository_root_exceptiondef_hash.adb \ cos/ir/corba_repository_root_exceptiondef_hash.ads \ cos/ir/corba_repository_root_extabstractinterfacedef_hash.adb \ cos/ir/corba_repository_root_extabstractinterfacedef_hash.ads \ cos/ir/corba_repository_root_extattributedef_hash.adb \ cos/ir/corba_repository_root_extattributedef_hash.ads \ cos/ir/corba_repository_root_extinterfacedef_hash.adb \ cos/ir/corba_repository_root_extinterfacedef_hash.ads \ cos/ir/corba_repository_root_extlocalinterfacedef_hash.adb \ cos/ir/corba_repository_root_extlocalinterfacedef_hash.ads \ cos/ir/corba_repository_root_fixeddef_hash.adb \ cos/ir/corba_repository_root_fixeddef_hash.ads \ cos/ir/corba_repository_root_idltype_hash.adb \ cos/ir/corba_repository_root_idltype_hash.ads \ cos/ir/corba_repository_root_interfaceattrextension_hash.adb \ cos/ir/corba_repository_root_interfaceattrextension_hash.ads \ cos/ir/corba_repository_root_interfacedef_hash.adb \ cos/ir/corba_repository_root_interfacedef_hash.ads \ cos/ir/corba_repository_root_irobject_hash.adb \ cos/ir/corba_repository_root_irobject_hash.ads \ cos/ir/corba_repository_root_localinterfacedef_hash.adb \ cos/ir/corba_repository_root_localinterfacedef_hash.ads \ cos/ir/corba_repository_root_moduledef_hash.adb \ cos/ir/corba_repository_root_moduledef_hash.ads \ cos/ir/corba_repository_root_nativedef_hash.adb \ cos/ir/corba_repository_root_nativedef_hash.ads \ cos/ir/corba_repository_root_operationdef_hash.adb \ cos/ir/corba_repository_root_operationdef_hash.ads \ cos/ir/corba_repository_root_primitivedef_hash.adb \ cos/ir/corba_repository_root_primitivedef_hash.ads \ cos/ir/corba_repository_root_repository_hash.adb \ cos/ir/corba_repository_root_repository_hash.ads \ cos/ir/corba_repository_root_sequencedef_hash.adb \ cos/ir/corba_repository_root_sequencedef_hash.ads \ cos/ir/corba_repository_root_stringdef_hash.adb \ cos/ir/corba_repository_root_stringdef_hash.ads \ cos/ir/corba_repository_root_structdef_hash.adb \ cos/ir/corba_repository_root_structdef_hash.ads \ cos/ir/corba_repository_root_typedefdef_hash.adb \ cos/ir/corba_repository_root_typedefdef_hash.ads \ cos/ir/corba_repository_root_uniondef_hash.adb \ cos/ir/corba_repository_root_uniondef_hash.ads \ cos/ir/corba_repository_root_valueboxdef_hash.adb \ cos/ir/corba_repository_root_valueboxdef_hash.ads \ cos/ir/corba_repository_root_valuedef_hash.adb \ cos/ir/corba_repository_root_valuedef_hash.ads \ cos/ir/corba_repository_root_valuememberdef_hash.adb \ cos/ir/corba_repository_root_valuememberdef_hash.ads \ cos/ir/corba_repository_root_wstringdef_hash.adb \ cos/ir/corba_repository_root_wstringdef_hash.ads \ cos/event/coseventchanneladmin-consumeradmin-skel.adb \ cos/event/coseventchanneladmin-consumeradmin-skel.ads \ cos/event/coseventchanneladmin-eventchannel-skel.adb \ cos/event/coseventchanneladmin-eventchannel-skel.ads \ cos/event/coseventchanneladmin-proxypullconsumer-skel.adb \ cos/event/coseventchanneladmin-proxypullconsumer-skel.ads \ cos/event/coseventchanneladmin-proxypullsupplier-skel.adb \ cos/event/coseventchanneladmin-proxypullsupplier-skel.ads \ cos/event/coseventchanneladmin-proxypushconsumer-skel.adb \ cos/event/coseventchanneladmin-proxypushconsumer-skel.ads \ cos/event/coseventchanneladmin-proxypushsupplier-skel.adb \ cos/event/coseventchanneladmin-proxypushsupplier-skel.ads \ cos/event/coseventchanneladmin-supplieradmin-skel.adb \ cos/event/coseventchanneladmin-supplieradmin-skel.ads \ cos/event/coseventcomm-pullconsumer-skel.adb \ cos/event/coseventcomm-pullconsumer-skel.ads \ cos/event/coseventcomm-pullsupplier-skel.adb \ cos/event/coseventcomm-pullsupplier-skel.ads \ cos/event/coseventcomm-pushconsumer-skel.adb \ cos/event/coseventcomm-pushconsumer-skel.ads \ cos/event/coseventcomm-pushsupplier-skel.adb \ cos/event/coseventcomm-pushsupplier-skel.ads \ cos/event/costypedeventchanneladmin-typedconsumeradmin-skel.adb \ cos/event/costypedeventchanneladmin-typedconsumeradmin-skel.ads \ cos/event/costypedeventchanneladmin-typedeventchannel-skel.adb \ cos/event/costypedeventchanneladmin-typedeventchannel-skel.ads \ cos/event/costypedeventchanneladmin-typedproxypullsupplier-skel.adb \ cos/event/costypedeventchanneladmin-typedproxypullsupplier-skel.ads \ cos/event/costypedeventchanneladmin-typedproxypushconsumer-skel.adb \ cos/event/costypedeventchanneladmin-typedproxypushconsumer-skel.ads \ cos/event/costypedeventchanneladmin-typedsupplieradmin-skel.adb \ cos/event/costypedeventchanneladmin-typedsupplieradmin-skel.ads \ cos/event/costypedeventcomm-typedpullsupplier-skel.adb \ cos/event/costypedeventcomm-typedpullsupplier-skel.ads \ cos/event/costypedeventcomm-typedpushconsumer-skel.adb \ cos/event/costypedeventcomm-typedpushconsumer-skel.ads \ cos/event/coseventchanneladmin_consumeradmin_hash.adb \ cos/event/coseventchanneladmin_consumeradmin_hash.ads \ cos/event/coseventchanneladmin_eventchannel_hash.adb \ cos/event/coseventchanneladmin_eventchannel_hash.ads \ cos/event/coseventchanneladmin_proxypullconsumer_hash.adb \ cos/event/coseventchanneladmin_proxypullconsumer_hash.ads \ cos/event/coseventchanneladmin_proxypullsupplier_hash.adb \ cos/event/coseventchanneladmin_proxypullsupplier_hash.ads \ cos/event/coseventchanneladmin_proxypushconsumer_hash.adb \ cos/event/coseventchanneladmin_proxypushconsumer_hash.ads \ cos/event/coseventchanneladmin_proxypushsupplier_hash.adb \ cos/event/coseventchanneladmin_proxypushsupplier_hash.ads \ cos/event/coseventchanneladmin_supplieradmin_hash.adb \ cos/event/coseventchanneladmin_supplieradmin_hash.ads \ cos/event/coseventcomm_pullconsumer_hash.adb \ cos/event/coseventcomm_pullconsumer_hash.ads \ cos/event/coseventcomm_pullsupplier_hash.adb \ cos/event/coseventcomm_pullsupplier_hash.ads \ cos/event/coseventcomm_pushconsumer_hash.adb \ cos/event/coseventcomm_pushconsumer_hash.ads \ cos/event/coseventcomm_pushsupplier_hash.adb \ cos/event/coseventcomm_pushsupplier_hash.ads \ cos/event/costypedeventchanneladmin_typedconsumeradmin_hash.adb \ cos/event/costypedeventchanneladmin_typedconsumeradmin_hash.ads \ cos/event/costypedeventchanneladmin_typedeventchannel_hash.adb \ cos/event/costypedeventchanneladmin_typedeventchannel_hash.ads \ cos/event/costypedeventchanneladmin_typedproxypullsupplier_hash.adb \ cos/event/costypedeventchanneladmin_typedproxypullsupplier_hash.ads \ cos/event/costypedeventchanneladmin_typedproxypushconsumer_hash.adb \ cos/event/costypedeventchanneladmin_typedproxypushconsumer_hash.ads \ cos/event/costypedeventchanneladmin_typedsupplieradmin_hash.adb \ cos/event/costypedeventchanneladmin_typedsupplieradmin_hash.ads \ cos/event/costypedeventcomm_typedpullsupplier_hash.adb \ cos/event/costypedeventcomm_typedpullsupplier_hash.ads \ cos/event/costypedeventcomm_typedpushconsumer_hash.adb \ cos/event/costypedeventcomm_typedpushconsumer_hash.ads \ cos/notification/cosnotification-adminpropertiesadmin-skel.adb \ cos/notification/cosnotification-adminpropertiesadmin-skel.ads \ cos/notification/cosnotification-qosadmin-skel.adb \ cos/notification/cosnotification-qosadmin-skel.ads \ cos/notification/cosnotifychanneladmin-consumeradmin-skel.adb \ cos/notification/cosnotifychanneladmin-consumeradmin-skel.ads \ cos/notification/cosnotifychanneladmin-eventchannelfactory-skel.adb \ cos/notification/cosnotifychanneladmin-eventchannelfactory-skel.ads \ cos/notification/cosnotifychanneladmin-eventchannel-skel.adb \ cos/notification/cosnotifychanneladmin-eventchannel-skel.ads \ cos/notification/cosnotifychanneladmin-proxyconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-proxyconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-proxypullconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-proxypullconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-proxypullsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-proxypullsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-proxypushconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-proxypushconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-proxypushsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-proxypushsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-proxysupplier-skel.adb \ cos/notification/cosnotifychanneladmin-proxysupplier-skel.ads \ cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-sequenceproxypullconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-sequenceproxypullsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-sequenceproxypushconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-sequenceproxypushsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-structuredproxypullconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-structuredproxypullconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-structuredproxypullsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-structuredproxypullsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-structuredproxypushconsumer-skel.adb \ cos/notification/cosnotifychanneladmin-structuredproxypushconsumer-skel.ads \ cos/notification/cosnotifychanneladmin-structuredproxypushsupplier-skel.adb \ cos/notification/cosnotifychanneladmin-structuredproxypushsupplier-skel.ads \ cos/notification/cosnotifychanneladmin-supplieradmin-skel.adb \ cos/notification/cosnotifychanneladmin-supplieradmin-skel.ads \ cos/notification/cosnotifycomm-notifypublish-skel.adb \ cos/notification/cosnotifycomm-notifypublish-skel.ads \ cos/notification/cosnotifycomm-notifysubscribe-skel.adb \ cos/notification/cosnotifycomm-notifysubscribe-skel.ads \ cos/notification/cosnotifycomm-pullconsumer-skel.adb \ cos/notification/cosnotifycomm-pullconsumer-skel.ads \ cos/notification/cosnotifycomm-pullsupplier-skel.adb \ cos/notification/cosnotifycomm-pullsupplier-skel.ads \ cos/notification/cosnotifycomm-pushconsumer-skel.adb \ cos/notification/cosnotifycomm-pushconsumer-skel.ads \ cos/notification/cosnotifycomm-pushsupplier-skel.adb \ cos/notification/cosnotifycomm-pushsupplier-skel.ads \ cos/notification/cosnotifycomm-sequencepullconsumer-skel.adb \ cos/notification/cosnotifycomm-sequencepullconsumer-skel.ads \ cos/notification/cosnotifycomm-sequencepullsupplier-skel.adb \ cos/notification/cosnotifycomm-sequencepullsupplier-skel.ads \ cos/notification/cosnotifycomm-sequencepushconsumer-skel.adb \ cos/notification/cosnotifycomm-sequencepushconsumer-skel.ads \ cos/notification/cosnotifycomm-sequencepushsupplier-skel.adb \ cos/notification/cosnotifycomm-sequencepushsupplier-skel.ads \ cos/notification/cosnotifycomm-structuredpullconsumer-skel.adb \ cos/notification/cosnotifycomm-structuredpullconsumer-skel.ads \ cos/notification/cosnotifycomm-structuredpullsupplier-skel.adb \ cos/notification/cosnotifycomm-structuredpullsupplier-skel.ads \ cos/notification/cosnotifycomm-structuredpushconsumer-skel.adb \ cos/notification/cosnotifycomm-structuredpushconsumer-skel.ads \ cos/notification/cosnotifycomm-structuredpushsupplier-skel.adb \ cos/notification/cosnotifycomm-structuredpushsupplier-skel.ads \ cos/notification/cosnotifyfilter-filteradmin-skel.adb \ cos/notification/cosnotifyfilter-filteradmin-skel.ads \ cos/notification/cosnotifyfilter-filterfactory-skel.adb \ cos/notification/cosnotifyfilter-filterfactory-skel.ads \ cos/notification/cosnotifyfilter-filter-skel.adb \ cos/notification/cosnotifyfilter-filter-skel.ads \ cos/notification/cosnotifyfilter-mappingfilter-skel.adb \ cos/notification/cosnotifyfilter-mappingfilter-skel.ads \ cos/notification/cosnotification_adminpropertiesadmin_hash.adb \ cos/notification/cosnotification_adminpropertiesadmin_hash.ads \ cos/notification/cosnotification_qosadmin_hash.adb \ cos/notification/cosnotification_qosadmin_hash.ads \ cos/notification/cosnotifychanneladmin_consumeradmin_hash.adb \ cos/notification/cosnotifychanneladmin_consumeradmin_hash.ads \ cos/notification/cosnotifychanneladmin_eventchannelfactory_hash.adb \ cos/notification/cosnotifychanneladmin_eventchannelfactory_hash.ads \ cos/notification/cosnotifychanneladmin_eventchannel_hash.adb \ cos/notification/cosnotifychanneladmin_eventchannel_hash.ads \ cos/notification/cosnotifychanneladmin_proxyconsumer_hash.adb \ cos/notification/cosnotifychanneladmin_proxyconsumer_hash.ads \ cos/notification/cosnotifychanneladmin_proxypullconsumer_hash.adb \ cos/notification/cosnotifychanneladmin_proxypullconsumer_hash.ads \ cos/notification/cosnotifychanneladmin_proxypullsupplier_hash.adb \ cos/notification/cosnotifychanneladmin_proxypullsupplier_hash.ads \ cos/notification/cosnotifychanneladmin_proxypushconsumer_hash.adb \ cos/notification/cosnotifychanneladmin_proxypushconsumer_hash.ads \ cos/notification/cosnotifychanneladmin_proxypushsupplier_hash.adb \ cos/notification/cosnotifychanneladmin_proxypushsupplier_hash.ads \ cos/notification/cosnotifychanneladmin_proxysupplier_hash.adb \ cos/notification/cosnotifychanneladmin_proxysupplier_hash.ads \ cos/notification/cosnotifychanneladmin_sequenceproxypullconsumer_hash.adb \ cos/notification/cosnotifychanneladmin_sequenceproxypullconsumer_hash.ads \ cos/notification/cosnotifychanneladmin_sequenceproxypullsupplier_hash.adb \ cos/notification/cosnotifychanneladmin_sequenceproxypullsupplier_hash.ads \ cos/notification/cosnotifychanneladmin_sequenceproxypushconsumer_hash.adb \ cos/notification/cosnotifychanneladmin_sequenceproxypushconsumer_hash.ads \ cos/notification/cosnotifychanneladmin_sequenceproxypushsupplier_hash.adb \ cos/notification/cosnotifychanneladmin_sequenceproxypushsupplier_hash.ads \ cos/notification/cosnotifychanneladmin_structuredproxypullconsumer_hash.adb \ cos/notification/cosnotifychanneladmin_structuredproxypullconsumer_hash.ads \ cos/notification/cosnotifychanneladmin_structuredproxypullsupplier_hash.adb \ cos/notification/cosnotifychanneladmin_structuredproxypullsupplier_hash.ads \ cos/notification/cosnotifychanneladmin_structuredproxypushconsumer_hash.adb \ cos/notification/cosnotifychanneladmin_structuredproxypushconsumer_hash.ads \ cos/notification/cosnotifychanneladmin_structuredproxypushsupplier_hash.adb \ cos/notification/cosnotifychanneladmin_structuredproxypushsupplier_hash.ads \ cos/notification/cosnotifychanneladmin_supplieradmin_hash.adb \ cos/notification/cosnotifychanneladmin_supplieradmin_hash.ads \ cos/notification/cosnotifycomm_notifypublish_hash.adb \ cos/notification/cosnotifycomm_notifypublish_hash.ads \ cos/notification/cosnotifycomm_notifysubscribe_hash.adb \ cos/notification/cosnotifycomm_notifysubscribe_hash.ads \ cos/notification/cosnotifycomm_pullconsumer_hash.adb \ cos/notification/cosnotifycomm_pullconsumer_hash.ads \ cos/notification/cosnotifycomm_pullsupplier_hash.adb \ cos/notification/cosnotifycomm_pullsupplier_hash.ads \ cos/notification/cosnotifycomm_pushconsumer_hash.adb \ cos/notification/cosnotifycomm_pushconsumer_hash.ads \ cos/notification/cosnotifycomm_pushsupplier_hash.adb \ cos/notification/cosnotifycomm_pushsupplier_hash.ads \ cos/notification/cosnotifycomm_sequencepullconsumer_hash.adb \ cos/notification/cosnotifycomm_sequencepullconsumer_hash.ads \ cos/notification/cosnotifycomm_sequencepullsupplier_hash.adb \ cos/notification/cosnotifycomm_sequencepullsupplier_hash.ads \ cos/notification/cosnotifycomm_sequencepushconsumer_hash.adb \ cos/notification/cosnotifycomm_sequencepushconsumer_hash.ads \ cos/notification/cosnotifycomm_sequencepushsupplier_hash.adb \ cos/notification/cosnotifycomm_sequencepushsupplier_hash.ads \ cos/notification/cosnotifycomm_structuredpullconsumer_hash.adb \ cos/notification/cosnotifycomm_structuredpullconsumer_hash.ads \ cos/notification/cosnotifycomm_structuredpullsupplier_hash.adb \ cos/notification/cosnotifycomm_structuredpullsupplier_hash.ads \ cos/notification/cosnotifycomm_structuredpushconsumer_hash.adb \ cos/notification/cosnotifycomm_structuredpushconsumer_hash.ads \ cos/notification/cosnotifycomm_structuredpushsupplier_hash.adb \ cos/notification/cosnotifycomm_structuredpushsupplier_hash.ads \ cos/notification/cosnotifyfilter_filteradmin_hash.adb \ cos/notification/cosnotifyfilter_filteradmin_hash.ads \ cos/notification/cosnotifyfilter_filterfactory_hash.adb \ cos/notification/cosnotifyfilter_filterfactory_hash.ads \ cos/notification/cosnotifyfilter_filter_hash.adb \ cos/notification/cosnotifyfilter_filter_hash.ads \ cos/notification/cosnotifyfilter_mappingfilter_hash.adb \ cos/notification/cosnotifyfilter_mappingfilter_hash.ads \ cos/naming/file.adb \ cos/naming/file.ads \ cos/naming/file-helper.adb \ cos/naming/file-helper.ads \ cos/naming/file-skel.adb \ cos/naming/file-skel.ads \ cos/naming/cosnaming_bindingiterator_hash.adb \ cos/naming/cosnaming_bindingiterator_hash.ads \ cos/naming/cosnaming_namingcontextext_hash.adb \ cos/naming/cosnaming_namingcontextext_hash.ads \ cos/naming/cosnaming_namingcontext_hash.adb \ cos/naming/cosnaming_namingcontext_hash.ads \ cos/naming/file_hash.adb \ cos/naming/file_hash.ads \ cos/time/costime-timeservice-skel.adb \ cos/time/costime-timeservice-skel.ads \ cos/time/costime-tio-skel.adb \ cos/time/costime-tio-skel.ads \ cos/time/costime-uto-skel.adb \ cos/time/costime-uto-skel.ads \ cos/time/costime_timeservice_hash.adb \ cos/time/costime_timeservice_hash.ads \ cos/time/costime_tio_hash.adb \ cos/time/costime_tio_hash.ads \ cos/time/costime_uto_hash.adb \ cos/time/costime_uto_hash.ads ################ # Target for debugging this Makefile .PHONY: debug-makefile debug-makefile: @echo "debug-makefile" @echo top_builddir = ${top_builddir} @echo top_srcdir = ${top_srcdir} @echo MAKEFLAGS = ${MAKEFLAGS} @echo GNATMAKE_FLAGS = ${GNATMAKE_FLAGS} @echo MAKECMDGOALS = ${MAKECMDGOALS} @echo MKDIR_FLAGS = ${MKDIR_FLAGS} @echo polyorb_idl_stamps = ${polyorb_idl_stamps} @echo all_idl_stamps = ${all_idl_stamps} @echo POLYORB_LIBS = ${POLYORB_LIBS} @echo SERVICE_LIBS = ${SERVICE_LIBS} @echo ALL_PROJECT_FILES = ${ALL_PROJECT_FILES} @echo PROJECT_FILES = ${PROJECT_FILES} @echo LIBRARY_PROJECT_FILES = ${LIBRARY_PROJECT_FILES} @echo EXE_PROJECT_FILES = ${EXE_PROJECT_FILES} @echo C_FILES = ${C_FILES} @echo C_OBJECTS = ${C_OBJECTS} @echo COMPILER_EXES = ${COMPILER_EXES} @echo APPLI_EXES = ${APPLI_EXES} @echo SERVICE_EXES = ${SERVICE_EXES} @echo COMPILERS = ${COMPILERS} @echo IAC_NODES_STAMPS = ${IAC_NODES_STAMPS} @echo IAC_NODES_SOURCES = ${IAC_NODES_SOURCES} @echo active_tests = ${active_tests} @echo "debug-makefile done" ################################################################ # Reminder of arcane 'make' conventions: # In the commands of static pattern rules: # $@ -- target # $< -- first prerequisite # $^ -- all prerequisites # $* -- stem (the part that matched %) .NOTPARALLEL: