1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532
|
# Main PolyORB Makefile
include /usr/share/dpkg/default.mk
include /usr/share/ada/debian_packaging.mk
.PHONY: default
default: all
# To use this make file, say "make <targets>".
# 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@ -gnat05 -gnatec=${top_builddir}/compilers/config.adc ${BASE_GNATMAKE_FLAGS}
# Gnatmake flags for compilation tools mains, built without project files
# Extra flags for target
LIBRARY_TYPE_OPTION := -XLIBRARY_TYPE=static
CFLAGS_FOR_TARGET := @CFLAGS_FOR_TARGET@
ADAFLAGS_FOR_TARGET := @ADAFLAGS_FOR_TARGET@
GNATMAKE_FLAGS_FOR_TARGET := $(LIBRARY_TYPE_OPTION) -cargs ${ADAFLAGS_FOR_TARGET} -largs $(LDFLAGS)
# 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 += iac/iac 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: \
PRJ_GNATMAKE_FLAGS := -I${top_srcdir}/compilers/common_files \
-I${top_builddir}/compilers/common_files
build-po_gnatdist: \
compiler_dir := gnatdist
################################################
# Common build rule for all compile-time tools #
################################################
build-gnatprfh \
\
build-testparser \
build-testlexer \
build-testgen \
build-idlac \
\
build-mknodes \
build-iac \
\
: build-%:
mkdir -p compilers/${compiler_dir} && \
cd compilers/${compiler_dir} && \
${GNATMAKE} $(ADAFLAGS) -m \
$*.adb \
${COMP_TOOLS_GNATMAKE_FLAGS} \
-I${top_srcdir}/compilers/${compiler_dir} \
${PRJ_GNATMAKE_FLAGS} -bargs -E -largs $(LDFLAGS)
# Binder switch -E causes traceback information to be included in
# Exception_Occurrences.
build-po_gnatdist:
mkdir -p compilers/${compiler_dir} && \
cd compilers/${compiler_dir} && \
ADA_PROJECT_PATH="${top_builddir}/projects${PATH_SEP}${top_srcdir}/projects${PATH_SEP}$$ADA_PROJECT_PATH" \
${GNATMAKE} -p $(ADAFLAGS) -m -P compilers_gnatdist -largs $(LDFLAGS)
# 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 :=
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} \
${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}
else
idlac := ${top_builddir}/${IDLAC_bin} ${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
#???.exe suffix : gnatprfh.exe?
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}
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 :=
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-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 -m
# 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_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
##########################
# 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}}
self_idl_stamps += ${test_idl_stamps}
# Include all the Makefile.local files.
@LOCAL_MAKEFILES@
test_targets := ${sort ${test_targets}}
.PHONY: ${test_targets}
${test_targets}: %/build-test:
${GPRBUILD_FOR_TARGET} "-XTest_Dir=$*" -aP"${top_builddir}/projects" -aP"${top_srcdir}/projects" -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
# disable rtcorba tests
active_tests := ${filter-out examples/corba/rtcorba/%,${active_tests}}
active_tests := ${filter-out examples/corba/rtcorba/rtcosscheduling/%,${active_tests}}
active_tests := ${filter-out examples/corba/rtcorba/dhb/%,${active_tests}}
active_tests := ${filter-out examples/corba/rtcorba/client_propagated/%,${active_tests}}
active_tests := ${filter-out examples/corba/rtcorba/server_declared/%,${active_tests}}
active_tests := ${filter-out testsuite/corba/rtcorba/%,${active_tests}}
active_tests := ${filter-out testsuite/corba/rtcorba/rtorb/%,${active_tests}}
active_tests := ${filter-out testsuite/corba/rtcorba/rtcurrent/%,${active_tests}}
active_tests := ${filter-out testsuite/corba/rtcorba/rtpoa/%,${active_tests}}
#???The following are disabled for now, because of minor build problems:
# and disable rtcorba tests
skip_tests := examples/bbs \
examples/dsa \
testsuite/acats/CXE1001 \
testsuite/acats/CXE2001 \
testsuite/acats/CXE4001 \
testsuite/acats/CXE4002 \
testsuite/acats/CXE4005 \
testsuite/acats/CXE4006 \
examples/corba/rtcorba \
examples/corba/rtcorba/rtcosscheduling \
examples/corba/rtcorba/dhb \
examples/corba/rtcorba/client_propagated \
examples/corba/rtcorba/server_declared \
testsuite/corba/rtcorba \
testsuite/corba/rtcorba/rtorb \
testsuite/corba/rtcorba/rtcurrent \
testsuite/corba/rtcorba/rtpoa
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 --abort-file=test_failed --diffs --testsuite-src-dir=${top_srcdir}/testsuite
[ ! -e testsuite/test_failed ]
# '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 $@
${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 docs && ${MAKE})
################################################################
# Installation
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
debian_source_dir = ${prefix}/share/ada/adainclude/polyorb
debian_ali_dir = ${prefix}/lib/ada/adalib/polyorb
debian_bin_dir = ${prefix}/bin
debian_lib_dir = ${prefix}/lib
.PHONY: install
install:
${PINSTALL} -d ${debian_lib_dir}
${PINSTALL} -d ${debian_bin_dir}
${PINSTALL} -d ${debian_source_dir}
${PINSTALL} -d ${debian_ali_dir}
for comp in ${COMPILER_EXES}; do \
: Do not distribute the gnatprfh binary; \
if [ `basename $${comp}` = gnatprfh ]; then \
continue; \
fi; \
${PINSTALL} ${top_builddir}/compilers/$${comp}${COMPILER_EXE_SUFFIX} ${debian_bin_dir}; \
done
ls ${top_builddir}/static/lib/*.a | ${PINSTALL} -m 444 - ${debian_lib_dir}
ls ${top_builddir}/relocatable/lib/*.so.* | ${PINSTALL} -m 444 - ${debian_lib_dir}
${INSTALL_SCRIPT} ${top_builddir}/polyorb-config ${debian_bin_dir}
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}/relocatable/tools/$$tool${TARGET_EXE_SUFFIX} ${debian_bin_dir}/`basename $$tool`; \
done
(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 - ${debian_source_dir}
(find \
${top_builddir}/relocatable/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 - ${debian_ali_dir}
# Install documentation only if it has been built locally, or
# pre-built and packaged with sources.
if [ -r docs/polyorb_ug.html ]; \
then \
(cd docs && ${MAKE} install prefix="${prefix}"); \
elif [ -r $(top_srcdir)/docs/polyorb_ug.html ]; \
then \
(cd docs && ${MAKE} install prefix="${prefix}" doc_build_dir="$(top_srcdir)/docs/"); \
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.
################################################################
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 cos/naming/ir_ab_names
${RM} -f cos/naming/po_cos_naming
${RM} -f cos/naming/po_cos_naming_shell
${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_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 \
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/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/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 %)
|