-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTAO.GNUmakefile
12587 lines (10487 loc) · 812 KB
/
TAO.GNUmakefile
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
# -*- makefile -*-
#----------------------------------------------------------------------------
# GNU ACE Workspace
#
# $Id: TAO.GNUmakefile,v 1.2 2013/08/11 18:15:51 lollisoft Exp $
#
# This file was generated by MPC. Any changes made directly to
# this file will be lost the next time it is generated.
#
# MPC Command:
# /tmp/DOC_ROOT/stage-25495/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -workers 8 -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-25495/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-25495/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-25495/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-25495/ACE_wrappers/TAO/DAnCE
#
#----------------------------------------------------------------------------
MAKEFILE = GNUmakefile
ifeq ($(findstring k,$(MAKEFLAGS)),k)
KEEP_GOING = -
endif
include $(ACE_ROOT)/include/makeinclude/macros.GNU
all: TAO_IDL_FE TAO_IDL_BE TAO_IDL_EXE Messaging_Idl Valuetype_Idl AnyTypeCode_Idl Codeset_Idl TAO_Core_idl TAO Codeset AnyTypeCode Valuetype PI_Idl CodecFactory_Idl CodecFactory PI PortableServer_Idl PortableServer Messaging AMH_Idl AMH_Server AMH_Client AMH_AMI_Idl AMH_AMI_Inner_Server AMH_AMI_Middle_Server AMH_AMI_Client BiDirectionalGIOP_Idl BiDir_GIOP_Idl BiDir_GIOP BiDirectionalGIOP_Client BiDirectionalGIOP_Server GettingStarted_Idl GettingStarted_Client GettingStarted_Server LocalObject_Messenger_Idl LocalObject_Messenger_Server ServantLocator_Idl ServantLocator_Server ServantLocator_Client AMIcallback_Server AMIcallback_Client RelativeRoundtripTimeout_Idl RelativeRoundtripTimeout_Client RelativeRoundtripTimeout_Server GracefulShutdown_Idl Multithreading_GracefulShutdown_Client Multithreading_GracefulShutdown_Server Reactive_Idl Multithreading_Reactive_Server Multithreading_Reactive_Client ThreadPerConnection_Idl Multi_ThreadPerConnection_Server Multi_ThreadPerConnection_Client ThreadPool_Idl Multithreading_ThreadPool_Client Multithreading_ThreadPool_Server Auth_Idl Auth_Client PI_Server_Idl PI_Server Auth_Server IOR_Idl IOR_Client IORInterceptor_Idl ObjRefTemplate_Idl ObjRefTemplate IORInterceptor IOR_Server PICurrent_Idl PICurrent_Client PICurrent_Server SimpleCode_Idl SimpleCode_Client SimpleCode_Server RTCORBA_Idl RTCORBA_Core_Idl RTCORBA RTCORBA_Client RTPortableServer_Idl RTPortableServer RTCORBA_Server SmartProxies SmartProxies_Server SmartProxies_Logger SmartProxies_Client Bank_Dev_Bank_Idl Bank__Dev_Server Bank__Dev_Client ValueTypes_DevGuideIDL ValueTypes_DevGuideMsgClient ValueTypes_DevGuideMsgServer Quoter_AMI_Idl Quoter_AMI_Client Quoter_AMI_Server Quoter_Event_Service_Idl CosNaming_IDL CosNaming CosEvent_IDL CosEvent CosEvent_Skel Quoter_Event_Service_Server Quoter_Event_Service_Client Quoter_Idl_Lib Quoter_Naming_Service_Client Quoter_Naming_Service_Server Quoter_On_Demand_Activation_Idl Quoter_On_Demand_Activation_Client Quoter_On_Demand_Activation_Server RTCORBA_Quoter_Common Quoter_RT_Event_Service_Idl Svc_Utils RTEvent RTEvent_Skel RTEvent_Serv Quoter_RT_Event_Service_Server Quoter_RT_Event_Service_Client Quoter_Simple_Client Quoter_Simple_Impl_Repo_Client IORTable_Core_Idl IORTable Quoter_Simple_Impl_Repo_Server Quoter_Simple_ImprovedServer Quoter_Simple_Persistent_Client Quoter_Simple_Persistent_Server Quoter_Simple_Server Sink_Server_IDL Strategies_Core_Idl Strategies Sink_Server_Client Sink_Server_Mt_Server Sink_Server_St_Server FL_Callback_Idl FL_Callback_Peer TAO_FlResource FL_Callback_Progress Advanced_Ch_12_Idl Advanced_Ch_12_Client Advanced_Ch_18_Idl Advanced_Ch_18_Client Advanced_Ch_21_Idl Advanced_Ch_21_Client Advanced_Ch_3_Idl Advanced_Ch_3_Client Advanced_Ch_3_Server Advanced_Ch_8_And_10_Idl Advanced_Ch_8_And_10_Client Buffered_AMI_IDL Buffered_AMI_Client Buffered_AMI_Server Buffered_Oneways_IDL Buffered_Oneways_Client Buffered_Oneways_Server CSD_Test_ThreadPool_Idl CSD_Test_ThreadPool_Client CSD_Framework_Idl CSD_Framework CSD_ThreadPool CSD_Test_ThreadPool_Server CSD_Test_ThreadPool2_Idl CSD_Test_ThreadPool2_Server CSD_Test_ThreadPool2_Client CSD_Test_ThreadPool3_Idl CSD_Test_ThreadPool3_Server CSD_Test_ThreadPool3_Client CSD_Test_ThreadPool4_Server CSD_Test_ThreadPool5_Idl CSD_Test_ThreadPool5_Server CSD_Test_ThreadPool5_Client CSD_Test_ThreadPool6_Idl CSD_Test_ThreadPool6_Server CSD_Test_ThreadPool6_Client Callback_Quoter_IDL TAO_Utils Callback_Quoter_notifier Callback_Quoter_supplier Callback_Quoter_consumer AMI_Iterator_IDL AMI_Iterator_Client AMI_Iterator_Server AMI_Observer_IDL AMI_Observer_Server AMI_Observer_Client SMI_Iterator_IDL SMI_Iterator_Client SMI_Iterator_Server Event_Comm_IDL Event_Comm_Notifier Event_Comm_Consumer Event_Comm_Supplier RTScheduler_Idl RTScheduler Kokyu_DSRT_Schedulers fp_example_IDL fp_client fp_server mif_example_IDL mif_example_client mif_example_server muf_example_IDL muf_client muf_server Load_Balancing_IDL Load_Balancing_Server Load_Balancing_Balancer Load_Balancing_Client Load_Balancing_Persistent_IDL Load_Balancing_Persistent_Client Load_Balancing_Persistent_Balancer Load_Balancing_Persistent_Server Logging_IDL Logging_Service Logging_Test Typed_Events_IDL Typed_Events_Server Typed_Events_Client Persistent_Grid_IDL Persistent_Grid_Server Persistent_Grid_Client Persistent_Grid_Persistent_Client Performance_IDL Performance_Server Performance_Client SimplePerformance_IDL SimplePerformance_Client SimplePerformance_Server Quoter_IDL CosLifeCycle_IDL CosLifeCycle CosLifeCycle_Skel Quoter_Server Quoter_Client Quoter_Factory_Finder Quoter_Generic_Factory Activity RTSchedSynch MIF_Scheduler_Starter Fixed_Priority_Scheduler_Starter Job RTSchedTestLib Fixed_Priority_Scheduler_Test MIF_Scheduler_Test bank_IDL bank_server bank_client chat_IDL chat_client chat_server echo_IDL echo_server echo_client grid_IDL grid_server grid_client Simple_Time_Date_Lib Simple_Time_Date_Client Simple_Time_Date_Server time_IDL time_server time_client Event_Supplier_IDL RTSched Event_Supplier_Event_Sup Event_Supplier_DualEC_Sup Event_Supplier_Event_Con Event_Supplier_Logging_Sup TypeCodeFactory_Idl IFR_Client_Idl IFR_Client TypeCodeFactory TypeCode_Creation_Test ior_corbaloc_IDL ior_corbaloc_client ior_corbaloc_corbaname_client ior_corbaloc_server MFC_Client interop_wchar_IDL Interop_Wchar_Client Interop_Wchar_Server CosConcurrency_IDL CosConcurrency CosConcurrency_Skel CosConcurrency_Serv Concurrency_Service DynamicInterface CosEvent_Serv CosEvent_Service OMG_Basic_Consumer OMG_Basic_Supplier OMG_SupplierSideEC_Consumer OMG_SupplierSideEC_Supplier OMG_TypedEC_Supplier OMG_TypedEC_Consumer RTEC_Basic_Consumer RTEC_Basic_Supplier RTEC_Federated_Consumer RTEC_Federated_Supplier RTEC_Filter_Consumer RTEC_Filter_Supplier RTEC_MCast_Federated__Dev_Consumer RTEC_MCast_Federated__Dev_Supplier ImplRepo_Basic_Idl ImplRepo_Basic_Client ImplRepo_Basic_Server ImplRepo_Idl ImplRepo_Client ImplRepo_Server ImplRepo_IORTable_Idl ImplRepo_IORTable_Client ImplRepo_IORTable_Server InterfaceRepo_Browser NamingService_Messenger_Idl NamingService_Messenger_Client CosNaming_Skel NamingService_Messenger_Server Naming_Client_Idl Naming_Client_Client Naming_Client_Server Naming_Context_Ext_Idl Naming_Context_Ext_Server Naming_Context_Ext_Client CosNaming_Serv Naming_Server_Messenger Corbaloc_Messenger_Idl Corbaloc_Messenger_Server Corbaloc_Messenger_Client Corbaname_Messenger_Idl Corbaname_Messenger_Server Corbaname_Messenger_Client EventSequence_Idl CosNotification_IDL CosNotification CosNotification_Skel EventSequence_Server EventSequence_Client EventSequence_Consumer Filtering_Idl Filtering_Server Filtering_Client Filtering_Consumer NotifyServiceMessenger_Idl NotifyServiceMessenger_Client NotifyServiceMessenger_Server NotifyServiceMessenger_Consumer OfferSubscriptions_Idl OfferSubscriptions_Client OfferSubscriptions_Consumer OfferSubscriptions_Server QoSProperties_Idl QoSProperties_Server QoSProperties_Client QoSProperties_Consumer RTNotify_Idl RTNotify_Server RTNotify_Client RTNotify_Consumer SupplierSideNC_Idl SupplierSideNC_Consumer SupplierSideNC_Client TAO_ETCL DynamicAny_Idl DynamicAny CosNotification_Serv SupplierSideNC_Server PICurrent_NameService_Idl PICurrent_NameService_Client PICurrent_NameService_Server Security SSLIOP ParticipatingApp_Server ParticipatingApp_Client PolicyControllingApp_Server PolicyControllingApp_Client SecurityUnawareApp_Server SecurityUnawareApp_Client Notify_Consumer Notify_Supplier Dump_Schedule RTSchedEvent Event_Service IORManipulation_Idl IORManipulation PortableGroup FTORB_Utils FtRtEvent FTRT_EventChannel FTRT_Event_Service FT_ServerORB FT_ClientORB FaultTolerance FTRTEC_Factory_Service FTRT_ClientORB FTRTEC_Gateway_Service FT_ReplicationManager_Lib FT_ReplicationManager Fault_Detector Fault_Notifier ImR_Client_Idl ImR_Client IFR_Client_skel IFRService IFR_Service TAO_IFR_BE TAO_IFR_EXE ImR_Activator_IDL ImR_Locator_IDL ImR_Activator ImR_Activator_Service ImR_Locator ImR_Locator_Service tao_imr CosTrading_IDL CosTrading CosTrading_Skel CosTrading_Serv LifeCycle_Service CosLoadBalancing LoadManager LoadMonitor DsLogAdmin_IDL DsLogAdmin DsLogAdmin_Skel DsLogAdmin_Serv Basic_Logging_Service DsEventLogAdmin_IDL DsEventLogAdmin DsEventLogAdmin_Skel DsEventLogAdmin_Serv Event_Logging_Service DsNotifyLogAdmin_IDL DsNotifyLogAdmin DsNotifyLogAdmin_Skel DsNotifyLogAdmin_Serv Notify_Logging_Service RTEventLogAdmin_IDL RTEventLogAdmin RTEventLogAdmin_Skel RTEventLogAdmin_Serv RTEvent_Logging_Service Naming_Service NT_Naming_Service TAO_Notify_Service NT_Notify_Service Notify_Service Scheduling_Service TAO_Service CosTime_IDL CosTime CosTime_Skel CosTime_Serv Time_Service_Clerk Time_Service_Server Trading_Service CosEC_Factory_Idl CosEC_Factory_Client CosEC_Factory_Server CosEC_RtEC_Based_lib CosEC_RtEC_Based_bin CosEC_RtEC_Based_Tests_Basic_Client CosEC_RtEC_Based_Mult_Cons CosEC_RtEC_Based_Mult_Supp CosEC_Simple_Consumer CosEC_Simple_Service CosEC_Simple_Supplier CosEC_TypedSimple_Consumer CosEC_TypedSimple_Supplier RolyPoly_Idl RolyPoly_Client RolyPoly_Server Advanced_IDL Advanced_Client Advanced_Server Advanced_Manager ImR_Combined_Service_IDL ImR_Combined_Service_Controller ImR_Combined_Service ImR_Combined_Service_Test ImR_Combined_Service_TestServer ImR_Combined_Service_DynamicServer LoadBalancing_Idl LoadBalancing_Server LoadBalancing_Client Log_Basic_Client Log_Event_Consumer Log_Event_Supplier Log_Notify_Consumer Log_Notify_Supplier Log_RTEvent_Consumer Log_RTEvent_Supplier Gate Agent SpaceCraft Notify_Filter RT_Notification NotifyTests_Lib Notify_Lanes_Consumer Notify_Lanes_Supplier Monitor_Idl TAO_Monitor CosNotification_MC mc_monitor_example Notify_Subscribe Notify_ThreadPool_Supplier Notify_ThreadPool_Consumer ORT_Idl ORT_Gateway ORT_Server ORT_Client RtEC_IIOPGateway RtEC_IIOPGateway_Consumer RtEC_IIOPGateway_EC RtEC_IIOPGateway_Supplier RTKokyuEvent RtECKokyu RtEC_MCast RtEC_Schedule RtEC_Simple_Consumer RtEC_Simple_Service RtEC_Simple_Supplier Security_Send_File_Idl Security_Send_File_Server Security_Send_File_Client CosProperty_IDL CosProperty CosProperty_Skel CosProperty_Serv AV CosNotification_MC_Ext CosNotification_Persist HTIOP RTCORBAEvent LoadBalancing_Performance_IDL LoadBalancing_Performance_Client LoadBalancing_Performance_Server RTEC_Perf Colocated_Roundtrip Federated_Roundtrip_Client Federated_Roundtrip_Server RTCORBA_Baseline_IDL RTCORBA_Baseline_Server RTCORBA_Baseline_Client RTCORBA_Callback_IDL RTCORBA_Callback_Client RTCORBA_Callback_Server Roundtrip_RTEvent_Client Roundtrip_RTEvent_Server TCP_Baseline_Client TCP_Baseline_Server AVS_Asynch_Three_Stage_Send AVS_Asynch_Three_Stage_Dist AVS_Asynch_Three_Stage_Recv AVS_Bidirectional_Flows_Recv AVS_Bidirectional_Flows_Send AVS_Component_Switching_Recv AVS_Component_Switching_Dist AVS_Component_Switching_Send AVS_Full_Profile_Ftp AVS_Full_Profile_Server AVS_Latency_Cntl AVS_Latency_Ping AVS_Latency_Pong AVS_Modify_QoS_Recv AVS_Modify_QoS_Send AVS_Multicast_Ftp AVS_Multicast_Server AVS_Multicast_Full_Profile_Ftp AVS_Multicast_Full_Profile_Server AVS_Multiple_Flows_Recv AVS_Multiple_Flows_Send AVS_Pluggable_Ftp AVS_Pluggable_Server AVS_Pluggable_Flow_Protocol_Recv AVS_Pluggable_Flow_Protocol_Send AVS_Pluggable_Flow_Protocol_Ts AVS_Simple_Three_Stage_Dist AVS_Simple_Three_Stage_Recv AVS_Simple_Three_Stage_Send AVS_Simple_Two_Stage_Recv AVS_Simple_Two_Stage_Send AVS_Simple_Two_Stage_With_QoS_Recv AVS_Simple_Two_Stage_With_QoS_Send BiDirCORBALOC_Server Bug_1334_client Bug_1393_Regression_Client Bug_1395_Regression_IDL Bug_1395_Regression_Client Bug_1395_Regression_Server Bug_1630_testclient Bug_2074_Regression_Test Bug_2112_Regression_Client Bug_2137_Regression_Client Bug_2247_Regression_Idl Bug_2247_Regression_Server Bug_2247_Regression_Manager Bug_2248_Regression_Idl Bug_2248_Regression_Server Bug_2248_Regression_Client Bug_2285_Regression_IDL Bug_2285_Regression_Server2 Bug_2285_Regression_Client Bug_2285_Regression_Client2 Bug_2285_Regression_Server Bug_2287_Regression_IDL Bug_2287_Regression_Client Bug_2287_Regression_Server Bug_2316_Regression_IDL Bug_2316_Regression_Client Bug_2316_Regression_Server Bug_2377_Regression_Test Bug_2615_Regression_IDL Bug_2615_Regression_Server Bug_2615_Regression_Client Bug_2709_Regression_Idl Bug_2709_Regression_Client Bug_2709_Regression_Server Bug_2800_Regression_Idl Bug_2800_Regression_Server Bug_2800_Regression_Client Bug_2800_Regression_NsMain DiffServPolicy_Idl DiffServPolicy Bug_2925_Regression_IDL Bug_2925_Regression_Server Bug_2925_Regression_Client Bug_3215_Regression_IDL Bug_3215_Regression_Client Bug_3215_Regression_Server Bug_3216_Regression_IDL Bug_3216_Regression_Server Bug_3216_Regression_Client Bug_3387_Regression_Server Bug_3387_Regression_Client Bug_3387_Regression_Consumer Bug_3418_Regression Bug_3444_Regression_IDL Bug_3444_Regression_Server Bug_3444_Regression_Client Bug_3486_Regression_Lib Bug_3486_Regression_Server Bug_3598b_Regression_Idl Bug_3598b_Regression_Client Bug_3598b_Regression_Server Bug_3673_Regression_Idl Bug_3673_Regression_Server Bug_3673_Regression_Client Bug_3673_Regression_NsMain Bug_3891_Regression COIOP_Naming_Test_Idl COIOP_Naming_Test CC_client CosEvent_Test_Lib CosEvent_Basic_Disconnect CosEvent_Basic_MT_Disconnect CosEvent_Basic_Pull_Push_Event CosEvent_Basic_Push_Event CosEvent_Basic_Random CosEvent_Basic_Shutdown Timeout_Timeout EC_Custom_Marshal_IDL ECM_Consumer ECM_Supplier EC_MT_Mcast EC_Mcast EC_Multiple ECT_Throughput ECT_Consumer ECT_Supplier Event_Test_Lib Event_Basic_Atomic_Reconnect Event_Basic_BCast Event_Basic_Bitmask Event_Basic_Complex Event_Basic_Control Event_Basic_Disconnect Event_Basic_Gateway Event_Basic_MT_Disconnect Event_Basic_Negation Event_Basic_Observer Event_Basic_Random Event_Basic_Reconnect Event_Basic_Shutdown Event_Basic_Timeout Event_Basic_Wildcard AddrServer_Client AddrServer_Server ECMcastTests_lib Complex_Consumer Complex_Gateway_Ec Complex_Supplier RTEC_MCast_Federated_Consumer RTEC_MCast_Federated_Supplier Simple_Consumer Simple_Gateway_Ec Simple_Supplier Two_Way_Application Two_Way_Gateway_Ec Event_Performance_Connect Event_Performance_Inversion Event_Performance_Latency Event_Performance_Latency_Server Event_Performance_Throughput TFTest RtEC_UDP_Idl RtEC_UDP_Sender RtEC_UDP_Receiver FT_App_Analyzer FT_App_Idl FT_App_Client FT_App_Creator FT_App_FactoryRegistry FT_App_FaultConsumer FT_App_Notifier FT_App_RMController FT_App_Server GroupRef_Manipulation_Idl GroupRef_Manipulation_Client GroupRef_Manipulation_Server FaultTolerance_IOGR_Idl FaultTolerance_IOGR_Manager FaultTolerance_IOGR_Server IOGRTest FtRtEvent_Consumer FtRtEvent_Supplier HTIOP_AMI_Idl HTIOP_AMI_Client HTIOP_AMI_Server HTIOP_AMI_Simple_Client HTIOP_BiDirectional_Idl HTIOP_BiDirectional_Server HTIOP_BiDirectional_Client HTIOP_Hello_Idl HTIOP_Hello_Server HTIOP_Hello_Client IOR_MCast_Idl IOR_MCast_Server IOR_MCast_Client Bug_2604_Idl Bug_2604_Server Bug_2604_Client Bug_689_Regression_Idl Bug_689_Regression_Client Bug_689_Regression_Server airplane_idl airplane_client airplane_server nestea_idl nestea_server nestea_client ImplRepo_NameService ReconnectServer_Idl ReconnectServer_Client ReconnectServer_ServerB ReconnectServer_ServerA scaletest_idl scaletest_client scaletest_server IFR_Application_Test_Client IFR_Application_Test_Server Bug_2962_Regression Bug_3155_Regression_Test_Idl Bug_3174_Regression_Test_Idl Bug_3495_Regression_Client Bug_3495_Regression_Idl Bug_3495_Regression_Server IFR_IDL3_Test IFR_Inheritance_Test IFR_Self_Recursive_IDL_Idl IFR_Self_Recursive_IDL_Server IFR_Self_Recursive_IDL_Client IFR_IFR_Test Latency_Test IFR_Persistence_Test Union_Forward_Test_Client Interoperable_Naming Application_Controlled_Idl Application_Controlled_Server Application_Controlled_Client DeadMemberDetection_App_Ctrl_Idl DeadMemberDetection_App_Ctrl_Client DeadMemberDetection_App_Ctrl_Server DeadMemberDetection_Inf_Ctrl_Idl DeadMemberDetection_Inf_Ctrl_Factory DeadMemberDetection_Inf_Ctrl_Client DeadMemberDetection_Inf_Ctrl_Server Infrastructure_Controlled_Idl Infrastructure_Controlled_Client Infrastructure_Controlled_Server Manage_Object_Group_Server LoadMonitorCPU_Client Log_Basic_Log_Test McastHello_Idl McastHello_Client McastHello_Server Basic_Notify_AdminProperties Basic_Notify_ConnectDisconnect Basic_Notify_Events Basic_Notify_Filter Basic_Notify_IdAssignment Basic_Notify_LifeCycle Basic_Notify_MultiTypes Basic_Notify_Sequence Basic_Notify_Simple Basic_Notify_Updates Blocking_Idl Blocking_Ntf_Struct_Cons Blocking_Ntf_Struct_Supp Bug_1385_Regression_Idl Bug_1385_Regression_Ntf_Struct_Supp Bug_1385_Regression_Ntf_Struct_Cons Bug_1884_Regression_Consumer Bug_1884_Regression_Filter Bug_1884_Regression_Supplier Bug_2415_Regression_Idl Bug_2415_Regression_Consumer Bug_2415_Regression_Supplier Bug_2561_Regression_Idl Bug_2561_Regression_Ntf_Cons Bug_2561_Regression_Ntf_Supp Bug_2926_Regression_Lib Bug_2926_Regression_Server Bug_3252_Regression_Lib Bug_3252_Regression_Server Bug_3646a_Regression_Ntf_Cons Bug_3646b_Regression_Lib Bug_3646b_Regression_Server Bug_3646c_Regression_Lib Bug_3646c_Regression_Ntf_Cons Bug_3646c_Regression_Server Bug_3646d_Regression_Lib Bug_3646d_Regression_Server Bug_3663_Regression_Lib Bug_3663_Regression_Server Bug_3688_Regression_Consumer Bug_3688_Regression_Supplier Bug_3688b_Lib Bug_3688b_Server Notify_Test_Destroy Discarding_Idl Discarding_Ntf_Struct_Supp Discarding_Ntf_Seq_Cons Discarding_Ntf_Seq_Supp Discarding_Ntf_Struct_Cons Notify_Test_Driver MonitorControl_Idl MonitorControl_Monitor MonitorControl_Consumer MonitorControl_Supplier MT_Dispatching_Idl MT_Dispatching_Ntf_Struct_Cons MT_Dispatching_Ntf_Struct_Supp Ordering_Idl Ordering_Ntf_Seq_Cons Ordering_Ntf_Seq_Supp Ordering_Ntf_Struct_Cons Ordering_Ntf_Struct_Supp consumer supplier Persistent_POA_Notify_Supplier PlugTop_Lib PlugTop RT_Notify_lib Reconnecting_Consumer Reconnecting_Supplier Seq_Multi_ETCL_Filter_Idl Seq_Multi_ETCL_Filter_Ntf_Seq_Cons Seq_Multi_ETCL_Filter_Ntf_Seq_Supp Seq_Multi_Filter_Idl Seq_Multi_Filter_Ntf_Seq_Cons Seq_Multi_Filter_Ntf_Seq_Supp Struct_Filter_Idl Struct_Filter_Ntf_Struct_Supp Struct_Filter_Ntf_Struct_Cons Struct_Multi_Filter_Idl Struct_Multi_Filter_Ntf_Struct_Supp Struct_Multi_Filter_Ntf_Struct_Cons TAO_RT_NotifyTests_Filter Tao__Timeout_Idl Timeout_Consumer Timeout_Supplier Validate_Client_Proxy_Dummy XML_Persistence Filter_Idl Filter_Notify_Perf_Sequence_Consumer Filter_Ntf_Perf_Seq_Supp Filter_Ntf_Perf_Struct_Cons Filter_Ntf_Perf_Struct_Supp RedGreen_Ntf_Perf_RedGreen Throughput_Ntf_Perf_Throughput Property_Client Property_Server Redundant_Naming_Client Sched Sched_Conf Secure_BiDir_Idl Secure_BiDir_SSL_Server Secure_BiDir_SSL_Client Big_Request_Idl Big_Request_Security_Server Big_Request_Security_Client Bug_1107_Regression_Idl Bug_1107_Regression_Security_Client Bug_1107_Regression_Security_Server Bug_2908_Regression_Idl Bug_2908_Regression_Client Bug_2908_Regression_Server Callback_Idl Callback_Security_Client Callback_Security_Server Security_Crash_Test_Idl Security_Crash_Test_Client Security_Crash_Test_Server EndpointPolicy_Core_Idl EndpointPolicy EndpointPolicy_Test InsecureReferences_Test MT_BiDir_SSL_Idl MT_BiDir_SSL_Client MT_BiDir_SSL_Server MT_IIOP_SSL_Idl MT_IIOP_SSL_Security_Client MT_IIOP_SSL_Security_Server MT_SSLIOP_Idl MT_SSLIOP_Security_Client MT_SSLIOP_Security_Server Null_Cipher_Idl Null_Cipher_Security_Server Null_Cipher_Security_Client Secure_Invocation_Idl Secure_Invocation_Security_Server Secure_Invocation_Security_Client mixed_security_idl mixed_security_security_server mixed_security_security_client Ssliop_CSD_Idl Ssliop_CSD_Client Ssliop_CSD_Server Corbaloc_Ssliop_Client Simple_Naming_Client Time_Orbsvcs_Client Trading_Test_Lib Trading_Colocated_Test Trading_Export_Test Trading_Import_Test ior_corbaname_idl ior_corbaname_client ior_corbaname_server tests_svc_loader Control MonitorControlExt MonitorManager_Client MonitorManager_Server NotificationServiceMonitor Statistic Statistic_Registry Interpreter Anyop csd_pt_testinf csd_pt_testservant csd_test_client csd_test_server Callback_Perf_IDL Callback_Server Callback_Client IDL_Cubit_IDL IDL_Cubit_Collocation IDL_Cubit_Server DII_Cubit_Client IDL_Cubit_Client MT_Cubit_IDL MT_Cubit_Server MT_Cubit_Client Single_Threaded_AMH_Latency_Idl Single_Threaded_AMH_Latency_Server Single_Threaded_AMH_Latency_Client AMI_Latency_Idl AMI_Latency_Server AMI_Latency_Client Latency_Collocation DII_Latency_Idl DII_Latency_Client DII_Latency_Server DSI_Latency_Idl DSI_Latency_Client DSI_Latency_Server Deferred_Latency_Idl Deferred_Latency_Client Deferred_Latency_Server Single_Threaded_Latency_Idl Single_Threaded_Latency_Client Single_Threaded_Latency_Server Thread_Per_Connection_Latency_Idl Thread_Per_Connection_Latency_Client Thread_Per_Connection_Latency_Server Thread_Pool_Latency_Idl Thread_Pool_Latency_Client Thread_Pool_Latency_Server Memory_IORsize_Idl Memory_IORsize_Server Memory_IORsize_Client Memory_Growth_Idl Memory_Growth_Client Memory_Growth_Server Create_Reference Demux_Poa_Idl Demux_Poa_Client Demux_Poa_Server Implicit_Activation_Idl Implicit_Activation_Server Implicit_Activation_Client Implicit_Activation_Collocated registration Pluggable_Idl Pluggable_Client Pluggable_Server Protocols_IDL Protocols_Distributor Protocols_Receiver Protocols_Sender RTCORBA_Common ORB_Per_Priority_Client ORB_Per_Priority_Server Single_Endpoint_Client Single_Endpoint_Server Reliable_Oneways_Idl_RT Reliable_Oneways_Server_RT Reliable_Oneways_Client_RT Thread_Pool_RTCorba_Idl Thread_Pool_RTCorba_Client Thread_Pool_RTCorba_Server Single_Threaded_AMH_Sequence_Idl Single_Threaded_AMH_Sequence_Server Single_Threaded_AMH_Sequence_Client ami_sequence_idl ami_sequence_client ami_sequence_server DII_Sequence_Idl DII_Sequence_Server DII_Sequence_Client DSI_Idl DSI_Sequence_Client DSI_Sequence_Server Deferred_Sequence_Idl Deferred_Sequence_Server Deferred_Sequence_Client Sequence_Ops_Time_Idl Sequence_Ops_Time_Test Single_Threaded_Sequence_Idl Single_Threaded_Sequence_Server Single_Threaded_Sequence_Client Thread_Per_Conn_Sequence_Idl Thread_Per_Conn_Sequence_Client Thread_Per_Conn_Sequence_Server Thread_Pool_Sequence_Idl Thread_Pool_Sequence_Server Thread_Pool_Sequence_Client Throughput_Idl Throughput_Server Throughput_Client Compression_Idl Compression RLECompressor TAO_QtResource TAO_TkResource TC_Idl TC TC_IIOP_Idl TC_IIOP TAO_XtResource ZIOP_Core_Idl ZIOP AMH_Exceptions_Idl AMH_Exceptions_Server AMH_Exceptions_Client AMH_Oneway_Idl AMH_Oneway_Client AMH_Oneway_Server AMI_Idl AMI_Server AMI_Client AMI_Simple_Client AMI_Buffering_Idl AMI_Buffering_Client AMI_Buffering_Admin AMI_Buffering_Server AMI_Timeouts_Idl AMI_Timeouts_Server AMI_Timeouts_Client Abstract_Interface_Idl Abstract_Interface_Client Abstract_Interface_Server alt_mapping_idl Alt_Mapping_Client Alt_Mapping_Server RecursiveHello_Idl RecursiveHello_Server RecursiveHello_Client BiDirectional_Idl BiDirectional_Client BiDirectional_Server BiDir_DelayedUpcall_Idl BiDir_DelayedUpcall_Client BiDir_DelayedUpcall_Server destroy BiDir_NestedUpcall_Idl BiDir_NestedUpcall_Client BiDir_NestedUpcall_Server Big_AMI_Idl Big_AMI_Server Big_AMI_Client Big_Oneways_Idl Big_Oneways_Client Big_Oneways_Server Big_Reply_Idl Big_Reply_Client Big_Reply_Server Big_Request_Muxing_Idl Big_Request_Muxing_Server Big_Request_Muxing_Client Big_Twoways_Idl Big_Twoways_Client Big_Twoways_Server Blocking_Sync_None_Idl Blocking_Sync_None_Server Blocking_Sync_None_Client Bug_1020_Basic_Regression_Idl Bug_1020_Basic_Regression_Server Bug_1020_Basic_Regression_Client Bug_1020_Regression_Idl Bug_1020_Regression_Client Bug_1020_Regression_Server Bug_1254_Regression_Idl Bug_1254_Regression_Client Bug_1254_Regression_Server Bug_1269_Regression_Idl Bug_1269_Regression_Server Bug_1269_Regression_Client Bug_1270_Regression_Idl Bug_1270_Regression_Server Bug_1270_Regression_Client Bug_1270_Regression_Shutdown Bug_1330_Regression_Idl Bug_1330_Regression_Server Bug_1330_Regression_Client Bug_1361_Regression_Idl Bug_1361_Regression_Client Bug_1361_Regression_Server Bug_1361_Regression_Shutdown Bug_1383_Regression_Idl Bug_1383_Regression_Server Bug_1383_Regression_Client Bug_1476_Regression_Idl Bug_1476_Regression_Server Bug_1476_Regression_Client Bug_1476_Test_Client Bug_1482_Regression_Idl Bug_1482_Regression_Server Bug_1482_Regression_Client Bug_1495_Idl Bug_1495_Client Bug_1495_Server bug_1535_regression Bug_1551_Regression_Idl Bug_1551_Regression_Client Bug_1551_Regression_Server Bug_1568_Regression_Idl Bug_1568_Regression_Server Bug_1568_Regression_Client Bug_1627_Regression_Idl Bug_1627_Regression_Client Bug_1627_Regression_Server Bug_1635_Client bug_1636_testclient Bug_1639_testclient Bug_1670_Regression_Idl Bug_1670_Regression_Client Bug_1670_Regression_Server Bug_1676_Regression_Idl Bug_1676_Regression_Server Bug_1676_Regression_Client Bug_1693_Test_Client Bug_1812_Regession_Test Bug_1813_Regession_Test Bug_1869_Regression_Idl Bug_1869_Regression_Server Bug_1869_Regression_Client test Bug_2084_Regression_Server Bug_2085_Regression tao67_test Bug_2122_Regression_Idl Bug_2122_Regression_Test Bug_2124_Regression_Test Bug_2126_Regression_Test Bug_2134_Regression_Test Bug_2144_Regression_Client Bug_2174_Regression_Idl Bug_2174_Regression_Client Bug_2174_Regression_Server Bug_2183_Regression_Idl Bug_2183_Regression_Server Bug_2183_Regression_Client Bug_2186_Regression_Idl Bug_2186_Regression_Server Bug_2186_Regression_Client broken_idl Broken_Client Broken_Server Bug_2201_Regression_Test Bug_2222_Regression_Test Bug_2234_Regression_Idl Bug_2234_Regression_Client Bug_2234_Regression_Server Bug_2241_Regression Bug_2243_Regression Bug_2289_Regression_Idl Bug_2289_Regression_Client Bug_2289_Regression_Server Bug_2319_Regression_Server Bug_2328_Regression_Idl Bug_2328_Regression_Server Bug_2328_Regression_Client Bug_2345_Regression_Server Bug_2349_Regression_Idl Bug_2349_Regression_Server Bug_2349_Regression_Client Bug_2356_Regression_Idl Bug_2356_Regression_Simple_Client Bug_2356_Regression_Server Bug_2375_Regression_Test Bug_2399_Regression_Test Bug_2417_Regression_Idl Bug_2417_Regression_Client Bug_2417_Regression_Server Bug_2419_Regression_Client Bug_2424_Regression_Client Bug_2429_Regression_Idl Bug_2429_Regression_Client Bug_2429_Regression_Server Bug_2494_Regression_Idl Bug_2494_Regression_Server Bug_2494_Regression_Client Bug_2503_Regression_Idl Bug_2503_Regression_Server Bug_2503_Regression_Client Bug_2542_Regression Bug_2543_Regression Bug_2549_Regression_Test Bug_2560_Regression_Idl Bug_2560_Regression_Server Bug_2560_Regression_Client Bug_2593_Regression_Idl Bug_2593_Regression_Server Bug_2593_Regression_Client Bug_2595_Regression_Idl Bug_2595_Regression_Server Bug_2595_Regression_Client Bug_2654_Regression_Idl Bug_2654_Regression_Server Bug_2654_Regression_Client Bug_2669_Regression_Test Bug_2677_Regression Bug_2677_Regression_Server Bug_2678_Regression_Idl Bug_2678_Regression_Client Bug_2678_Regression_Server IORTable_Idl IORTable_Client IORTable_Server CloseConnection_Idl CloseConnection_Client Bug_2734_Regression_Idl Bug_2734_Regression_Server Bug_2734_Regression_Client Bug_2735_Regression Bug_2768_Regression_Idl Bug_2768_Regression_Server Bug_2768_Regression_Client Bug_2791_Regression_Client Bug_2792_Regression_Client Bug_2795_Regression_Client Bug_2804_Regression_Idl Bug_2804_Regression_Server Bug_2804_Regression_Client Bug_2805_Regression_Idl Bug_2805_Regression_Client Bug_2809_Regression_Server Bug_2826_Regression Bug_2844_Regression_Idl Bug_2844_Regression_Server Bug_2844_Regression_Client Bug_2869_Regression_Client Bug_2909_Regression_Idl Bug_2909_Regression_Client Bug_2918_Regression_Idl Bug_2918_Regression_Client Bug_2918_Regression_Server Bug_2935_Regression_IDL Bug_2935_Regression_Source Bug_2935_Regression_Middle Bug_2935_Regression_Sink bug2936_exe bug2936_lib Bug_2953_Regression_Idl Bug_2953_Regression_Server Bug_2953_Regression_Client Bug_2966_Regression_Idl Bug_2966_Regression_Server Bug_2966_Regression_Client Bug_3000_Regression_Idl Bug_3000_Regression_Server Bug_3000_Regression_Client Bug_3042_Test_Client Bug_3068_Regression_Server Bug_3068_Regression_Client Bug_3108_Regression_Idl Bug_3108_Regression_Client Bug_3108_Regression_Server Bug_3163_Regression_Idl Bug_3163_Regression_Client Bug_3163_Regression_Server Bug_3171_Regression_Server Bug_3198_Regression Bug_3251_Regression_Lib Bug_3251_Regression_Server Bug_3276_Regression_Idl Bug_3276_Regression_Client Bug_3276_Regression_Manager Bug_3299_Regression_Idl Bug_3299_Regression_Server Bug_3299_Regression_Client Bug_3311_Regression_Test Bug_3315_Regression Bug_3321_Regression Bug3333_Idl Bug3333_Server Bug3333_Client Bug_3430_Regression_Idl Bug_3430_Regression_Server Bug_3430_Regression_Client Bug_3470_Regression Bug_3471_Regression_Idl Bug_3471_Regression_Client Bug_3471_Regression_Server Bug_3479_Regression_Idl Bug_3479_Regression_Client Bug_3479_Regression_Server Bug_3481_Regression Bug_3499_Regression_ACE_DLL_Service Bug3499Reg_ACE_DLL_TAO_Service Bug_3499_Regression Bug_3506_Regression_Idl Bug_3506_Regression_Server Bug_3506_Regression_Client Bug_3513_Regression_Test Bug_3514_Regression_Test Bug_3524_Regression_IDL Bug_3524_Regression_Server Bug_3524_Regression_Client Bug_3531_Regression_Idl Bug_3531_Regression_Client Bug_3531_Regression_Server Bug_3531b_Regression_Server Bug_3542_Lib Bug_3542_Server Bug_3543_Regression_Idl Bug_3543_Regression_Server Bug_3543_Regression_Master Bug_3547_Regression_Idl Bug_3547_Regression_Client Bug_3547_Regression_Server Bug_3548_Regression_Idl Bug_3548_Regression_Client Bug_3552_Regression_IDL Bug_3552_Regression_CDRTest Bug_3553_Regression_Idl Bug_3553_Regression_Client Bug_3553_Regression_Server Bug_3558_Regression_Idl Bug_3558_Regression_Server Bug_3558_Regression_Client Bug_3559_Regression_Test_Server Bug_3565_Regression_Test_Server Bug_3566_Regression_Test_Server Bug_3567_Regression_Idl Bug_3567_Regression_Server Bug_3567_Regression_Client Bug_3574_Regression Bug_3575_Regression Bug_3597_Regression_Server Bug_3598a_Regression_Idl Bug_3598a_Regression_Server Bug_3598a_Regression_Client Bug_3630_Regression_Server Bug_3632_Regression_Idl Bug_3632_Regression_Test Bug_3636_Regression_Idl Bug_3636_Regression_Server Bug_3636_Regression_Client Bug_3647_Regression_Idl Bug_3647_Regression_Backend Bug_3647_Regression_Client Bug_3647_Regression_Middle Bug_3672_Regression_Idl Bug_3672_Regression_Client Bug_3672_Regression_Server Bug_3674_Regression Bug_3676_Regression_Idl Bug_3676_Regression_Server Bug_3676_Regression_Client Bug_3683_Regression_IDL Bug_3683_Regression_Client Bug_3683_Regression_Server Bug_3695_Regression Bug_3701_Regression_Client Bug_3746_Regression_Idl Bug_3746_Regression_Client Bug_3746_Regression_Server Bug_3748_Regression_Idl Bug_3748_Regression_Server Bug_3748_Regression_Client Bug_3755_Ext_Regression_Server Bug_3755_Regression_Server Bug_3766_Regression_Idl Bug_3766_Regression_Client Bug_3766_Regression_Server Bug_3768_Test_Idl Bug_3768_Test_Client Bug_3768_Test_Server Bug_3790_Regression_Idl Bug_3790_Regression_Server2 Bug_3790_Regression_Server Bug_3801_Regression_Idl Bug_3801_Regression_Server Bug_3801_Regression_Simple_Client Bug_3821_Regression_Idl Bug_3821_Regression_Test Bug_3826_Regression_Server Bug_3827_Regression_IDL Bug_3827_Regression_Test Bug_3837_Regression_Idl Bug_3837_Regression_Client Bug_3837_Regression_Server Bug_3853_Regression_Idl Bug_3853_Regression_Server Bug_3853_Regression_Client Bug_3896_Regression_Idl Bug_3896_Regression_Server Bug_3896_Regression_Client Bug_3919_Regression_Idl Bug_3919_Regression_Server Bug_3919_Regression_Client Bug_3926_Regression_Idl Bug_3926_Regression_Client Bug_3926_Regression_Server Bug_3941_Regression_Idl Bug_3941_Regression_Test Bug_3942_Regression Bug_3953_Regression__Idl Bug_3953_Regression__Server Bug_3953_Regression__Client Bug_3954_Regression_Idl Bug_3954_Regression_Client Bug_3954_Regression_Server Bug_933_Regression_Idl Bug_933_Regression_Client Bug_933_Regression_Server CDR_Alignment CDR_Allocator CDR_Basic_Types CDR_Growth CDR_Octet_Sequence CDR_Tc COIOP_Tests_Idl COIOP_Simple_Test COIOP_Test CORBA_e_Implicit_Activation CSD_Collocation CSD_TP_Test_Lib csd_tp_foo_b_lib CSD_TP_Broken_Client CSD_TP_Broken_Server csd_tp_foo_a_lib csd_tp_foo_c_lib CSD_TP_Test_1_Client CSD_TP_Test_1_Server CSD_TP_Test_2_Client CSD_TP_Test_2_Server CSD_TP_Test_3_Client CSD_TP_Test_3_Server CSD_TP_Test_4_Client CSD_TP_Test_4_Server CSD_TP_Test_Dynamic_Idl CSD_TP_Test_Dynamic_Server CSD_TP_Test_Dynamic_Client CSD_TP_Test_Static_Server CSD_TP_Test_Static_Client Cache_Growth_Test_Idl Cache_Growth_Test_Client Cache_Growth_Test_Server CallbackTest_Idl CallbackTest_Client CallbackTest_Server Client_Leaks_Idl Client_Leaks_Client Client_Leaks_Child Client_Leaks_Server CodeSets_libs_IMB1047_ISO8859 CodeSets_Libs_UCS4_UTF16 UTF16_UCS2_Translator CodeSets_Simple_Idl CodeSets_Simple_Server CodeSets_Simple_Client Codec_Client Collocated_Best_Direct Collocated_Best_NoColl Collocated_Best_ThruP Collocated_DIF Collocated_Forwarding_Idl Collocated_Forwarding_Server Collocated_NoColl Collocated_ThruP_Sp Coll_ThruP_Sp_Gd Collocation_Idl Collocation_Test_Stub Collocation_Diamond Collocation_Server CollocationLockup_Idl CollocationLockup CollocationLockup_SimpleNamingService Collocation_Excep_Test Collocation_Oneway_Tests Collocation_Opportunities Collocation_Tests Compression_Test_Rle_Server Connect_Strategy_Test_Idl Connect_Strategy_Test_Server Connect_Strategy_Test_Client Connection_Failure_Client Connection_Purging_Idl Connection_Purging_Server Connection_Purging_Client Connection_Timeout_Client Crash_On_Write_Idl Crash_On_Write_Client Crash_On_Write_Server Crashed_Callback_Idl Crashed_Callback_Server Crashed_Callback_Client DII_AMI_Forward_Idl DII_AMI_Forward_Client DII_AMI_Forward_Server DII_Collocation_Tests_Oneway DII_Collocation_Tests_Twoway Basic_IDL Basic_Client Basic_Server DLL_ORB_Idl DLL_ORB_Client DLL_ORB_Server DLL_ORB_Test_Server_Module DLL_ORB_Test_Client_Module DSI_AMH_Idl DSI_AMH_Server DSI_AMH_Client DSI_AMI_Gateway_Idl DSI_AMI_Gateway_Client DSI_AMI_Gateway_Gateway DSI_AMI_Gateway_Server DSI_Gateway_Idl DSI_Gateway_Server DSI_Gateway_Client DSI_Gateway_Gateway diffserv_idl diffserv_client diffserv_server DynAny_Test_Basic dynunion_test_IDL dynuniontest DynValue_Test_IDL DynValue_Test Explicit_Event_Loop_Idl Explicit_Event_Loop_Client Explicit_Event_Loop_Server Exposed_Policies_Idl Exposed_Policies_Server Exposed_Policies_Client FL_Cube_Client FL_Cube_Server Faults_Idl Faults_Client Faults_Middle Faults_Ping Faults_Pong Faults_Server File_IO_Idl File_IO_Server File_IO_Client ForwardOnceUponException_Idl ForwardOnceUponException_Client ForwardOnceUponException_Server ForwardUponObjectNotExist_Idl ForwardUponObjectNotExist_Client ForwardUponObjectNotExist_Server Forwarding_Idl Forwarding_Server Forwarding_Client PMB_With_Fragments HandleExhaustion_Idl HandleExhaustion_Server HandleExhaustion_Client Hang_Idl Hang_Server Hang_Client Hello_Idl Hello_Client Hello_Server ICMG_Any_Bug_Hello_IDL ICMG_Any_Bug_Hello_Server ICMG_Any_Bug_Hello_Client InheritedOp_Idl InheritedOp_Server InheritedOp_Client IDL_Test_IDL IDL_Test_DLL IDL_Test_Main IORManipulation_IORTest IORManip_Filter_Test_Server generate_ior list_interfaces IPV6_Hello_Idl IPV6_Hello_Server IPV6_Hello_Client InterOp_Naming_Idl InterOp_Naming_Client InterOp_Naming_Server Leader_Followers_Idl Leader_Followers_Server Leader_Followers_Client LongDoubleTest_Idl LongDoubleTest_Client LongDoubleTest_Server LongUpcalls_Idl LongUpcalls_Server LongUpcalls_Client LongUpcalls_AMI_Client LongUpcalls_AMI_Server MProfile_Idl MProfile_Server MProfile_Client MProfile_Connection_Timeout_Idl MProfile_Connection_Timeout_Client MProfile_Connection_Timeout_Server MProfile_Forwarding_Idl MProfile_Forwarding_Manager MProfile_Forwarding_Client MProfile_Forwarding_Server MT_BiDir_Idl MT_BiDir_Server MT_BiDir_Client MT_Client_Idl MT_Client_Client MT_Client_Server MT_NoUpcall_Idl MT_NoUpcall_Server MT_NoUpcall_Client MT_Server_Idl MT_Server_Server MT_Server_Client MT_Timeout_Idl MT_Timeout_Client MT_Timeout_Server MixedSyncASyncEvents_Idl MixedSyncASyncEvents_Exe marshal_buffer_idl marshal_buffer_client marshal_buffer_server Multiple_Idl Multiple_Client Multiple_Server Multiple_Inheritance_Idl Multiple_Inheritance_Server Multiple_Inheritance_Client Muxed_GIOP_Versions_Idl Muxed_GIOP_Versions_Client Muxed_GIOP_Versions_Server Muxing_Idl Muxing_Client Muxing_Server Native_Exceptions_Idl Native_Exceptions_Client Native_Exceptions_Server MT_Client_Test_Nested_Upcall_Idl MT_Client_Test_Nested_Upcall_Server MT_Client_Test_Nested_Upcall_Client Simple_Nested_Upcall_Idl Simple_Nested_Upcall_Server Simple_Nested_Upcall_Client TT_Nested_Upcall_Server_Idl TT_Nested_Upcall_Initiator TT_Nested_Upcall_Server_A TT_Nested_Upcall_Server_B Nested_Event_Loop_Idl Nested_Event_Loop_Client Nested_Event_Loop_Server Nested_Upcall_Crash_Idl Nested_Upcall_Crash_Server Nested_Upcall_Crash_Client Nested_Upcall_Crash_Scavenger No_Server_Connect_Test_Idl No_Server_Connect_Test_Server No_Server_Connect_Test_Client OBV_Any_Idl OBV_Any_Client OBV_Any_Server OBV_Forward_Collocated OBV_Factory_Idl OBV_Factory_Server OBV_Factory_Client OBV_Forward_Idl OBV_Forward_Client OBV_Forward_Server Indirection_IDL Indirection_Server Indirection_Client OBV_Simple_IDL OBV_Simple_Client OBV_Simple_Server OBV_TC_Alignment_Idl OBV_TC_Alignment_Server OBV_TC_Alignment_Client OBV_Truncatable_Idl OBV_Truncatable_Server OBV_Truncatable_Client valuebox_idl Valuebox_Client Valuebox_Server Bug_1459 DllOrb Bug_2612 Bug_3049 Bunch Separation Service_Config_Dependent_DLL Service_Dependency Shared Simple Two_DLL_ORB_Idl ORB_DLL_Server ORB_DLL_Client Two_DLL_ORB ORB_destroy ORB_init ORB_Init_Portspan_Server ORB_Shutdown_Server Test_ORT_IDL Test_ORT_Server Test_ORT_Client Object_Loader_Idl Object_Loader_Test Object_Loader_Driver Objref_Sequence_Test_Idl Objref_Sequence_Test_Client Objref_Sequence_Test_Server OctetSeq_Idl OctetSeq_Client OctetSeq_OctetSeq OctetSeq_Server Ondemand_Write_Idl Ondemand_Write_Client Ondemand_Write_Server Oneway_Buffering_Idl Oneway_Buffering_Server Oneway_Buffering_Admin Oneway_Buffering_Client Oneway_Scenarios_Idl Oneway_Scenarios_Oneway_Test test_idl Test_Client Test_Server Oneways_Invoking_Twoways_Idl Oneways_Invoking_Twoways_Server Oneways_Invoking_Twoways_Client Optimized_Connection_Idl Optimized_Connection_Client POA_Generic_Servant_Lib POA_Adapter_Activator_Server Bug_1592_Regression_Idl Bug_1592_Regression_Client Bug_1592_Regression_Server POA_Bug_2511_Regression POA_Current POA_DSI_IDL POA_DSI_Server POA_DSI_Client Deactivate_Object_Server POA_Default_Servant POA_Default_Servant_IDL POA_Default_Servant_Server POA_Default_Servant_Client EndpointPolicy_Idl EndpointPolicy_Client EndpointPolicy_Server POA_Etherealization POA_Excessive_Object_Deactivations Alt_Resource POA_Explicit_Activation_Server POA_FindPOA POA_Forwarding_IDL POA_Forwarding_Client POA_Forwarding_Server POA_Generic_Servant_Client POA_Identity POA_Loader_Server POA_MT_Servant_Locator POA_Nested_Non_Servant_Upcalls POA_NewPOA POA_Non_Servant_Upcalls POA_Object_Reactivation On_Demand_Act_D_Coll POA_On_Demand_Activation_Server POA_On_Demand_Loading_Server POA_POAManagerFactory POA_BiDir POA_POA_Destruction POA_IDL_Persistent_ID POA_Server_Persistent_ID POA_Client_Persistent_ID POA_Policies Reference_Counted_Servant_Server Reference_Counting_Server RootPOA_Server POA_Single_Threaded_POA POA_TIE_IDL POA_TIE_Client POA_TIE_Server POA_Wait_For_Completion Parallel_Connect_Strategy_Idl Parallel_Connect_Strategy_Server Parallel_Connect_Strategy_Client Param_Test_Idl Param_Test_Anyop Param_Test_Client Param_Test_Server Permanent_Forward_StubTest Policies_Manipulation PI_AMI_Idl PI_AMI_Client PI_AMI_Server AdvSlot_Idl AdvSlot_Client AdvSlot_Server AdvSlotDblCpy_Idl AdvSlotDblCpy_Client AdvSlotDblCpy_Server AdvSlotExt_Idl AdvSlotExt_Server AdvSlotExt_Client PI_Benchmark_Idl PI_Benchmark_Client PI_Benchmark_Server Bug_1559_Idl Bug_1559_Server Bug_1559_Client Bug_2088_Client Bug_2133_Idl Bug_2133_Client Bug_2133_Server Bug_2510_Regression_Idl Bug_2510_Regression_Server Bug_2510_Regression_Client Bug_3079_Idl Bug_3079_Server Bug_3079_Client Bug_3080_Idl Bug_3080_Client Bug_3080_Server PI_RTException_Idl PI_RTException_Server PI_RTException_Client PI_Dynamic_Collocated PI_Svc_Context_Manip_Collocated PI_Dynamic_Idl PI_Dynamic_Server PI_Dynamic_Client PI_ForwardRequest_Idl PI_ForwardRequest_Client PI_ForwardRequest_Server PI_IORInterceptor_Idl PI_IORInterceptor_Client PI_IORInterceptor_Server PI_ORB_Shutdown_Idl PI_ORB_Shutdown_Server PI_ORB_Shutdown_Client PI_PICurrent_Idl PI_PICurrent_Client PI_PICurrent_Server PI_PolicyFactory_Server PI_ProcMode_Collocated_Collocated PI_ProcMode_Remote_Idl PI_ProcMode_Remote_RemoteServer PI_ProcMode_Remote_RemoteClient Register_ORBInitializer_Client PI_Redirection_Idl PI_Redirection_Server PI_Redirection_Client Register_ORBInitializer_Server PI_Request_Interceptor_Flow_Idl PI_Request_Interceptor_Flow_Client PI_Request_Interceptor_Flow_Server PI_Svc_Context_Manip_Idl PI_Svc_Context_Manip_Client PI_Svc_Context_Manip_Server PI_Slot_Driver QtTests_Server QtTests_Client Queued_Message_Test AO_Multiple_ORBs RTCORBA_Banded_Conn_Idl RTCORBA_Banded_Conn_Server RTCORBA_Banded_Conn_Client Bug_3382_Regression_Server Bug_3382_Regression_Client Bug_3382_Regression_SimpleClient Bug_3643_Regression_Idl Bug_3643_Regression_Server Bug_3643_Regression_Client RTCORBA_Client_Propagated_Idl RTCORBA_Client_Propagated_Client RTCORBA_Client_Propagated_Server RTCORBA_Client_Protocol_Idl RTCORBA_Client_Protocol_Client RTCORBA_Client_Protocol_Server RTCORBA_Collocation_Server RTCORBA_Destroy_Thread_Pool_Server RTCORBA_Diffserv_Idl RTCORBA_Diffserv_Client RTCORBA_Diffserv_Server RT_Dynamic_Thread_Pool_Idl RT_Dynamic_Thread_Pool_Server RT_Dynamic_Thread_Pool_Client RTCORBA_Explicit_Binding_Idl RTCORBA_Explicit_Binding_Client RTCORBA_Explicit_Binding_Server RTCORBA_Linear_Priority_Idl RTCORBA_Linear_Priority_Client RTCORBA_Linear_Priority_Server RTCORBA_MT_Client_Proto_Prio_Idl RTCORBA_MT_Client_Proto_Prio_Server RTCORBA_MT_Client_Proto_Prio_Client ORB_init_RT RTCORBA_Persistent_IOR_Idl RTCORBA_Persistent_IOR_Server RTCORBA_Persistent_IOR_Client RTCORBA_Policies_Server RTCORBA_Policy_Combinations_Idl RTCORBA_Policy_Combinations_Client RTCORBA_Policy_Combinations_Server Priority_Inversion_With_Bands_Idl Priority_Inversion_With_Bands_Client Priority_Inversion_With_Bands_Server RTCORBA_Private_Connection_Idl RTCORBA_Private_Connection_Client RTCORBA_Private_Connection_Server PaE_Selection_Idl PaE_Selection_Client PaE_Selection_Server RTCORBA_RTMutex_Server RTCORBA_Server_Declared_Idl RTCORBA_Server_Declared_Client RTCORBA_Server_Declared_Server RTCORBA_Server_Protocol_Idl RTCORBA_Server_Protocol_Client RTCORBA_Server_Protocol_Server RTCORBA_Thread_Pool_Idl RTCORBA_Thread_Pool_Client RTCORBA_Thread_Pool_Server Current DT_Spawn Scheduler_Interceptor_Idl Scheduler_Interceptor_Server Scheduler_Interceptor_Client Thread_Cancel VoidData Reliable_Oneways_Idl Reliable_Oneways_Server Reliable_Oneways_Client Bounded_String StringSeq Unbounded_Objectref Unbounded_Value Sequence_Unit_Tests_B_Sequence_CDR Sequence_Unit_Tests_B_Obj_Ref_Seq Sequence_Unit_Tests_B_Simple_Types Sequence_Unit_Tests_B_String_Seq Sequence_Unit_Tests_B_Value_Sequence Sequence_Unit_Tests_Bounded_String Sequence_Unit_Tests_Obj_Ref_Seq_Elem Sequence_Unit_Tests_String_Seq_Elem Sequence_Unit_Tests_Test_Alloc_Traits Sequence_Unit_Tests_UB_Fwd_Ob_Ref_Seq Sequence_Unit_Tests_UB_Obj_Ref_Seq Sequence_Unit_Tests_UB_Oct_Seq_No_Cpy Sequence_Unit_Tests_UB_Octet_Sequence Sequence_Unit_Tests_UB_Sequence_CDR Sequence_Unit_Tests_UB_Simple_Types Sequence_Unit_Tests_UB_String_Seq Sequence_Unit_Tests_UB_Value_Sequence Sequence_Unit_Tests_Unbounded_Octet Sequence_Unit_Tests_Unbounded_String Servant_To_Reference_Server Server_Connection_Purging_Idl Server_Connection_Purging_Client Server_Connection_Purging_Server Server_Connection_Purging_ShutCl Server_Leaks_Idl Server_Leaks_Server Server_Leaks_Client Server_Port_Zero_Server Single_Read_Idl Single_Read_Client Single_Read_Server idl_one_gen stub_one idl_two_gen stub_two idl_three_gen stub_three Skel_Inheritance_Client skel_one skel_two skel_three Skel_Inheritance_Server SP_Benchmark_Idl SP_Benchmark_Client SP_Benchmark_Server SP_Collocation_Idl SP_Collocation_TestStubsLib SP_Collocation_DiamondLib SP_Collocation_Test Smart_Proxies_Idl Smart_Proxies_Server Smart_Proxies_Client SP_On_Demand_Idl SP_On_Demand_Server SP_On_Demand_Client SP_Policy_Idl SP_Policy_Client SP_Policy_Server dtor_idl Dtor_Client Dtor_Server Stack_Recursion_Idl Stack_Recursion_Client Stack_Recursion_Server Strategies_Idl Strategies_Client Strategies_Server Time_Policy_Exe Custom_Time_Policy_Lib Custom_Time_Policy_Exe Timed_Buffered_Oneways_Idl Timed_Buffered_Oneways_Server Timed_Buffered_Oneways_Client Timeout_Idl Timeout_Server Timeout_Client Current_Test_Lib_Idl Current_Test_Lib_Server Current_Test_Lib_Client Framework_Server Framework_Client IIOP_Server IIOP_Client TCM_Bug_3549_Regression TCM_Bug_3558_Regression Two_Objects_Idl Two_Objects_Client Two_Objects_Server typedef_string_array_idl typedef_string_array_server typedef_string_array_client UNKNOWN_Exception_Idl UNKNOWN_Exception_Server UNKNOWN_Exception_Client TestCompressor ZIOP_Idl objref_comparison_test catior_lib catior logWalker monitor_client nsadd nsdel nslist
REMAINING_TARGETS := $(filter-out all,$(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
$(REMAINING_TARGETS):
$(KEEP_GOING)@cd TAO_IDL && $(MAKE) -f GNUmakefile.TAO_IDL_FE $(@)
$(KEEP_GOING)@cd TAO_IDL && $(MAKE) -f GNUmakefile.TAO_IDL_BE $(@)
$(KEEP_GOING)@cd TAO_IDL && $(MAKE) -f GNUmakefile.TAO_IDL_EXE $(@)
$(KEEP_GOING)@cd tao/Messaging && $(MAKE) -f GNUmakefile.Messaging_Idl $(@)
$(KEEP_GOING)@cd tao/Valuetype && $(MAKE) -f GNUmakefile.Valuetype_Idl $(@)
$(KEEP_GOING)@cd tao/AnyTypeCode && $(MAKE) -f GNUmakefile.AnyTypeCode_Idl $(@)
$(KEEP_GOING)@cd tao/Codeset && $(MAKE) -f GNUmakefile.Codeset_Idl $(@)
$(KEEP_GOING)@cd tao && $(MAKE) -f GNUmakefile.TAO_Core_idl $(@)
$(KEEP_GOING)@cd tao && $(MAKE) -f GNUmakefile.TAO $(@)
$(KEEP_GOING)@cd tao/Codeset && $(MAKE) -f GNUmakefile.Codeset $(@)
$(KEEP_GOING)@cd tao/AnyTypeCode && $(MAKE) -f GNUmakefile.AnyTypeCode $(@)
$(KEEP_GOING)@cd tao/Valuetype && $(MAKE) -f GNUmakefile.Valuetype $(@)
$(KEEP_GOING)@cd tao/PI && $(MAKE) -f GNUmakefile.PI_Idl $(@)
$(KEEP_GOING)@cd tao/CodecFactory && $(MAKE) -f GNUmakefile.CodecFactory_Idl $(@)
$(KEEP_GOING)@cd tao/CodecFactory && $(MAKE) -f GNUmakefile.CodecFactory $(@)
$(KEEP_GOING)@cd tao/PI && $(MAKE) -f GNUmakefile.PI $(@)
$(KEEP_GOING)@cd tao/PortableServer && $(MAKE) -f GNUmakefile.PortableServer_Idl $(@)
$(KEEP_GOING)@cd tao/PortableServer && $(MAKE) -f GNUmakefile.PortableServer $(@)
$(KEEP_GOING)@cd tao/Messaging && $(MAKE) -f GNUmakefile.Messaging $(@)
$(KEEP_GOING)@cd DevGuideExamples/AMH && $(MAKE) -f GNUmakefile.AMH_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/AMH && $(MAKE) -f GNUmakefile.AMH_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/AMH && $(MAKE) -f GNUmakefile.AMH_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/AMH_AMI && $(MAKE) -f GNUmakefile.AMH_AMI_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/AMH_AMI && $(MAKE) -f GNUmakefile.AMH_AMI_Inner_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/AMH_AMI && $(MAKE) -f GNUmakefile.AMH_AMI_Middle_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/AMH_AMI && $(MAKE) -f GNUmakefile.AMH_AMI_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/BiDirectionalGIOP && $(MAKE) -f GNUmakefile.BiDirectionalGIOP_Idl $(@)
$(KEEP_GOING)@cd tao/BiDir_GIOP && $(MAKE) -f GNUmakefile.BiDir_GIOP_Idl $(@)
$(KEEP_GOING)@cd tao/BiDir_GIOP && $(MAKE) -f GNUmakefile.BiDir_GIOP $(@)
$(KEEP_GOING)@cd DevGuideExamples/BiDirectionalGIOP && $(MAKE) -f GNUmakefile.BiDirectionalGIOP_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/BiDirectionalGIOP && $(MAKE) -f GNUmakefile.BiDirectionalGIOP_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/GettingStarted && $(MAKE) -f GNUmakefile.GettingStarted_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/GettingStarted && $(MAKE) -f GNUmakefile.GettingStarted_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/GettingStarted && $(MAKE) -f GNUmakefile.GettingStarted_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/LocalObjects/Messenger && $(MAKE) -f GNUmakefile.LocalObject_Messenger_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/LocalObjects/Messenger && $(MAKE) -f GNUmakefile.LocalObject_Messenger_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/LocalObjects/ServantLocator && $(MAKE) -f GNUmakefile.ServantLocator_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/LocalObjects/ServantLocator && $(MAKE) -f GNUmakefile.ServantLocator_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/LocalObjects/ServantLocator && $(MAKE) -f GNUmakefile.ServantLocator_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/Messaging/AMIcallback && $(MAKE) -f GNUmakefile.AMIcallback_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/Messaging/AMIcallback && $(MAKE) -f GNUmakefile.AMIcallback_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/Messaging/RelativeRoundtripTimeout && $(MAKE) -f GNUmakefile.RelativeRoundtripTimeout_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/Messaging/RelativeRoundtripTimeout && $(MAKE) -f GNUmakefile.RelativeRoundtripTimeout_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/Messaging/RelativeRoundtripTimeout && $(MAKE) -f GNUmakefile.RelativeRoundtripTimeout_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/GracefulShutdown && $(MAKE) -f GNUmakefile.GracefulShutdown_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/GracefulShutdown && $(MAKE) -f GNUmakefile.Multithreading_GracefulShutdown_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/GracefulShutdown && $(MAKE) -f GNUmakefile.Multithreading_GracefulShutdown_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/Reactive && $(MAKE) -f GNUmakefile.Reactive_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/Reactive && $(MAKE) -f GNUmakefile.Multithreading_Reactive_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/Reactive && $(MAKE) -f GNUmakefile.Multithreading_Reactive_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/ThreadPerConnection && $(MAKE) -f GNUmakefile.ThreadPerConnection_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/ThreadPerConnection && $(MAKE) -f GNUmakefile.Multi_ThreadPerConnection_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/ThreadPerConnection && $(MAKE) -f GNUmakefile.Multi_ThreadPerConnection_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/ThreadPool && $(MAKE) -f GNUmakefile.ThreadPool_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/ThreadPool && $(MAKE) -f GNUmakefile.Multithreading_ThreadPool_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/Multithreading/ThreadPool && $(MAKE) -f GNUmakefile.Multithreading_ThreadPool_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/Auth && $(MAKE) -f GNUmakefile.Auth_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/Auth && $(MAKE) -f GNUmakefile.Auth_Client $(@)
$(KEEP_GOING)@cd tao/PI_Server && $(MAKE) -f GNUmakefile.PI_Server_Idl $(@)
$(KEEP_GOING)@cd tao/PI_Server && $(MAKE) -f GNUmakefile.PI_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/Auth && $(MAKE) -f GNUmakefile.Auth_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/IOR && $(MAKE) -f GNUmakefile.IOR_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/IOR && $(MAKE) -f GNUmakefile.IOR_Client $(@)
$(KEEP_GOING)@cd tao/IORInterceptor && $(MAKE) -f GNUmakefile.IORInterceptor_Idl $(@)
$(KEEP_GOING)@cd tao/ObjRefTemplate && $(MAKE) -f GNUmakefile.ObjRefTemplate_Idl $(@)
$(KEEP_GOING)@cd tao/ObjRefTemplate && $(MAKE) -f GNUmakefile.ObjRefTemplate $(@)
$(KEEP_GOING)@cd tao/IORInterceptor && $(MAKE) -f GNUmakefile.IORInterceptor $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/IOR && $(MAKE) -f GNUmakefile.IOR_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/PICurrent && $(MAKE) -f GNUmakefile.PICurrent_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/PICurrent && $(MAKE) -f GNUmakefile.PICurrent_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/PICurrent && $(MAKE) -f GNUmakefile.PICurrent_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/SimpleCodec && $(MAKE) -f GNUmakefile.SimpleCode_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/SimpleCodec && $(MAKE) -f GNUmakefile.SimpleCode_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/PortableInterceptors/SimpleCodec && $(MAKE) -f GNUmakefile.SimpleCode_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/RTCORBA && $(MAKE) -f GNUmakefile.RTCORBA_Idl $(@)
$(KEEP_GOING)@cd tao/RTCORBA && $(MAKE) -f GNUmakefile.RTCORBA_Core_Idl $(@)
$(KEEP_GOING)@cd tao/RTCORBA && $(MAKE) -f GNUmakefile.RTCORBA $(@)
$(KEEP_GOING)@cd DevGuideExamples/RTCORBA && $(MAKE) -f GNUmakefile.RTCORBA_Client $(@)
$(KEEP_GOING)@cd tao/RTPortableServer && $(MAKE) -f GNUmakefile.RTPortableServer_Idl $(@)
$(KEEP_GOING)@cd tao/RTPortableServer && $(MAKE) -f GNUmakefile.RTPortableServer $(@)
$(KEEP_GOING)@cd DevGuideExamples/RTCORBA && $(MAKE) -f GNUmakefile.RTCORBA_Server $(@)
$(KEEP_GOING)@cd tao/SmartProxies && $(MAKE) -f GNUmakefile.SmartProxies $(@)
$(KEEP_GOING)@cd DevGuideExamples/SmartProxies && $(MAKE) -f GNUmakefile.SmartProxies_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/SmartProxies && $(MAKE) -f GNUmakefile.SmartProxies_Logger $(@)
$(KEEP_GOING)@cd DevGuideExamples/SmartProxies && $(MAKE) -f GNUmakefile.SmartProxies_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/ValueTypes/Bank && $(MAKE) -f GNUmakefile.Bank_Dev_Bank_Idl $(@)
$(KEEP_GOING)@cd DevGuideExamples/ValueTypes/Bank && $(MAKE) -f GNUmakefile.Bank__Dev_Server $(@)
$(KEEP_GOING)@cd DevGuideExamples/ValueTypes/Bank && $(MAKE) -f GNUmakefile.Bank__Dev_Client $(@)
$(KEEP_GOING)@cd DevGuideExamples/ValueTypes/Messenger && $(MAKE) -f GNUmakefile.ValueTypes_DevGuideIDL $(@)
$(KEEP_GOING)@cd DevGuideExamples/ValueTypes/Messenger && $(MAKE) -f GNUmakefile.ValueTypes_DevGuideMsgClient $(@)
$(KEEP_GOING)@cd DevGuideExamples/ValueTypes/Messenger && $(MAKE) -f GNUmakefile.ValueTypes_DevGuideMsgServer $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/AMI && $(MAKE) -f GNUmakefile.Quoter_AMI_Idl $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/AMI && $(MAKE) -f GNUmakefile.Quoter_AMI_Client $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/AMI && $(MAKE) -f GNUmakefile.Quoter_AMI_Server $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Event_Service && $(MAKE) -f GNUmakefile.Quoter_Event_Service_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNaming_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNaming $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosEvent_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosEvent $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosEvent_Skel $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Event_Service && $(MAKE) -f GNUmakefile.Quoter_Event_Service_Server $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Event_Service && $(MAKE) -f GNUmakefile.Quoter_Event_Service_Client $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/idl && $(MAKE) -f GNUmakefile.Quoter_Idl_Lib $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Naming_Service && $(MAKE) -f GNUmakefile.Quoter_Naming_Service_Client $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Naming_Service && $(MAKE) -f GNUmakefile.Quoter_Naming_Service_Server $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/On_Demand_Activation && $(MAKE) -f GNUmakefile.Quoter_On_Demand_Activation_Idl $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/On_Demand_Activation && $(MAKE) -f GNUmakefile.Quoter_On_Demand_Activation_Client $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/On_Demand_Activation && $(MAKE) -f GNUmakefile.Quoter_On_Demand_Activation_Server $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/RTCORBA && $(MAKE) -f GNUmakefile.RTCORBA_Quoter_Common $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/RT_Event_Service && $(MAKE) -f GNUmakefile.Quoter_RT_Event_Service_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.Svc_Utils $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTEvent $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTEvent_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTEvent_Serv $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/RT_Event_Service && $(MAKE) -f GNUmakefile.Quoter_RT_Event_Service_Server $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/RT_Event_Service && $(MAKE) -f GNUmakefile.Quoter_RT_Event_Service_Client $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Simple/Client && $(MAKE) -f GNUmakefile.Quoter_Simple_Client $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Simple/Impl-Repo && $(MAKE) -f GNUmakefile.Quoter_Simple_Impl_Repo_Client $(@)
$(KEEP_GOING)@cd tao/IORTable && $(MAKE) -f GNUmakefile.IORTable_Core_Idl $(@)
$(KEEP_GOING)@cd tao/IORTable && $(MAKE) -f GNUmakefile.IORTable $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Simple/Impl-Repo && $(MAKE) -f GNUmakefile.Quoter_Simple_Impl_Repo_Server $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Simple/ImprovedServer && $(MAKE) -f GNUmakefile.Quoter_Simple_ImprovedServer $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Simple/Persistent && $(MAKE) -f GNUmakefile.Quoter_Simple_Persistent_Client $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Simple/Persistent && $(MAKE) -f GNUmakefile.Quoter_Simple_Persistent_Server $(@)
$(KEEP_GOING)@cd docs/tutorials/Quoter/Simple/Server && $(MAKE) -f GNUmakefile.Quoter_Simple_Server $(@)
$(KEEP_GOING)@cd examples/AMH/Sink_Server && $(MAKE) -f GNUmakefile.Sink_Server_IDL $(@)
$(KEEP_GOING)@cd tao/Strategies && $(MAKE) -f GNUmakefile.Strategies_Core_Idl $(@)
$(KEEP_GOING)@cd tao/Strategies && $(MAKE) -f GNUmakefile.Strategies $(@)
$(KEEP_GOING)@cd examples/AMH/Sink_Server && $(MAKE) -f GNUmakefile.Sink_Server_Client $(@)
$(KEEP_GOING)@cd examples/AMH/Sink_Server && $(MAKE) -f GNUmakefile.Sink_Server_Mt_Server $(@)
$(KEEP_GOING)@cd examples/AMH/Sink_Server && $(MAKE) -f GNUmakefile.Sink_Server_St_Server $(@)
$(KEEP_GOING)@cd examples/AMI/FL_Callback && $(MAKE) -f GNUmakefile.FL_Callback_Idl $(@)
$(KEEP_GOING)@cd examples/AMI/FL_Callback && $(MAKE) -f GNUmakefile.FL_Callback_Peer $(@)
$(KEEP_GOING)@cd tao/FlResource && $(MAKE) -f GNUmakefile.TAO_FlResource $(@)
$(KEEP_GOING)@cd examples/AMI/FL_Callback && $(MAKE) -f GNUmakefile.FL_Callback_Progress $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_12 && $(MAKE) -f GNUmakefile.Advanced_Ch_12_Idl $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_12 && $(MAKE) -f GNUmakefile.Advanced_Ch_12_Client $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_18 && $(MAKE) -f GNUmakefile.Advanced_Ch_18_Idl $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_18 && $(MAKE) -f GNUmakefile.Advanced_Ch_18_Client $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_21 && $(MAKE) -f GNUmakefile.Advanced_Ch_21_Idl $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_21 && $(MAKE) -f GNUmakefile.Advanced_Ch_21_Client $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_3 && $(MAKE) -f GNUmakefile.Advanced_Ch_3_Idl $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_3 && $(MAKE) -f GNUmakefile.Advanced_Ch_3_Client $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_3 && $(MAKE) -f GNUmakefile.Advanced_Ch_3_Server $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_8_and_10 && $(MAKE) -f GNUmakefile.Advanced_Ch_8_And_10_Idl $(@)
$(KEEP_GOING)@cd examples/Advanced/ch_8_and_10 && $(MAKE) -f GNUmakefile.Advanced_Ch_8_And_10_Client $(@)
$(KEEP_GOING)@cd examples/Buffered_AMI && $(MAKE) -f GNUmakefile.Buffered_AMI_IDL $(@)
$(KEEP_GOING)@cd examples/Buffered_AMI && $(MAKE) -f GNUmakefile.Buffered_AMI_Client $(@)
$(KEEP_GOING)@cd examples/Buffered_AMI && $(MAKE) -f GNUmakefile.Buffered_AMI_Server $(@)
$(KEEP_GOING)@cd examples/Buffered_Oneways && $(MAKE) -f GNUmakefile.Buffered_Oneways_IDL $(@)
$(KEEP_GOING)@cd examples/Buffered_Oneways && $(MAKE) -f GNUmakefile.Buffered_Oneways_Client $(@)
$(KEEP_GOING)@cd examples/Buffered_Oneways && $(MAKE) -f GNUmakefile.Buffered_Oneways_Server $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool_Idl $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool_Client $(@)
$(KEEP_GOING)@cd tao/CSD_Framework && $(MAKE) -f GNUmakefile.CSD_Framework_Idl $(@)
$(KEEP_GOING)@cd tao/CSD_Framework && $(MAKE) -f GNUmakefile.CSD_Framework $(@)
$(KEEP_GOING)@cd tao/CSD_ThreadPool && $(MAKE) -f GNUmakefile.CSD_ThreadPool $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool_Server $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool2 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool2_Idl $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool2 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool2_Server $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool2 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool2_Client $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool3 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool3_Idl $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool3 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool3_Server $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool3 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool3_Client $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool4 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool4_Server $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool5 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool5_Idl $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool5 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool5_Server $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool5 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool5_Client $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool6 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool6_Idl $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool6 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool6_Server $(@)
$(KEEP_GOING)@cd examples/CSD_Strategy/ThreadPool6 && $(MAKE) -f GNUmakefile.CSD_Test_ThreadPool6_Client $(@)
$(KEEP_GOING)@cd examples/Callback_Quoter && $(MAKE) -f GNUmakefile.Callback_Quoter_IDL $(@)
$(KEEP_GOING)@cd tao/Utils && $(MAKE) -f GNUmakefile.TAO_Utils $(@)
$(KEEP_GOING)@cd examples/Callback_Quoter && $(MAKE) -f GNUmakefile.Callback_Quoter_notifier $(@)
$(KEEP_GOING)@cd examples/Callback_Quoter && $(MAKE) -f GNUmakefile.Callback_Quoter_supplier $(@)
$(KEEP_GOING)@cd examples/Callback_Quoter && $(MAKE) -f GNUmakefile.Callback_Quoter_consumer $(@)
$(KEEP_GOING)@cd examples/Content_Server/AMI_Iterator && $(MAKE) -f GNUmakefile.AMI_Iterator_IDL $(@)
$(KEEP_GOING)@cd examples/Content_Server/AMI_Iterator && $(MAKE) -f GNUmakefile.AMI_Iterator_Client $(@)
$(KEEP_GOING)@cd examples/Content_Server/AMI_Iterator && $(MAKE) -f GNUmakefile.AMI_Iterator_Server $(@)
$(KEEP_GOING)@cd examples/Content_Server/AMI_Observer && $(MAKE) -f GNUmakefile.AMI_Observer_IDL $(@)
$(KEEP_GOING)@cd examples/Content_Server/AMI_Observer && $(MAKE) -f GNUmakefile.AMI_Observer_Server $(@)
$(KEEP_GOING)@cd examples/Content_Server/AMI_Observer && $(MAKE) -f GNUmakefile.AMI_Observer_Client $(@)
$(KEEP_GOING)@cd examples/Content_Server/SMI_Iterator && $(MAKE) -f GNUmakefile.SMI_Iterator_IDL $(@)
$(KEEP_GOING)@cd examples/Content_Server/SMI_Iterator && $(MAKE) -f GNUmakefile.SMI_Iterator_Client $(@)
$(KEEP_GOING)@cd examples/Content_Server/SMI_Iterator && $(MAKE) -f GNUmakefile.SMI_Iterator_Server $(@)
$(KEEP_GOING)@cd examples/Event_Comm && $(MAKE) -f GNUmakefile.Event_Comm_IDL $(@)
$(KEEP_GOING)@cd examples/Event_Comm && $(MAKE) -f GNUmakefile.Event_Comm_Notifier $(@)
$(KEEP_GOING)@cd examples/Event_Comm && $(MAKE) -f GNUmakefile.Event_Comm_Consumer $(@)
$(KEEP_GOING)@cd examples/Event_Comm && $(MAKE) -f GNUmakefile.Event_Comm_Supplier $(@)
$(KEEP_GOING)@cd tao/RTScheduling && $(MAKE) -f GNUmakefile.RTScheduler_Idl $(@)
$(KEEP_GOING)@cd tao/RTScheduling && $(MAKE) -f GNUmakefile.RTScheduler $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers && $(MAKE) -f GNUmakefile.Kokyu_DSRT_Schedulers $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/fp_example && $(MAKE) -f GNUmakefile.fp_example_IDL $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/fp_example && $(MAKE) -f GNUmakefile.fp_client $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/fp_example && $(MAKE) -f GNUmakefile.fp_server $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/mif_example && $(MAKE) -f GNUmakefile.mif_example_IDL $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/mif_example && $(MAKE) -f GNUmakefile.mif_example_client $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/mif_example && $(MAKE) -f GNUmakefile.mif_example_server $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/muf_example && $(MAKE) -f GNUmakefile.muf_example_IDL $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/muf_example && $(MAKE) -f GNUmakefile.muf_client $(@)
$(KEEP_GOING)@cd examples/Kokyu_dsrt_schedulers/muf_example && $(MAKE) -f GNUmakefile.muf_server $(@)
$(KEEP_GOING)@cd examples/Load_Balancing && $(MAKE) -f GNUmakefile.Load_Balancing_IDL $(@)
$(KEEP_GOING)@cd examples/Load_Balancing && $(MAKE) -f GNUmakefile.Load_Balancing_Server $(@)
$(KEEP_GOING)@cd examples/Load_Balancing && $(MAKE) -f GNUmakefile.Load_Balancing_Balancer $(@)
$(KEEP_GOING)@cd examples/Load_Balancing && $(MAKE) -f GNUmakefile.Load_Balancing_Client $(@)
$(KEEP_GOING)@cd examples/Load_Balancing_persistent && $(MAKE) -f GNUmakefile.Load_Balancing_Persistent_IDL $(@)
$(KEEP_GOING)@cd examples/Load_Balancing_persistent && $(MAKE) -f GNUmakefile.Load_Balancing_Persistent_Client $(@)
$(KEEP_GOING)@cd examples/Load_Balancing_persistent && $(MAKE) -f GNUmakefile.Load_Balancing_Persistent_Balancer $(@)
$(KEEP_GOING)@cd examples/Load_Balancing_persistent && $(MAKE) -f GNUmakefile.Load_Balancing_Persistent_Server $(@)
$(KEEP_GOING)@cd examples/Logging && $(MAKE) -f GNUmakefile.Logging_IDL $(@)
$(KEEP_GOING)@cd examples/Logging && $(MAKE) -f GNUmakefile.Logging_Service $(@)
$(KEEP_GOING)@cd examples/Logging && $(MAKE) -f GNUmakefile.Logging_Test $(@)
$(KEEP_GOING)@cd examples/OBV/Typed_Events && $(MAKE) -f GNUmakefile.Typed_Events_IDL $(@)
$(KEEP_GOING)@cd examples/OBV/Typed_Events && $(MAKE) -f GNUmakefile.Typed_Events_Server $(@)
$(KEEP_GOING)@cd examples/OBV/Typed_Events && $(MAKE) -f GNUmakefile.Typed_Events_Client $(@)
$(KEEP_GOING)@cd examples/Persistent_Grid && $(MAKE) -f GNUmakefile.Persistent_Grid_IDL $(@)
$(KEEP_GOING)@cd examples/Persistent_Grid && $(MAKE) -f GNUmakefile.Persistent_Grid_Server $(@)
$(KEEP_GOING)@cd examples/Persistent_Grid && $(MAKE) -f GNUmakefile.Persistent_Grid_Client $(@)
$(KEEP_GOING)@cd examples/Persistent_Grid && $(MAKE) -f GNUmakefile.Persistent_Grid_Persistent_Client $(@)
$(KEEP_GOING)@cd examples/PluggableUDP/tests/Performance && $(MAKE) -f GNUmakefile.Performance_IDL $(@)
$(KEEP_GOING)@cd examples/PluggableUDP/tests/Performance && $(MAKE) -f GNUmakefile.Performance_Server $(@)
$(KEEP_GOING)@cd examples/PluggableUDP/tests/Performance && $(MAKE) -f GNUmakefile.Performance_Client $(@)
$(KEEP_GOING)@cd examples/PluggableUDP/tests/SimplePerformance && $(MAKE) -f GNUmakefile.SimplePerformance_IDL $(@)
$(KEEP_GOING)@cd examples/PluggableUDP/tests/SimplePerformance && $(MAKE) -f GNUmakefile.SimplePerformance_Client $(@)
$(KEEP_GOING)@cd examples/PluggableUDP/tests/SimplePerformance && $(MAKE) -f GNUmakefile.SimplePerformance_Server $(@)
$(KEEP_GOING)@cd examples/Quoter && $(MAKE) -f GNUmakefile.Quoter_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosLifeCycle_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosLifeCycle $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosLifeCycle_Skel $(@)
$(KEEP_GOING)@cd examples/Quoter && $(MAKE) -f GNUmakefile.Quoter_Server $(@)
$(KEEP_GOING)@cd examples/Quoter && $(MAKE) -f GNUmakefile.Quoter_Client $(@)
$(KEEP_GOING)@cd examples/Quoter && $(MAKE) -f GNUmakefile.Quoter_Factory_Finder $(@)
$(KEEP_GOING)@cd examples/Quoter && $(MAKE) -f GNUmakefile.Quoter_Generic_Factory $(@)
$(KEEP_GOING)@cd examples/RTCORBA/Activity && $(MAKE) -f GNUmakefile.Activity $(@)
$(KEEP_GOING)@cd examples/RTScheduling && $(MAKE) -f GNUmakefile.RTSchedSynch $(@)
$(KEEP_GOING)@cd examples/RTScheduling/MIF_Scheduler && $(MAKE) -f GNUmakefile.MIF_Scheduler_Starter $(@)
$(KEEP_GOING)@cd examples/RTScheduling/Fixed_Priority_Scheduler && $(MAKE) -f GNUmakefile.Fixed_Priority_Scheduler_Starter $(@)
$(KEEP_GOING)@cd examples/RTScheduling && $(MAKE) -f GNUmakefile.Job $(@)
$(KEEP_GOING)@cd examples/RTScheduling && $(MAKE) -f GNUmakefile.RTSchedTestLib $(@)
$(KEEP_GOING)@cd examples/RTScheduling/Fixed_Priority_Scheduler && $(MAKE) -f GNUmakefile.Fixed_Priority_Scheduler_Test $(@)
$(KEEP_GOING)@cd examples/RTScheduling/MIF_Scheduler && $(MAKE) -f GNUmakefile.MIF_Scheduler_Test $(@)
$(KEEP_GOING)@cd examples/Simple/bank && $(MAKE) -f GNUmakefile.bank_IDL $(@)
$(KEEP_GOING)@cd examples/Simple/bank && $(MAKE) -f GNUmakefile.bank_server $(@)
$(KEEP_GOING)@cd examples/Simple/bank && $(MAKE) -f GNUmakefile.bank_client $(@)
$(KEEP_GOING)@cd examples/Simple/chat && $(MAKE) -f GNUmakefile.chat_IDL $(@)
$(KEEP_GOING)@cd examples/Simple/chat && $(MAKE) -f GNUmakefile.chat_client $(@)
$(KEEP_GOING)@cd examples/Simple/chat && $(MAKE) -f GNUmakefile.chat_server $(@)
$(KEEP_GOING)@cd examples/Simple/echo && $(MAKE) -f GNUmakefile.echo_IDL $(@)
$(KEEP_GOING)@cd examples/Simple/echo && $(MAKE) -f GNUmakefile.echo_server $(@)
$(KEEP_GOING)@cd examples/Simple/echo && $(MAKE) -f GNUmakefile.echo_client $(@)
$(KEEP_GOING)@cd examples/Simple/grid && $(MAKE) -f GNUmakefile.grid_IDL $(@)
$(KEEP_GOING)@cd examples/Simple/grid && $(MAKE) -f GNUmakefile.grid_server $(@)
$(KEEP_GOING)@cd examples/Simple/grid && $(MAKE) -f GNUmakefile.grid_client $(@)
$(KEEP_GOING)@cd examples/Simple/time-date && $(MAKE) -f GNUmakefile.Simple_Time_Date_Lib $(@)
$(KEEP_GOING)@cd examples/Simple/time-date && $(MAKE) -f GNUmakefile.Simple_Time_Date_Client $(@)
$(KEEP_GOING)@cd examples/Simple/time-date && $(MAKE) -f GNUmakefile.Simple_Time_Date_Server $(@)
$(KEEP_GOING)@cd examples/Simple/time && $(MAKE) -f GNUmakefile.time_IDL $(@)
$(KEEP_GOING)@cd examples/Simple/time && $(MAKE) -f GNUmakefile.time_server $(@)
$(KEEP_GOING)@cd examples/Simple/time && $(MAKE) -f GNUmakefile.time_client $(@)
$(KEEP_GOING)@cd examples/Simulator/Event_Supplier && $(MAKE) -f GNUmakefile.Event_Supplier_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTSched $(@)
$(KEEP_GOING)@cd examples/Simulator/Event_Supplier && $(MAKE) -f GNUmakefile.Event_Supplier_Event_Sup $(@)
$(KEEP_GOING)@cd examples/Simulator/Event_Supplier && $(MAKE) -f GNUmakefile.Event_Supplier_DualEC_Sup $(@)
$(KEEP_GOING)@cd examples/Simulator/Event_Supplier && $(MAKE) -f GNUmakefile.Event_Supplier_Event_Con $(@)
$(KEEP_GOING)@cd examples/Simulator/Event_Supplier && $(MAKE) -f GNUmakefile.Event_Supplier_Logging_Sup $(@)
$(KEEP_GOING)@cd tao/TypeCodeFactory && $(MAKE) -f GNUmakefile.TypeCodeFactory_Idl $(@)
$(KEEP_GOING)@cd tao/IFR_Client && $(MAKE) -f GNUmakefile.IFR_Client_Idl $(@)
$(KEEP_GOING)@cd tao/IFR_Client && $(MAKE) -f GNUmakefile.IFR_Client $(@)
$(KEEP_GOING)@cd tao/TypeCodeFactory && $(MAKE) -f GNUmakefile.TypeCodeFactory $(@)
$(KEEP_GOING)@cd examples/TypeCode_Creation && $(MAKE) -f GNUmakefile.TypeCode_Creation_Test $(@)
$(KEEP_GOING)@cd examples/ior_corbaloc && $(MAKE) -f GNUmakefile.ior_corbaloc_IDL $(@)
$(KEEP_GOING)@cd examples/ior_corbaloc && $(MAKE) -f GNUmakefile.ior_corbaloc_client $(@)
$(KEEP_GOING)@cd examples/ior_corbaloc && $(MAKE) -f GNUmakefile.ior_corbaloc_corbaname_client $(@)
$(KEEP_GOING)@cd examples/ior_corbaloc && $(MAKE) -f GNUmakefile.ior_corbaloc_server $(@)
$(KEEP_GOING)@cd examples/mfc && $(MAKE) -f GNUmakefile.MFC_Client $(@)
$(KEEP_GOING)@cd interop-tests/wchar && $(MAKE) -f GNUmakefile.interop_wchar_IDL $(@)
$(KEEP_GOING)@cd interop-tests/wchar && $(MAKE) -f GNUmakefile.Interop_Wchar_Client $(@)
$(KEEP_GOING)@cd interop-tests/wchar && $(MAKE) -f GNUmakefile.Interop_Wchar_Server $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosConcurrency_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosConcurrency $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosConcurrency_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosConcurrency_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/Concurrency_Service && $(MAKE) -f GNUmakefile.Concurrency_Service $(@)
$(KEEP_GOING)@cd tao/DynamicInterface && $(MAKE) -f GNUmakefile.DynamicInterface $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosEvent_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/CosEvent_Service && $(MAKE) -f GNUmakefile.CosEvent_Service $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/OMG_Basic && $(MAKE) -f GNUmakefile.OMG_Basic_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/OMG_Basic && $(MAKE) -f GNUmakefile.OMG_Basic_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/OMG_SupplierSideEC && $(MAKE) -f GNUmakefile.OMG_SupplierSideEC_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/OMG_SupplierSideEC && $(MAKE) -f GNUmakefile.OMG_SupplierSideEC_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/OMG_TypedEC && $(MAKE) -f GNUmakefile.OMG_TypedEC_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/OMG_TypedEC && $(MAKE) -f GNUmakefile.OMG_TypedEC_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/RTEC_Basic && $(MAKE) -f GNUmakefile.RTEC_Basic_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/RTEC_Basic && $(MAKE) -f GNUmakefile.RTEC_Basic_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/RTEC_Federated && $(MAKE) -f GNUmakefile.RTEC_Federated_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/RTEC_Federated && $(MAKE) -f GNUmakefile.RTEC_Federated_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/RTEC_Filter && $(MAKE) -f GNUmakefile.RTEC_Filter_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/RTEC_Filter && $(MAKE) -f GNUmakefile.RTEC_Filter_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated && $(MAKE) -f GNUmakefile.RTEC_MCast_Federated__Dev_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated && $(MAKE) -f GNUmakefile.RTEC_MCast_Federated__Dev_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo/Basic && $(MAKE) -f GNUmakefile.ImplRepo_Basic_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo/Basic && $(MAKE) -f GNUmakefile.ImplRepo_Basic_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo/Basic && $(MAKE) -f GNUmakefile.ImplRepo_Basic_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo && $(MAKE) -f GNUmakefile.ImplRepo_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo && $(MAKE) -f GNUmakefile.ImplRepo_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo && $(MAKE) -f GNUmakefile.ImplRepo_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo/IORTable && $(MAKE) -f GNUmakefile.ImplRepo_IORTable_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo/IORTable && $(MAKE) -f GNUmakefile.ImplRepo_IORTable_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ImplRepo/IORTable && $(MAKE) -f GNUmakefile.ImplRepo_IORTable_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/InterfaceRepo && $(MAKE) -f GNUmakefile.InterfaceRepo_Browser $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Messenger && $(MAKE) -f GNUmakefile.NamingService_Messenger_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Messenger && $(MAKE) -f GNUmakefile.NamingService_Messenger_Client $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNaming_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Messenger && $(MAKE) -f GNUmakefile.NamingService_Messenger_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Naming_Client && $(MAKE) -f GNUmakefile.Naming_Client_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Naming_Client && $(MAKE) -f GNUmakefile.Naming_Client_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Naming_Client && $(MAKE) -f GNUmakefile.Naming_Client_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext && $(MAKE) -f GNUmakefile.Naming_Context_Ext_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext && $(MAKE) -f GNUmakefile.Naming_Context_Ext_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext && $(MAKE) -f GNUmakefile.Naming_Context_Ext_Client $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNaming_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/Naming_Server && $(MAKE) -f GNUmakefile.Naming_Server_Messenger $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger && $(MAKE) -f GNUmakefile.Corbaloc_Messenger_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger && $(MAKE) -f GNUmakefile.Corbaloc_Messenger_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger && $(MAKE) -f GNUmakefile.Corbaloc_Messenger_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/corbaname_Messenger && $(MAKE) -f GNUmakefile.Corbaname_Messenger_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/corbaname_Messenger && $(MAKE) -f GNUmakefile.Corbaname_Messenger_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NamingService/corbaname_Messenger && $(MAKE) -f GNUmakefile.Corbaname_Messenger_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/EventSequence && $(MAKE) -f GNUmakefile.EventSequence_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNotification_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNotification $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNotification_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/EventSequence && $(MAKE) -f GNUmakefile.EventSequence_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/EventSequence && $(MAKE) -f GNUmakefile.EventSequence_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/EventSequence && $(MAKE) -f GNUmakefile.EventSequence_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/Filtering && $(MAKE) -f GNUmakefile.Filtering_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/Filtering && $(MAKE) -f GNUmakefile.Filtering_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/Filtering && $(MAKE) -f GNUmakefile.Filtering_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/Filtering && $(MAKE) -f GNUmakefile.Filtering_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/Messenger && $(MAKE) -f GNUmakefile.NotifyServiceMessenger_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/Messenger && $(MAKE) -f GNUmakefile.NotifyServiceMessenger_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/Messenger && $(MAKE) -f GNUmakefile.NotifyServiceMessenger_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/Messenger && $(MAKE) -f GNUmakefile.NotifyServiceMessenger_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions && $(MAKE) -f GNUmakefile.OfferSubscriptions_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions && $(MAKE) -f GNUmakefile.OfferSubscriptions_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions && $(MAKE) -f GNUmakefile.OfferSubscriptions_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions && $(MAKE) -f GNUmakefile.OfferSubscriptions_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/QoSProperties && $(MAKE) -f GNUmakefile.QoSProperties_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/QoSProperties && $(MAKE) -f GNUmakefile.QoSProperties_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/QoSProperties && $(MAKE) -f GNUmakefile.QoSProperties_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/QoSProperties && $(MAKE) -f GNUmakefile.QoSProperties_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/RTNotify && $(MAKE) -f GNUmakefile.RTNotify_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/RTNotify && $(MAKE) -f GNUmakefile.RTNotify_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/RTNotify && $(MAKE) -f GNUmakefile.RTNotify_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/RTNotify && $(MAKE) -f GNUmakefile.RTNotify_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC && $(MAKE) -f GNUmakefile.SupplierSideNC_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC && $(MAKE) -f GNUmakefile.SupplierSideNC_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC && $(MAKE) -f GNUmakefile.SupplierSideNC_Client $(@)
$(KEEP_GOING)@cd tao/ETCL && $(MAKE) -f GNUmakefile.TAO_ETCL $(@)
$(KEEP_GOING)@cd tao/DynamicAny && $(MAKE) -f GNUmakefile.DynamicAny_Idl $(@)
$(KEEP_GOING)@cd tao/DynamicAny && $(MAKE) -f GNUmakefile.DynamicAny $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNotification_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC && $(MAKE) -f GNUmakefile.SupplierSideNC_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService && $(MAKE) -f GNUmakefile.PICurrent_NameService_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService && $(MAKE) -f GNUmakefile.PICurrent_NameService_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService && $(MAKE) -f GNUmakefile.PICurrent_NameService_Server $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.Security $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.SSLIOP $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/Security/ParticipatingApp && $(MAKE) -f GNUmakefile.ParticipatingApp_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/Security/ParticipatingApp && $(MAKE) -f GNUmakefile.ParticipatingApp_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/Security/PolicyControllingApp && $(MAKE) -f GNUmakefile.PolicyControllingApp_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/Security/PolicyControllingApp && $(MAKE) -f GNUmakefile.PolicyControllingApp_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/Security/SecurityUnawareApp && $(MAKE) -f GNUmakefile.SecurityUnawareApp_Server $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/Security/SecurityUnawareApp && $(MAKE) -f GNUmakefile.SecurityUnawareApp_Client $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ValueTypes/Notify && $(MAKE) -f GNUmakefile.Notify_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/DevGuideExamples/ValueTypes/Notify && $(MAKE) -f GNUmakefile.Notify_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/Dump_Schedule && $(MAKE) -f GNUmakefile.Dump_Schedule $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTSchedEvent $(@)
$(KEEP_GOING)@cd orbsvcs/Event_Service && $(MAKE) -f GNUmakefile.Event_Service $(@)
$(KEEP_GOING)@cd tao/IORManipulation && $(MAKE) -f GNUmakefile.IORManipulation_Idl $(@)
$(KEEP_GOING)@cd tao/IORManipulation && $(MAKE) -f GNUmakefile.IORManipulation $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.PortableGroup $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.FTORB_Utils $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.FtRtEvent $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.FTRT_EventChannel $(@)
$(KEEP_GOING)@cd orbsvcs/FTRT_Event_Service/Event_Service && $(MAKE) -f GNUmakefile.FTRT_Event_Service $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.FT_ServerORB $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.FT_ClientORB $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.FaultTolerance $(@)
$(KEEP_GOING)@cd orbsvcs/FTRT_Event_Service/Factory_Service && $(MAKE) -f GNUmakefile.FTRTEC_Factory_Service $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.FTRT_ClientORB $(@)
$(KEEP_GOING)@cd orbsvcs/FTRT_Event_Service/Gateway_Service && $(MAKE) -f GNUmakefile.FTRTEC_Gateway_Service $(@)
$(KEEP_GOING)@cd orbsvcs/FT_ReplicationManager && $(MAKE) -f GNUmakefile.FT_ReplicationManager_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/FT_ReplicationManager && $(MAKE) -f GNUmakefile.FT_ReplicationManager $(@)
$(KEEP_GOING)@cd orbsvcs/Fault_Detector && $(MAKE) -f GNUmakefile.Fault_Detector $(@)
$(KEEP_GOING)@cd orbsvcs/Fault_Notifier && $(MAKE) -f GNUmakefile.Fault_Notifier $(@)
$(KEEP_GOING)@cd tao/ImR_Client && $(MAKE) -f GNUmakefile.ImR_Client_Idl $(@)
$(KEEP_GOING)@cd tao/ImR_Client && $(MAKE) -f GNUmakefile.ImR_Client $(@)
$(KEEP_GOING)@cd tao/IFR_Client && $(MAKE) -f GNUmakefile.IFR_Client_skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.IFRService $(@)
$(KEEP_GOING)@cd orbsvcs/IFR_Service && $(MAKE) -f GNUmakefile.IFR_Service $(@)
$(KEEP_GOING)@cd orbsvcs/IFR_Service && $(MAKE) -f GNUmakefile.TAO_IFR_BE $(@)
$(KEEP_GOING)@cd orbsvcs/IFR_Service && $(MAKE) -f GNUmakefile.TAO_IFR_EXE $(@)
$(KEEP_GOING)@cd orbsvcs/ImplRepo_Service && $(MAKE) -f GNUmakefile.ImR_Activator_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/ImplRepo_Service && $(MAKE) -f GNUmakefile.ImR_Locator_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/ImplRepo_Service && $(MAKE) -f GNUmakefile.ImR_Activator $(@)
$(KEEP_GOING)@cd orbsvcs/ImplRepo_Service && $(MAKE) -f GNUmakefile.ImR_Activator_Service $(@)
$(KEEP_GOING)@cd orbsvcs/ImplRepo_Service && $(MAKE) -f GNUmakefile.ImR_Locator $(@)
$(KEEP_GOING)@cd orbsvcs/ImplRepo_Service && $(MAKE) -f GNUmakefile.ImR_Locator_Service $(@)
$(KEEP_GOING)@cd orbsvcs/ImplRepo_Service && $(MAKE) -f GNUmakefile.tao_imr $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosTrading_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosTrading $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosTrading_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosTrading_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/LifeCycle_Service && $(MAKE) -f GNUmakefile.LifeCycle_Service $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosLoadBalancing $(@)
$(KEEP_GOING)@cd orbsvcs/LoadBalancer && $(MAKE) -f GNUmakefile.LoadManager $(@)
$(KEEP_GOING)@cd orbsvcs/LoadBalancer && $(MAKE) -f GNUmakefile.LoadMonitor $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsLogAdmin_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsLogAdmin $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsLogAdmin_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsLogAdmin_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/Logging_Service/Basic_Logging_Service && $(MAKE) -f GNUmakefile.Basic_Logging_Service $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsEventLogAdmin_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsEventLogAdmin $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsEventLogAdmin_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsEventLogAdmin_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/Logging_Service/Event_Logging_Service && $(MAKE) -f GNUmakefile.Event_Logging_Service $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsNotifyLogAdmin_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsNotifyLogAdmin $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsNotifyLogAdmin_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.DsNotifyLogAdmin_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/Logging_Service/Notify_Logging_Service && $(MAKE) -f GNUmakefile.Notify_Logging_Service $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTEventLogAdmin_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTEventLogAdmin $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTEventLogAdmin_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTEventLogAdmin_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/Logging_Service/RTEvent_Logging_Service && $(MAKE) -f GNUmakefile.RTEvent_Logging_Service $(@)
$(KEEP_GOING)@cd orbsvcs/Naming_Service && $(MAKE) -f GNUmakefile.Naming_Service $(@)
$(KEEP_GOING)@cd orbsvcs/Naming_Service && $(MAKE) -f GNUmakefile.NT_Naming_Service $(@)
$(KEEP_GOING)@cd orbsvcs/Notify_Service && $(MAKE) -f GNUmakefile.TAO_Notify_Service $(@)
$(KEEP_GOING)@cd orbsvcs/Notify_Service && $(MAKE) -f GNUmakefile.NT_Notify_Service $(@)
$(KEEP_GOING)@cd orbsvcs/Notify_Service && $(MAKE) -f GNUmakefile.Notify_Service $(@)
$(KEEP_GOING)@cd orbsvcs/Scheduling_Service && $(MAKE) -f GNUmakefile.Scheduling_Service $(@)
$(KEEP_GOING)@cd orbsvcs/TAO_Service && $(MAKE) -f GNUmakefile.TAO_Service $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosTime_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosTime $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosTime_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosTime_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/Time_Service && $(MAKE) -f GNUmakefile.Time_Service_Clerk $(@)
$(KEEP_GOING)@cd orbsvcs/Time_Service && $(MAKE) -f GNUmakefile.Time_Service_Server $(@)
$(KEEP_GOING)@cd orbsvcs/Trading_Service && $(MAKE) -f GNUmakefile.Trading_Service $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/Factory && $(MAKE) -f GNUmakefile.CosEC_Factory_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/Factory && $(MAKE) -f GNUmakefile.CosEC_Factory_Client $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/Factory && $(MAKE) -f GNUmakefile.CosEC_Factory_Server $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/RtEC_Based/lib && $(MAKE) -f GNUmakefile.CosEC_RtEC_Based_lib $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/RtEC_Based/bin && $(MAKE) -f GNUmakefile.CosEC_RtEC_Based_bin $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/RtEC_Based/tests/Basic && $(MAKE) -f GNUmakefile.CosEC_RtEC_Based_Tests_Basic_Client $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple && $(MAKE) -f GNUmakefile.CosEC_RtEC_Based_Mult_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple && $(MAKE) -f GNUmakefile.CosEC_RtEC_Based_Mult_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/Simple && $(MAKE) -f GNUmakefile.CosEC_Simple_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/Simple && $(MAKE) -f GNUmakefile.CosEC_Simple_Service $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/Simple && $(MAKE) -f GNUmakefile.CosEC_Simple_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/TypedSimple && $(MAKE) -f GNUmakefile.CosEC_TypedSimple_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/CosEC/TypedSimple && $(MAKE) -f GNUmakefile.CosEC_TypedSimple_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/examples/FaultTolerance/RolyPoly && $(MAKE) -f GNUmakefile.RolyPoly_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/examples/FaultTolerance/RolyPoly && $(MAKE) -f GNUmakefile.RolyPoly_Client $(@)
$(KEEP_GOING)@cd orbsvcs/examples/FaultTolerance/RolyPoly && $(MAKE) -f GNUmakefile.RolyPoly_Server $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Advanced && $(MAKE) -f GNUmakefile.Advanced_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Advanced && $(MAKE) -f GNUmakefile.Advanced_Client $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Advanced && $(MAKE) -f GNUmakefile.Advanced_Server $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Advanced && $(MAKE) -f GNUmakefile.Advanced_Manager $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Combined_Service && $(MAKE) -f GNUmakefile.ImR_Combined_Service_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Combined_Service && $(MAKE) -f GNUmakefile.ImR_Combined_Service_Controller $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Combined_Service && $(MAKE) -f GNUmakefile.ImR_Combined_Service $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Combined_Service && $(MAKE) -f GNUmakefile.ImR_Combined_Service_Test $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Combined_Service && $(MAKE) -f GNUmakefile.ImR_Combined_Service_TestServer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ImR/Combined_Service && $(MAKE) -f GNUmakefile.ImR_Combined_Service_DynamicServer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/LoadBalancing && $(MAKE) -f GNUmakefile.LoadBalancing_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/examples/LoadBalancing && $(MAKE) -f GNUmakefile.LoadBalancing_Server $(@)
$(KEEP_GOING)@cd orbsvcs/examples/LoadBalancing && $(MAKE) -f GNUmakefile.LoadBalancing_Client $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Log/Basic && $(MAKE) -f GNUmakefile.Log_Basic_Client $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Log/Event && $(MAKE) -f GNUmakefile.Log_Event_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Log/Event && $(MAKE) -f GNUmakefile.Log_Event_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Log/Notify && $(MAKE) -f GNUmakefile.Log_Notify_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Log/Notify && $(MAKE) -f GNUmakefile.Log_Notify_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Log/RTEvent && $(MAKE) -f GNUmakefile.Log_RTEvent_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Log/RTEvent && $(MAKE) -f GNUmakefile.Log_RTEvent_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/Federation/Gate && $(MAKE) -f GNUmakefile.Gate $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/Federation/Agent && $(MAKE) -f GNUmakefile.Agent $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/Federation/SpaceCraft && $(MAKE) -f GNUmakefile.SpaceCraft $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/Filter && $(MAKE) -f GNUmakefile.Notify_Filter $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RT_Notification $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/lib && $(MAKE) -f GNUmakefile.NotifyTests_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/Lanes && $(MAKE) -f GNUmakefile.Notify_Lanes_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/Lanes && $(MAKE) -f GNUmakefile.Notify_Lanes_Supplier $(@)
$(KEEP_GOING)@cd tao/Monitor && $(MAKE) -f GNUmakefile.Monitor_Idl $(@)
$(KEEP_GOING)@cd tao/Monitor && $(MAKE) -f GNUmakefile.TAO_Monitor $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNotification_MC $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/MC/monitor && $(MAKE) -f GNUmakefile.mc_monitor_example $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/Subscribe && $(MAKE) -f GNUmakefile.Notify_Subscribe $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/ThreadPool && $(MAKE) -f GNUmakefile.Notify_ThreadPool_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Notify/ThreadPool && $(MAKE) -f GNUmakefile.Notify_ThreadPool_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ORT && $(MAKE) -f GNUmakefile.ORT_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ORT && $(MAKE) -f GNUmakefile.ORT_Gateway $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ORT && $(MAKE) -f GNUmakefile.ORT_Server $(@)
$(KEEP_GOING)@cd orbsvcs/examples/ORT && $(MAKE) -f GNUmakefile.ORT_Client $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/IIOPGateway && $(MAKE) -f GNUmakefile.RtEC_IIOPGateway $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/IIOPGateway && $(MAKE) -f GNUmakefile.RtEC_IIOPGateway_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/IIOPGateway && $(MAKE) -f GNUmakefile.RtEC_IIOPGateway_EC $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/IIOPGateway && $(MAKE) -f GNUmakefile.RtEC_IIOPGateway_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTKokyuEvent $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/Kokyu && $(MAKE) -f GNUmakefile.RtECKokyu $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/MCast && $(MAKE) -f GNUmakefile.RtEC_MCast $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/Schedule && $(MAKE) -f GNUmakefile.RtEC_Schedule $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/Simple && $(MAKE) -f GNUmakefile.RtEC_Simple_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/Simple && $(MAKE) -f GNUmakefile.RtEC_Simple_Service $(@)
$(KEEP_GOING)@cd orbsvcs/examples/RtEC/Simple && $(MAKE) -f GNUmakefile.RtEC_Simple_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Security/Send_File && $(MAKE) -f GNUmakefile.Security_Send_File_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Security/Send_File && $(MAKE) -f GNUmakefile.Security_Send_File_Server $(@)
$(KEEP_GOING)@cd orbsvcs/examples/Security/Send_File && $(MAKE) -f GNUmakefile.Security_Send_File_Client $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosProperty_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosProperty $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosProperty_Skel $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosProperty_Serv $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.AV $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNotification_MC_Ext $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.CosNotification_Persist $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.HTIOP $(@)
$(KEEP_GOING)@cd orbsvcs/orbsvcs && $(MAKE) -f GNUmakefile.RTCORBAEvent $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS && $(MAKE) -f GNUmakefile.LoadBalancing_Performance_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS && $(MAKE) -f GNUmakefile.LoadBalancing_Performance_Client $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS && $(MAKE) -f GNUmakefile.LoadBalancing_Performance_Server $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/lib && $(MAKE) -f GNUmakefile.RTEC_Perf $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip && $(MAKE) -f GNUmakefile.Colocated_Roundtrip $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/Federated_Roundtrip && $(MAKE) -f GNUmakefile.Federated_Roundtrip_Client $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/Federated_Roundtrip && $(MAKE) -f GNUmakefile.Federated_Roundtrip_Server $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline && $(MAKE) -f GNUmakefile.RTCORBA_Baseline_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline && $(MAKE) -f GNUmakefile.RTCORBA_Baseline_Server $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline && $(MAKE) -f GNUmakefile.RTCORBA_Baseline_Client $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/RTCORBA_Callback && $(MAKE) -f GNUmakefile.RTCORBA_Callback_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/RTCORBA_Callback && $(MAKE) -f GNUmakefile.RTCORBA_Callback_Client $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/RTCORBA_Callback && $(MAKE) -f GNUmakefile.RTCORBA_Callback_Server $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/Roundtrip && $(MAKE) -f GNUmakefile.Roundtrip_RTEvent_Client $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/Roundtrip && $(MAKE) -f GNUmakefile.Roundtrip_RTEvent_Server $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/TCP_Baseline && $(MAKE) -f GNUmakefile.TCP_Baseline_Client $(@)
$(KEEP_GOING)@cd orbsvcs/performance-tests/RTEvent/TCP_Baseline && $(MAKE) -f GNUmakefile.TCP_Baseline_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Asynch_Three_Stage && $(MAKE) -f GNUmakefile.AVS_Asynch_Three_Stage_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Asynch_Three_Stage && $(MAKE) -f GNUmakefile.AVS_Asynch_Three_Stage_Dist $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Asynch_Three_Stage && $(MAKE) -f GNUmakefile.AVS_Asynch_Three_Stage_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Bidirectional_Flows && $(MAKE) -f GNUmakefile.AVS_Bidirectional_Flows_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Bidirectional_Flows && $(MAKE) -f GNUmakefile.AVS_Bidirectional_Flows_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Component_Switching && $(MAKE) -f GNUmakefile.AVS_Component_Switching_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Component_Switching && $(MAKE) -f GNUmakefile.AVS_Component_Switching_Dist $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Component_Switching && $(MAKE) -f GNUmakefile.AVS_Component_Switching_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Full_Profile && $(MAKE) -f GNUmakefile.AVS_Full_Profile_Ftp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Full_Profile && $(MAKE) -f GNUmakefile.AVS_Full_Profile_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Latency && $(MAKE) -f GNUmakefile.AVS_Latency_Cntl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Latency && $(MAKE) -f GNUmakefile.AVS_Latency_Ping $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Latency && $(MAKE) -f GNUmakefile.AVS_Latency_Pong $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Modify_QoS && $(MAKE) -f GNUmakefile.AVS_Modify_QoS_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Modify_QoS && $(MAKE) -f GNUmakefile.AVS_Modify_QoS_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Multicast && $(MAKE) -f GNUmakefile.AVS_Multicast_Ftp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Multicast && $(MAKE) -f GNUmakefile.AVS_Multicast_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Multicast_Full_Profile && $(MAKE) -f GNUmakefile.AVS_Multicast_Full_Profile_Ftp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Multicast_Full_Profile && $(MAKE) -f GNUmakefile.AVS_Multicast_Full_Profile_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Multiple_Flows && $(MAKE) -f GNUmakefile.AVS_Multiple_Flows_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Multiple_Flows && $(MAKE) -f GNUmakefile.AVS_Multiple_Flows_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Pluggable && $(MAKE) -f GNUmakefile.AVS_Pluggable_Ftp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Pluggable && $(MAKE) -f GNUmakefile.AVS_Pluggable_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol && $(MAKE) -f GNUmakefile.AVS_Pluggable_Flow_Protocol_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol && $(MAKE) -f GNUmakefile.AVS_Pluggable_Flow_Protocol_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol && $(MAKE) -f GNUmakefile.AVS_Pluggable_Flow_Protocol_Ts $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Simple_Three_Stage && $(MAKE) -f GNUmakefile.AVS_Simple_Three_Stage_Dist $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Simple_Three_Stage && $(MAKE) -f GNUmakefile.AVS_Simple_Three_Stage_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Simple_Three_Stage && $(MAKE) -f GNUmakefile.AVS_Simple_Three_Stage_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Simple_Two_Stage && $(MAKE) -f GNUmakefile.AVS_Simple_Two_Stage_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Simple_Two_Stage && $(MAKE) -f GNUmakefile.AVS_Simple_Two_Stage_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Simple_Two_Stage_With_QoS && $(MAKE) -f GNUmakefile.AVS_Simple_Two_Stage_With_QoS_Recv $(@)
$(KEEP_GOING)@cd orbsvcs/tests/AVStreams/Simple_Two_Stage_With_QoS && $(MAKE) -f GNUmakefile.AVS_Simple_Two_Stage_With_QoS_Send $(@)
$(KEEP_GOING)@cd orbsvcs/tests/BiDir_CORBALOC && $(MAKE) -f GNUmakefile.BiDirCORBALOC_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_1334_Regression && $(MAKE) -f GNUmakefile.Bug_1334_client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_1393_Regression && $(MAKE) -f GNUmakefile.Bug_1393_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_1395_Regression && $(MAKE) -f GNUmakefile.Bug_1395_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_1395_Regression && $(MAKE) -f GNUmakefile.Bug_1395_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_1395_Regression && $(MAKE) -f GNUmakefile.Bug_1395_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_1630_Regression && $(MAKE) -f GNUmakefile.Bug_1630_testclient $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2074_Regression && $(MAKE) -f GNUmakefile.Bug_2074_Regression_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2112_Regression && $(MAKE) -f GNUmakefile.Bug_2112_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2137_Regression && $(MAKE) -f GNUmakefile.Bug_2137_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2247_Regression && $(MAKE) -f GNUmakefile.Bug_2247_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2247_Regression && $(MAKE) -f GNUmakefile.Bug_2247_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2247_Regression && $(MAKE) -f GNUmakefile.Bug_2247_Regression_Manager $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2248_Regression && $(MAKE) -f GNUmakefile.Bug_2248_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2248_Regression && $(MAKE) -f GNUmakefile.Bug_2248_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2248_Regression && $(MAKE) -f GNUmakefile.Bug_2248_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2285_Regression && $(MAKE) -f GNUmakefile.Bug_2285_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2285_Regression && $(MAKE) -f GNUmakefile.Bug_2285_Regression_Server2 $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2285_Regression && $(MAKE) -f GNUmakefile.Bug_2285_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2285_Regression && $(MAKE) -f GNUmakefile.Bug_2285_Regression_Client2 $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2285_Regression && $(MAKE) -f GNUmakefile.Bug_2285_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2287_Regression && $(MAKE) -f GNUmakefile.Bug_2287_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2287_Regression && $(MAKE) -f GNUmakefile.Bug_2287_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2287_Regression && $(MAKE) -f GNUmakefile.Bug_2287_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2316_Regression && $(MAKE) -f GNUmakefile.Bug_2316_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2316_Regression && $(MAKE) -f GNUmakefile.Bug_2316_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2316_Regression && $(MAKE) -f GNUmakefile.Bug_2316_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2377_Regression && $(MAKE) -f GNUmakefile.Bug_2377_Regression_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2615_Regression && $(MAKE) -f GNUmakefile.Bug_2615_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2615_Regression && $(MAKE) -f GNUmakefile.Bug_2615_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2615_Regression && $(MAKE) -f GNUmakefile.Bug_2615_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2709_Regression && $(MAKE) -f GNUmakefile.Bug_2709_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2709_Regression && $(MAKE) -f GNUmakefile.Bug_2709_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2709_Regression && $(MAKE) -f GNUmakefile.Bug_2709_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2800_Regression && $(MAKE) -f GNUmakefile.Bug_2800_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2800_Regression && $(MAKE) -f GNUmakefile.Bug_2800_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2800_Regression && $(MAKE) -f GNUmakefile.Bug_2800_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2800_Regression && $(MAKE) -f GNUmakefile.Bug_2800_Regression_NsMain $(@)
$(KEEP_GOING)@cd tao/DiffServPolicy && $(MAKE) -f GNUmakefile.DiffServPolicy_Idl $(@)
$(KEEP_GOING)@cd tao/DiffServPolicy && $(MAKE) -f GNUmakefile.DiffServPolicy $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2925_Regression && $(MAKE) -f GNUmakefile.Bug_2925_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2925_Regression && $(MAKE) -f GNUmakefile.Bug_2925_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_2925_Regression && $(MAKE) -f GNUmakefile.Bug_2925_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3215_Regression && $(MAKE) -f GNUmakefile.Bug_3215_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3215_Regression && $(MAKE) -f GNUmakefile.Bug_3215_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3215_Regression && $(MAKE) -f GNUmakefile.Bug_3215_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3216_Regression && $(MAKE) -f GNUmakefile.Bug_3216_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3216_Regression && $(MAKE) -f GNUmakefile.Bug_3216_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3216_Regression && $(MAKE) -f GNUmakefile.Bug_3216_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3387_Regression && $(MAKE) -f GNUmakefile.Bug_3387_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3387_Regression && $(MAKE) -f GNUmakefile.Bug_3387_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3387_Regression && $(MAKE) -f GNUmakefile.Bug_3387_Regression_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3418_Regression && $(MAKE) -f GNUmakefile.Bug_3418_Regression $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3444_Regression && $(MAKE) -f GNUmakefile.Bug_3444_Regression_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3444_Regression && $(MAKE) -f GNUmakefile.Bug_3444_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3444_Regression && $(MAKE) -f GNUmakefile.Bug_3444_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3486_Regression && $(MAKE) -f GNUmakefile.Bug_3486_Regression_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3486_Regression && $(MAKE) -f GNUmakefile.Bug_3486_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3598b_Regression && $(MAKE) -f GNUmakefile.Bug_3598b_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3598b_Regression && $(MAKE) -f GNUmakefile.Bug_3598b_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3598b_Regression && $(MAKE) -f GNUmakefile.Bug_3598b_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3673_Regression && $(MAKE) -f GNUmakefile.Bug_3673_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3673_Regression && $(MAKE) -f GNUmakefile.Bug_3673_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3673_Regression && $(MAKE) -f GNUmakefile.Bug_3673_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3673_Regression && $(MAKE) -f GNUmakefile.Bug_3673_Regression_NsMain $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Bug_3891_Regression && $(MAKE) -f GNUmakefile.Bug_3891_Regression $(@)
$(KEEP_GOING)@cd orbsvcs/tests/COIOP_Naming_Test && $(MAKE) -f GNUmakefile.COIOP_Naming_Test_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/COIOP_Naming_Test && $(MAKE) -f GNUmakefile.COIOP_Naming_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Concurrency && $(MAKE) -f GNUmakefile.CC_client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/CosEvent/lib && $(MAKE) -f GNUmakefile.CosEvent_Test_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/CosEvent/Basic && $(MAKE) -f GNUmakefile.CosEvent_Basic_Disconnect $(@)
$(KEEP_GOING)@cd orbsvcs/tests/CosEvent/Basic && $(MAKE) -f GNUmakefile.CosEvent_Basic_MT_Disconnect $(@)
$(KEEP_GOING)@cd orbsvcs/tests/CosEvent/Basic && $(MAKE) -f GNUmakefile.CosEvent_Basic_Pull_Push_Event $(@)
$(KEEP_GOING)@cd orbsvcs/tests/CosEvent/Basic && $(MAKE) -f GNUmakefile.CosEvent_Basic_Push_Event $(@)
$(KEEP_GOING)@cd orbsvcs/tests/CosEvent/Basic && $(MAKE) -f GNUmakefile.CosEvent_Basic_Random $(@)
$(KEEP_GOING)@cd orbsvcs/tests/CosEvent/Basic && $(MAKE) -f GNUmakefile.CosEvent_Basic_Shutdown $(@)
$(KEEP_GOING)@cd orbsvcs/tests/CosEvent/Timeout && $(MAKE) -f GNUmakefile.Timeout_Timeout $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_Custom_Marshal && $(MAKE) -f GNUmakefile.EC_Custom_Marshal_IDL $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_Custom_Marshal && $(MAKE) -f GNUmakefile.ECM_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_Custom_Marshal && $(MAKE) -f GNUmakefile.ECM_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_MT_Mcast && $(MAKE) -f GNUmakefile.EC_MT_Mcast $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_Mcast && $(MAKE) -f GNUmakefile.EC_Mcast $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_Multiple && $(MAKE) -f GNUmakefile.EC_Multiple $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_Throughput && $(MAKE) -f GNUmakefile.ECT_Throughput $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_Throughput && $(MAKE) -f GNUmakefile.ECT_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/EC_Throughput && $(MAKE) -f GNUmakefile.ECT_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/lib && $(MAKE) -f GNUmakefile.Event_Test_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Atomic_Reconnect $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_BCast $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Bitmask $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Complex $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Control $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Disconnect $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Gateway $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_MT_Disconnect $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Negation $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Observer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Random $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Reconnect $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Shutdown $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Timeout $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Basic && $(MAKE) -f GNUmakefile.Event_Basic_Wildcard $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/AddrServer && $(MAKE) -f GNUmakefile.AddrServer_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/AddrServer && $(MAKE) -f GNUmakefile.AddrServer_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Common && $(MAKE) -f GNUmakefile.ECMcastTests_lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Complex && $(MAKE) -f GNUmakefile.Complex_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Complex && $(MAKE) -f GNUmakefile.Complex_Gateway_Ec $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Complex && $(MAKE) -f GNUmakefile.Complex_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/RTEC_MCast_Federated && $(MAKE) -f GNUmakefile.RTEC_MCast_Federated_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/RTEC_MCast_Federated && $(MAKE) -f GNUmakefile.RTEC_MCast_Federated_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Simple && $(MAKE) -f GNUmakefile.Simple_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Simple && $(MAKE) -f GNUmakefile.Simple_Gateway_Ec $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Simple && $(MAKE) -f GNUmakefile.Simple_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Two_Way && $(MAKE) -f GNUmakefile.Two_Way_Application $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Mcast/Two_Way && $(MAKE) -f GNUmakefile.Two_Way_Gateway_Ec $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Performance && $(MAKE) -f GNUmakefile.Event_Performance_Connect $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Performance && $(MAKE) -f GNUmakefile.Event_Performance_Inversion $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Performance && $(MAKE) -f GNUmakefile.Event_Performance_Latency $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Performance && $(MAKE) -f GNUmakefile.Event_Performance_Latency_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/Performance && $(MAKE) -f GNUmakefile.Event_Performance_Throughput $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/ThreadFlags && $(MAKE) -f GNUmakefile.TFTest $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/UDP && $(MAKE) -f GNUmakefile.RtEC_UDP_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/UDP && $(MAKE) -f GNUmakefile.RtEC_UDP_Sender $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Event/UDP && $(MAKE) -f GNUmakefile.RtEC_UDP_Receiver $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_Analyzer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_Creator $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_FactoryRegistry $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_FaultConsumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_Notifier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_RMController $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FT_App && $(MAKE) -f GNUmakefile.FT_App_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FaultTolerance/GroupRef_Manipulation && $(MAKE) -f GNUmakefile.GroupRef_Manipulation_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FaultTolerance/GroupRef_Manipulation && $(MAKE) -f GNUmakefile.GroupRef_Manipulation_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FaultTolerance/GroupRef_Manipulation && $(MAKE) -f GNUmakefile.GroupRef_Manipulation_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FaultTolerance/IOGR && $(MAKE) -f GNUmakefile.FaultTolerance_IOGR_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FaultTolerance/IOGR && $(MAKE) -f GNUmakefile.FaultTolerance_IOGR_Manager $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FaultTolerance/IOGR && $(MAKE) -f GNUmakefile.FaultTolerance_IOGR_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FaultTolerance/IOGRManipulation && $(MAKE) -f GNUmakefile.IOGRTest $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FtRtEvent && $(MAKE) -f GNUmakefile.FtRtEvent_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/FtRtEvent && $(MAKE) -f GNUmakefile.FtRtEvent_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/AMI && $(MAKE) -f GNUmakefile.HTIOP_AMI_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/AMI && $(MAKE) -f GNUmakefile.HTIOP_AMI_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/AMI && $(MAKE) -f GNUmakefile.HTIOP_AMI_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/AMI && $(MAKE) -f GNUmakefile.HTIOP_AMI_Simple_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/BiDirectional && $(MAKE) -f GNUmakefile.HTIOP_BiDirectional_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/BiDirectional && $(MAKE) -f GNUmakefile.HTIOP_BiDirectional_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/BiDirectional && $(MAKE) -f GNUmakefile.HTIOP_BiDirectional_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/Hello && $(MAKE) -f GNUmakefile.HTIOP_Hello_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/Hello && $(MAKE) -f GNUmakefile.HTIOP_Hello_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/HTIOP/Hello && $(MAKE) -f GNUmakefile.HTIOP_Hello_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/IOR_MCast && $(MAKE) -f GNUmakefile.IOR_MCast_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/IOR_MCast && $(MAKE) -f GNUmakefile.IOR_MCast_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/IOR_MCast && $(MAKE) -f GNUmakefile.IOR_MCast_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/Bug_2604_Regression && $(MAKE) -f GNUmakefile.Bug_2604_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/Bug_2604_Regression && $(MAKE) -f GNUmakefile.Bug_2604_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/Bug_2604_Regression && $(MAKE) -f GNUmakefile.Bug_2604_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/Bug_689_Regression && $(MAKE) -f GNUmakefile.Bug_689_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/Bug_689_Regression && $(MAKE) -f GNUmakefile.Bug_689_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/Bug_689_Regression && $(MAKE) -f GNUmakefile.Bug_689_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo && $(MAKE) -f GNUmakefile.airplane_idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo && $(MAKE) -f GNUmakefile.airplane_client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo && $(MAKE) -f GNUmakefile.airplane_server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo && $(MAKE) -f GNUmakefile.nestea_idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo && $(MAKE) -f GNUmakefile.nestea_server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo && $(MAKE) -f GNUmakefile.nestea_client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/NameService && $(MAKE) -f GNUmakefile.ImplRepo_NameService $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/ReconnectServer && $(MAKE) -f GNUmakefile.ReconnectServer_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/ReconnectServer && $(MAKE) -f GNUmakefile.ReconnectServer_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/ReconnectServer && $(MAKE) -f GNUmakefile.ReconnectServer_ServerB $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/ReconnectServer && $(MAKE) -f GNUmakefile.ReconnectServer_ServerA $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/scale && $(MAKE) -f GNUmakefile.scaletest_idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/scale && $(MAKE) -f GNUmakefile.scaletest_client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ImplRepo/scale && $(MAKE) -f GNUmakefile.scaletest_server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Application_Test && $(MAKE) -f GNUmakefile.IFR_Application_Test_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Application_Test && $(MAKE) -f GNUmakefile.IFR_Application_Test_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Bug_2962_Regression && $(MAKE) -f GNUmakefile.Bug_2962_Regression $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Bug_3155_Regression && $(MAKE) -f GNUmakefile.Bug_3155_Regression_Test_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Bug_3174_Regression && $(MAKE) -f GNUmakefile.Bug_3174_Regression_Test_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Bug_3495_Regression && $(MAKE) -f GNUmakefile.Bug_3495_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Bug_3495_Regression && $(MAKE) -f GNUmakefile.Bug_3495_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Bug_3495_Regression && $(MAKE) -f GNUmakefile.Bug_3495_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/IDL3_Test && $(MAKE) -f GNUmakefile.IFR_IDL3_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test && $(MAKE) -f GNUmakefile.IFR_Inheritance_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/IFR_Self_Recursive_IDL_Test && $(MAKE) -f GNUmakefile.IFR_Self_Recursive_IDL_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/IFR_Self_Recursive_IDL_Test && $(MAKE) -f GNUmakefile.IFR_Self_Recursive_IDL_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/IFR_Self_Recursive_IDL_Test && $(MAKE) -f GNUmakefile.IFR_Self_Recursive_IDL_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/IFR_Test && $(MAKE) -f GNUmakefile.IFR_IFR_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Latency_Test && $(MAKE) -f GNUmakefile.Latency_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Persistence_Test && $(MAKE) -f GNUmakefile.IFR_Persistence_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/InterfaceRepo/Union_Forward_Test && $(MAKE) -f GNUmakefile.Union_Forward_Test_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Interoperable_Naming && $(MAKE) -f GNUmakefile.Interoperable_Naming $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled && $(MAKE) -f GNUmakefile.Application_Controlled_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled && $(MAKE) -f GNUmakefile.Application_Controlled_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled && $(MAKE) -f GNUmakefile.Application_Controlled_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl && $(MAKE) -f GNUmakefile.DeadMemberDetection_App_Ctrl_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl && $(MAKE) -f GNUmakefile.DeadMemberDetection_App_Ctrl_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl && $(MAKE) -f GNUmakefile.DeadMemberDetection_App_Ctrl_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl && $(MAKE) -f GNUmakefile.DeadMemberDetection_Inf_Ctrl_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl && $(MAKE) -f GNUmakefile.DeadMemberDetection_Inf_Ctrl_Factory $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl && $(MAKE) -f GNUmakefile.DeadMemberDetection_Inf_Ctrl_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl && $(MAKE) -f GNUmakefile.DeadMemberDetection_Inf_Ctrl_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled && $(MAKE) -f GNUmakefile.Infrastructure_Controlled_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled && $(MAKE) -f GNUmakefile.Infrastructure_Controlled_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled && $(MAKE) -f GNUmakefile.Infrastructure_Controlled_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/GenericFactory/Manage_Object_Group && $(MAKE) -f GNUmakefile.Manage_Object_Group_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/LoadBalancing/LoadMonitor/CPU && $(MAKE) -f GNUmakefile.LoadMonitorCPU_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Log/Basic_Log_Test && $(MAKE) -f GNUmakefile.Log_Basic_Log_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Miop/McastHello && $(MAKE) -f GNUmakefile.McastHello_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Miop/McastHello && $(MAKE) -f GNUmakefile.McastHello_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Miop/McastHello && $(MAKE) -f GNUmakefile.McastHello_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_AdminProperties $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_ConnectDisconnect $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_Events $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_Filter $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_IdAssignment $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_LifeCycle $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_MultiTypes $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_Sequence $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_Simple $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Basic && $(MAKE) -f GNUmakefile.Basic_Notify_Updates $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Blocking && $(MAKE) -f GNUmakefile.Blocking_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Blocking && $(MAKE) -f GNUmakefile.Blocking_Ntf_Struct_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Blocking && $(MAKE) -f GNUmakefile.Blocking_Ntf_Struct_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_1385_Regression && $(MAKE) -f GNUmakefile.Bug_1385_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_1385_Regression && $(MAKE) -f GNUmakefile.Bug_1385_Regression_Ntf_Struct_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_1385_Regression && $(MAKE) -f GNUmakefile.Bug_1385_Regression_Ntf_Struct_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_1884_Regression && $(MAKE) -f GNUmakefile.Bug_1884_Regression_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_1884_Regression && $(MAKE) -f GNUmakefile.Bug_1884_Regression_Filter $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_1884_Regression && $(MAKE) -f GNUmakefile.Bug_1884_Regression_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_2415_Regression && $(MAKE) -f GNUmakefile.Bug_2415_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_2415_Regression && $(MAKE) -f GNUmakefile.Bug_2415_Regression_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_2415_Regression && $(MAKE) -f GNUmakefile.Bug_2415_Regression_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_2561_Regression && $(MAKE) -f GNUmakefile.Bug_2561_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_2561_Regression && $(MAKE) -f GNUmakefile.Bug_2561_Regression_Ntf_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_2561_Regression && $(MAKE) -f GNUmakefile.Bug_2561_Regression_Ntf_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_2926_Regression && $(MAKE) -f GNUmakefile.Bug_2926_Regression_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_2926_Regression && $(MAKE) -f GNUmakefile.Bug_2926_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3252_Regression && $(MAKE) -f GNUmakefile.Bug_3252_Regression_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3252_Regression && $(MAKE) -f GNUmakefile.Bug_3252_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3646a_Regression && $(MAKE) -f GNUmakefile.Bug_3646a_Regression_Ntf_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3646b_Regression && $(MAKE) -f GNUmakefile.Bug_3646b_Regression_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3646b_Regression && $(MAKE) -f GNUmakefile.Bug_3646b_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3646c_Regression && $(MAKE) -f GNUmakefile.Bug_3646c_Regression_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3646c_Regression && $(MAKE) -f GNUmakefile.Bug_3646c_Regression_Ntf_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3646c_Regression && $(MAKE) -f GNUmakefile.Bug_3646c_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3646d_Regression && $(MAKE) -f GNUmakefile.Bug_3646d_Regression_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3646d_Regression && $(MAKE) -f GNUmakefile.Bug_3646d_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3663_Regression && $(MAKE) -f GNUmakefile.Bug_3663_Regression_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3663_Regression && $(MAKE) -f GNUmakefile.Bug_3663_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3688_Regression && $(MAKE) -f GNUmakefile.Bug_3688_Regression_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3688_Regression && $(MAKE) -f GNUmakefile.Bug_3688_Regression_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3688b_Regression && $(MAKE) -f GNUmakefile.Bug_3688b_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Bug_3688b_Regression && $(MAKE) -f GNUmakefile.Bug_3688b_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Destroy && $(MAKE) -f GNUmakefile.Notify_Test_Destroy $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Discarding && $(MAKE) -f GNUmakefile.Discarding_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Discarding && $(MAKE) -f GNUmakefile.Discarding_Ntf_Struct_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Discarding && $(MAKE) -f GNUmakefile.Discarding_Ntf_Seq_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Discarding && $(MAKE) -f GNUmakefile.Discarding_Ntf_Seq_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Discarding && $(MAKE) -f GNUmakefile.Discarding_Ntf_Struct_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Driver && $(MAKE) -f GNUmakefile.Notify_Test_Driver $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/MC && $(MAKE) -f GNUmakefile.MonitorControl_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/MC && $(MAKE) -f GNUmakefile.MonitorControl_Monitor $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/MC && $(MAKE) -f GNUmakefile.MonitorControl_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/MC && $(MAKE) -f GNUmakefile.MonitorControl_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/MT_Dispatching && $(MAKE) -f GNUmakefile.MT_Dispatching_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/MT_Dispatching && $(MAKE) -f GNUmakefile.MT_Dispatching_Ntf_Struct_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/MT_Dispatching && $(MAKE) -f GNUmakefile.MT_Dispatching_Ntf_Struct_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Ordering && $(MAKE) -f GNUmakefile.Ordering_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Ordering && $(MAKE) -f GNUmakefile.Ordering_Ntf_Seq_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Ordering && $(MAKE) -f GNUmakefile.Ordering_Ntf_Seq_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Ordering && $(MAKE) -f GNUmakefile.Ordering_Ntf_Struct_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Ordering && $(MAKE) -f GNUmakefile.Ordering_Ntf_Struct_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Persistent_Filter && $(MAKE) -f GNUmakefile.consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Persistent_Filter && $(MAKE) -f GNUmakefile.supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Persistent_POA && $(MAKE) -f GNUmakefile.Persistent_POA_Notify_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/PluggableTopology && $(MAKE) -f GNUmakefile.PlugTop_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/PluggableTopology && $(MAKE) -f GNUmakefile.PlugTop $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/RT_lib && $(MAKE) -f GNUmakefile.RT_Notify_lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Reconnecting && $(MAKE) -f GNUmakefile.Reconnecting_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Reconnecting && $(MAKE) -f GNUmakefile.Reconnecting_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter && $(MAKE) -f GNUmakefile.Seq_Multi_ETCL_Filter_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter && $(MAKE) -f GNUmakefile.Seq_Multi_ETCL_Filter_Ntf_Seq_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter && $(MAKE) -f GNUmakefile.Seq_Multi_ETCL_Filter_Ntf_Seq_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Sequence_Multi_Filter && $(MAKE) -f GNUmakefile.Seq_Multi_Filter_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Sequence_Multi_Filter && $(MAKE) -f GNUmakefile.Seq_Multi_Filter_Ntf_Seq_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Sequence_Multi_Filter && $(MAKE) -f GNUmakefile.Seq_Multi_Filter_Ntf_Seq_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Structured_Filter && $(MAKE) -f GNUmakefile.Struct_Filter_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Structured_Filter && $(MAKE) -f GNUmakefile.Struct_Filter_Ntf_Struct_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Structured_Filter && $(MAKE) -f GNUmakefile.Struct_Filter_Ntf_Struct_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Structured_Multi_Filter && $(MAKE) -f GNUmakefile.Struct_Multi_Filter_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Structured_Multi_Filter && $(MAKE) -f GNUmakefile.Struct_Multi_Filter_Ntf_Struct_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Structured_Multi_Filter && $(MAKE) -f GNUmakefile.Struct_Multi_Filter_Ntf_Struct_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Test_Filter && $(MAKE) -f GNUmakefile.TAO_RT_NotifyTests_Filter $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Timeout && $(MAKE) -f GNUmakefile.Tao__Timeout_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Timeout && $(MAKE) -f GNUmakefile.Timeout_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Timeout && $(MAKE) -f GNUmakefile.Timeout_Supplier $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/Validate_Client && $(MAKE) -f GNUmakefile.Validate_Client_Proxy_Dummy $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/XML_Persistence && $(MAKE) -f GNUmakefile.XML_Persistence $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/performance-tests/Filter && $(MAKE) -f GNUmakefile.Filter_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/performance-tests/Filter && $(MAKE) -f GNUmakefile.Filter_Notify_Perf_Sequence_Consumer $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/performance-tests/Filter && $(MAKE) -f GNUmakefile.Filter_Ntf_Perf_Seq_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/performance-tests/Filter && $(MAKE) -f GNUmakefile.Filter_Ntf_Perf_Struct_Cons $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/performance-tests/Filter && $(MAKE) -f GNUmakefile.Filter_Ntf_Perf_Struct_Supp $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/performance-tests/RedGreen && $(MAKE) -f GNUmakefile.RedGreen_Ntf_Perf_RedGreen $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Notify/performance-tests/Throughput && $(MAKE) -f GNUmakefile.Throughput_Ntf_Perf_Throughput $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Property && $(MAKE) -f GNUmakefile.Property_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Property && $(MAKE) -f GNUmakefile.Property_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Redundant_Naming && $(MAKE) -f GNUmakefile.Redundant_Naming_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Sched && $(MAKE) -f GNUmakefile.Sched $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Sched_Conf && $(MAKE) -f GNUmakefile.Sched_Conf $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/BiDirectional && $(MAKE) -f GNUmakefile.Secure_BiDir_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/BiDirectional && $(MAKE) -f GNUmakefile.Secure_BiDir_SSL_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/BiDirectional && $(MAKE) -f GNUmakefile.Secure_BiDir_SSL_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Big_Request && $(MAKE) -f GNUmakefile.Big_Request_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Big_Request && $(MAKE) -f GNUmakefile.Big_Request_Security_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Big_Request && $(MAKE) -f GNUmakefile.Big_Request_Security_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Bug_1107_Regression && $(MAKE) -f GNUmakefile.Bug_1107_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Bug_1107_Regression && $(MAKE) -f GNUmakefile.Bug_1107_Regression_Security_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Bug_1107_Regression && $(MAKE) -f GNUmakefile.Bug_1107_Regression_Security_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Bug_2908_Regression && $(MAKE) -f GNUmakefile.Bug_2908_Regression_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Bug_2908_Regression && $(MAKE) -f GNUmakefile.Bug_2908_Regression_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Bug_2908_Regression && $(MAKE) -f GNUmakefile.Bug_2908_Regression_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Callback && $(MAKE) -f GNUmakefile.Callback_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Callback && $(MAKE) -f GNUmakefile.Callback_Security_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Callback && $(MAKE) -f GNUmakefile.Callback_Security_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Crash_Test && $(MAKE) -f GNUmakefile.Security_Crash_Test_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Crash_Test && $(MAKE) -f GNUmakefile.Security_Crash_Test_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Crash_Test && $(MAKE) -f GNUmakefile.Security_Crash_Test_Server $(@)
$(KEEP_GOING)@cd tao/EndpointPolicy && $(MAKE) -f GNUmakefile.EndpointPolicy_Core_Idl $(@)
$(KEEP_GOING)@cd tao/EndpointPolicy && $(MAKE) -f GNUmakefile.EndpointPolicy $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/EndpointPolicy && $(MAKE) -f GNUmakefile.EndpointPolicy_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/InsecureReferences && $(MAKE) -f GNUmakefile.InsecureReferences_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_BiDir_SSL && $(MAKE) -f GNUmakefile.MT_BiDir_SSL_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_BiDir_SSL && $(MAKE) -f GNUmakefile.MT_BiDir_SSL_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_BiDir_SSL && $(MAKE) -f GNUmakefile.MT_BiDir_SSL_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_IIOP_SSL && $(MAKE) -f GNUmakefile.MT_IIOP_SSL_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_IIOP_SSL && $(MAKE) -f GNUmakefile.MT_IIOP_SSL_Security_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_IIOP_SSL && $(MAKE) -f GNUmakefile.MT_IIOP_SSL_Security_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_SSLIOP && $(MAKE) -f GNUmakefile.MT_SSLIOP_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_SSLIOP && $(MAKE) -f GNUmakefile.MT_SSLIOP_Security_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/MT_SSLIOP && $(MAKE) -f GNUmakefile.MT_SSLIOP_Security_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Null_Cipher && $(MAKE) -f GNUmakefile.Null_Cipher_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Null_Cipher && $(MAKE) -f GNUmakefile.Null_Cipher_Security_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Null_Cipher && $(MAKE) -f GNUmakefile.Null_Cipher_Security_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Secure_Invocation && $(MAKE) -f GNUmakefile.Secure_Invocation_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Secure_Invocation && $(MAKE) -f GNUmakefile.Secure_Invocation_Security_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/Secure_Invocation && $(MAKE) -f GNUmakefile.Secure_Invocation_Security_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/mixed_security_test && $(MAKE) -f GNUmakefile.mixed_security_idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/mixed_security_test && $(MAKE) -f GNUmakefile.mixed_security_security_server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/mixed_security_test && $(MAKE) -f GNUmakefile.mixed_security_security_client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/ssliop_CSD && $(MAKE) -f GNUmakefile.Ssliop_CSD_Idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/ssliop_CSD && $(MAKE) -f GNUmakefile.Ssliop_CSD_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/ssliop_CSD && $(MAKE) -f GNUmakefile.Ssliop_CSD_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Security/ssliop_corbaloc && $(MAKE) -f GNUmakefile.Corbaloc_Ssliop_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Simple_Naming && $(MAKE) -f GNUmakefile.Simple_Naming_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Time && $(MAKE) -f GNUmakefile.Time_Orbsvcs_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Trading && $(MAKE) -f GNUmakefile.Trading_Test_Lib $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Trading && $(MAKE) -f GNUmakefile.Trading_Colocated_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Trading && $(MAKE) -f GNUmakefile.Trading_Export_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/Trading && $(MAKE) -f GNUmakefile.Trading_Import_Test $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ior_corbaname && $(MAKE) -f GNUmakefile.ior_corbaname_idl $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ior_corbaname && $(MAKE) -f GNUmakefile.ior_corbaname_client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/ior_corbaname && $(MAKE) -f GNUmakefile.ior_corbaname_server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/tests_svc_loader && $(MAKE) -f GNUmakefile.tests_svc_loader $(@)
$(KEEP_GOING)@cd orbsvcs/tests/unit/Notify/MC/Control && $(MAKE) -f GNUmakefile.Control $(@)
$(KEEP_GOING)@cd orbsvcs/tests/unit/Notify/MC/MonitorControlExt && $(MAKE) -f GNUmakefile.MonitorControlExt $(@)
$(KEEP_GOING)@cd orbsvcs/tests/unit/Notify/MC/MonitorManager && $(MAKE) -f GNUmakefile.MonitorManager_Client $(@)
$(KEEP_GOING)@cd orbsvcs/tests/unit/Notify/MC/MonitorManager && $(MAKE) -f GNUmakefile.MonitorManager_Server $(@)
$(KEEP_GOING)@cd orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor && $(MAKE) -f GNUmakefile.NotificationServiceMonitor $(@)
$(KEEP_GOING)@cd orbsvcs/tests/unit/Notify/MC/Statistic && $(MAKE) -f GNUmakefile.Statistic $(@)
$(KEEP_GOING)@cd orbsvcs/tests/unit/Notify/MC/Statistic_Registry && $(MAKE) -f GNUmakefile.Statistic_Registry $(@)
$(KEEP_GOING)@cd orbsvcs/tests/unit/Trading/Interpreter && $(MAKE) -f GNUmakefile.Interpreter $(@)
$(KEEP_GOING)@cd performance-tests/Anyop && $(MAKE) -f GNUmakefile.Anyop $(@)
$(KEEP_GOING)@cd performance-tests/CSD_Strategy/TestInf && $(MAKE) -f GNUmakefile.csd_pt_testinf $(@)
$(KEEP_GOING)@cd performance-tests/CSD_Strategy/TestServant && $(MAKE) -f GNUmakefile.csd_pt_testservant $(@)
$(KEEP_GOING)@cd performance-tests/CSD_Strategy/TestApps && $(MAKE) -f GNUmakefile.csd_test_client $(@)
$(KEEP_GOING)@cd performance-tests/CSD_Strategy/TestApps && $(MAKE) -f GNUmakefile.csd_test_server $(@)
$(KEEP_GOING)@cd performance-tests/Callback && $(MAKE) -f GNUmakefile.Callback_Perf_IDL $(@)
$(KEEP_GOING)@cd performance-tests/Callback && $(MAKE) -f GNUmakefile.Callback_Server $(@)
$(KEEP_GOING)@cd performance-tests/Callback && $(MAKE) -f GNUmakefile.Callback_Client $(@)
$(KEEP_GOING)@cd performance-tests/Cubit/TAO/IDL_Cubit && $(MAKE) -f GNUmakefile.IDL_Cubit_IDL $(@)
$(KEEP_GOING)@cd performance-tests/Cubit/TAO/IDL_Cubit && $(MAKE) -f GNUmakefile.IDL_Cubit_Collocation $(@)
$(KEEP_GOING)@cd performance-tests/Cubit/TAO/IDL_Cubit && $(MAKE) -f GNUmakefile.IDL_Cubit_Server $(@)
$(KEEP_GOING)@cd performance-tests/Cubit/TAO/DII_Cubit && $(MAKE) -f GNUmakefile.DII_Cubit_Client $(@)
$(KEEP_GOING)@cd performance-tests/Cubit/TAO/IDL_Cubit && $(MAKE) -f GNUmakefile.IDL_Cubit_Client $(@)
$(KEEP_GOING)@cd performance-tests/Cubit/TAO/MT_Cubit && $(MAKE) -f GNUmakefile.MT_Cubit_IDL $(@)
$(KEEP_GOING)@cd performance-tests/Cubit/TAO/MT_Cubit && $(MAKE) -f GNUmakefile.MT_Cubit_Server $(@)
$(KEEP_GOING)@cd performance-tests/Cubit/TAO/MT_Cubit && $(MAKE) -f GNUmakefile.MT_Cubit_Client $(@)
$(KEEP_GOING)@cd performance-tests/Latency/AMH_Single_Threaded && $(MAKE) -f GNUmakefile.Single_Threaded_AMH_Latency_Idl $(@)
$(KEEP_GOING)@cd performance-tests/Latency/AMH_Single_Threaded && $(MAKE) -f GNUmakefile.Single_Threaded_AMH_Latency_Server $(@)
$(KEEP_GOING)@cd performance-tests/Latency/AMH_Single_Threaded && $(MAKE) -f GNUmakefile.Single_Threaded_AMH_Latency_Client $(@)