forked from open-mpi/ompi-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.hgignore_global
1149 lines (1149 loc) · 39.8 KB
/
.hgignore_global
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
# Automatically generated by build-hgignore.pl; edits may be lost!
syntax: glob
./config.cache
./Makefile.in
./doxygen
./bin
./lib
./cscope.*
./etags
./.cdt*
./.project
./.gdb*
./GRTAGS
./GSYMS
./GTAGS
./GPATH
./vc70.pdb
./.gitignore
./.hgignore_local
./config.lt
./config/ylwrap
./config/Makefile.in
./config/compile
./config/test-driver
./config/ltmain.sh.orig
./config/mkinstalldirs
./config/mca_no_configure_components.m4
./config/mca_m4_config_include.m4
./config/ext_no_configure_components.m4
./config/ext_m4_config_include.m4
./config/libtool.m4
./config/libtool.m4.orig
./config/libtool.m4.rej
./config/lt~obsolete.m4
./config/ltdl.m4
./config/argz.m4
./config/ltsugar.m4
./config/ltversion.m4
./config/ltoptions.m4
./config/autogen_found_items.m4
./config/opal_get_version.sh
./contrib/Makefile.in
./contrib/build-mca-comps-outside-of-tree/Makefile.in
./contrib/build-mca-comps-outside-of-tree/btl_tcp2_config.h
./contrib/build-mca-comps-outside-of-tree/btl_tcp2_config.h.in
./contrib/build-mca-comps-outside-of-tree/config
./contrib/build-mca-comps-outside-of-tree/stamp-h?
./contrib/dist/mofed/compile_debian_mlnx_example
./contrib/dist/mofed/debian/changelog
./contrib/dist/mofed/debian/control
./contrib/dist/mofed/debian/copyright
./contrib/dist/mofed/debian/rules
./contrib/scaling/orte_no_op
./contrib/scaling/mpi_no_op
./contrib/scaling/mpi_barrier
./examples/hello_c
./examples/hello_cxx
./examples/hello_mpifh
./examples/hello_usempi
./examples/hello_usempif08
./examples/hello_shmem
./examples/ring_c
./examples/ring_cxx
./examples/ring_mpifh
./examples/ring_usempi
./examples/ring_usempif08
./examples/connectivity_c
./examples/ring_oshmem
./examples/hello_oshmem
./examples/ring_oshmemfh
./examples/hello_oshmemfh
./examples/oshmem_circular_shift
./examples/oshmem_max_reduction
./examples/oshmem_shmalloc
./examples/oshmem_strided_puts
./examples/oshmem_symmetric_data
./ompi/Makefile.in
./ompi/libltdl
./ompi/GPATH
./ompi/GRTAGS
./ompi/GYSMS
./ompi/GTAGS
./ompi/GSYMS
./ompi/contrib/libompitrace/Makefile.in
./ompi/contrib/vt/Makefile.in
./ompi/contrib/vt/vt/config.h
./ompi/contrib/vt/vt/config.h.in
./ompi/contrib/vt/vt/Makefile.in
./ompi/contrib/vt/vt/stamp-h1
./ompi/contrib/vt/vt/config/compile
./ompi/contrib/vt/vt/config/ltmain.sh.orig
./ompi/contrib/vt/vt/config/m4/libtool.m4
./ompi/contrib/vt/vt/config/m4/lt~obsolete.m4
./ompi/contrib/vt/vt/config/m4/ltoptions.m4
./ompi/contrib/vt/vt/config/m4/ltsugar.m4
./ompi/contrib/vt/vt/config/m4/ltversion.m4
./ompi/contrib/vt/vt/config/mpigen/mk_c_wrapper.sh
./ompi/contrib/vt/vt/config/mpigen/mk_fortran_wrapper.sh
./ompi/contrib/vt/vt/config/mpigen/mk_registry.sh
./ompi/contrib/vt/vt/doc/Makefile.in
./ompi/contrib/vt/vt/extlib/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/config.h
./ompi/contrib/vt/vt/extlib/otf/config.h.in
./ompi/contrib/vt/vt/extlib/otf/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/stamp-h1
./ompi/contrib/vt/vt/extlib/otf/config/ltmain.sh.orig
./ompi/contrib/vt/vt/extlib/otf/config/py-compile
./ompi/contrib/vt/vt/extlib/otf/config/compile
./ompi/contrib/vt/vt/extlib/otf/config/m4/libtool.m4
./ompi/contrib/vt/vt/extlib/otf/config/m4/lt~obsolete.m4
./ompi/contrib/vt/vt/extlib/otf/config/m4/ltoptions.m4
./ompi/contrib/vt/vt/extlib/otf/config/m4/ltsugar.m4
./ompi/contrib/vt/vt/extlib/otf/config/m4/ltversion.m4
./ompi/contrib/vt/vt/extlib/otf/docu/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/otfauxlib/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/otflib/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/otflib/OTF_inttypes_unix.h
./ompi/contrib/vt/vt/extlib/otf/otflib_py/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tests/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tests/generic_streams/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tests/generic_streams/otf_generic_streams
./ompi/contrib/vt/vt/extlib/otf/tests/generic_streams-mpi/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tests/generic_streams-mpi/otf_generic_streams_mpi
./ompi/contrib/vt/vt/extlib/otf/tests/hello/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tests/hello/otf_hello
./ompi/contrib/vt/vt/extlib/otf/tests/progress/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tests/progress/otf_progress
./ompi/contrib/vt/vt/extlib/otf/tests/read_from_buffer/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tests/read_from_buffer/otf_read_from_buffer
./ompi/contrib/vt/vt/extlib/otf/tests/thumbnail/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tests/thumbnail/otf_thumbnail
./ompi/contrib/vt/vt/extlib/otf/tools/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otf2vtf/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otf2vtf/otf2vtf
./ompi/contrib/vt/vt/extlib/otf/tools/otfaux/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfaux/otfaux
./ompi/contrib/vt/vt/extlib/otf/tools/otfcompress/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfcompress/otfcompress
./ompi/contrib/vt/vt/extlib/otf/tools/otfconfig/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfconfig/otfconfig
./ompi/contrib/vt/vt/extlib/otf/tools/otfdump/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfdump/otfdump
./ompi/contrib/vt/vt/extlib/otf/tools/otfdump/otfprint
./ompi/contrib/vt/vt/extlib/otf/tools/otfinfo/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfinfo/otfinfo
./ompi/contrib/vt/vt/extlib/otf/tools/otfmerge/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfmerge/otfmerge
./ompi/contrib/vt/vt/extlib/otf/tools/otfmerge/mpi/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfmerge/mpi/otfmerge-mpi
./ompi/contrib/vt/vt/extlib/otf/tools/otfmerge/mpi/otfmerge.c
./ompi/contrib/vt/vt/extlib/otf/tools/otfmerge/mpi/handler.c
./ompi/contrib/vt/vt/extlib/otf/tools/otfmerge-mpi/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfmerge-mpi/otfmerge-mpi
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/otfprofile
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/otfprofile-mpi
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/create_latex.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/create_marker.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/comparison_clinkage.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/comparison_kmeans.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/otfprofile.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/create_csv.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/collect_data.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/summarize_data.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/create_filter.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/process_dispersion.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/clustering.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile/mpi/collect_dispersion.cpp
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile-mpi/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfprofile-mpi/otfprofile-mpi
./ompi/contrib/vt/vt/extlib/otf/tools/otfshrink/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/otfshrink/otfshrink
./ompi/contrib/vt/vt/extlib/otf/tools/vtf2otf/Makefile.in
./ompi/contrib/vt/vt/extlib/otf/tools/vtf2otf/vtf2otf
./ompi/contrib/vt/vt/extlib/otf/vendor/jenkins_hash/Makefile.in
./ompi/contrib/vt/vt/include/Makefile.in
./ompi/contrib/vt/vt/include/vt_inttypes.h
./ompi/contrib/vt/vt/rfg/Makefile.in
./ompi/contrib/vt/vt/tools/Makefile.in
./ompi/contrib/vt/vt/tools/opari/Makefile.in
./ompi/contrib/vt/vt/tools/opari/doc/Makefile.in
./ompi/contrib/vt/vt/tools/opari/tool/Makefile.in
./ompi/contrib/vt/vt/tools/opari/tool/opari
./ompi/contrib/vt/vt/tools/opari/tool/util.c
./ompi/contrib/vt/vt/tools/vtcpcavail/Makefile.in
./ompi/contrib/vt/vt/tools/vtcpcavail/vtcpcavail
./ompi/contrib/vt/vt/tools/vtdyn/Makefile.in
./ompi/contrib/vt/vt/tools/vtdyn/vtdyn
./ompi/contrib/vt/vt/tools/vtdyn/dynattlib/Makefile.in
./ompi/contrib/vt/vt/tools/vtdyn/dynattlib/libvt-dynatt.*
./ompi/contrib/vt/vt/tools/vtfilter/Makefile.in
./ompi/contrib/vt/vt/tools/vtfilter/vtfilter
./ompi/contrib/vt/vt/tools/vtfilter/mpi/Makefile.in
./ompi/contrib/vt/vt/tools/vtfilter/mpi/vtfilter-mpi
./ompi/contrib/vt/vt/tools/vtfilter/mpi/*.cc
./ompi/contrib/vt/vt/tools/vtfilter/mpi/old
./ompi/contrib/vt/vt/tools/vtiofsl/Makefile.in
./ompi/contrib/vt/vt/tools/vtiofsl/vtiofsl-common
./ompi/contrib/vt/vt/tools/vtiofsl/vtiofsl-start
./ompi/contrib/vt/vt/tools/vtiofsl/vtiofsl-stop
./ompi/contrib/vt/vt/tools/vtjava/Makefile.in
./ompi/contrib/vt/vt/tools/vtjava/vtjava
./ompi/contrib/vt/vt/tools/vtlibwrapgen/Makefile.in
./ompi/contrib/vt/vt/tools/vtlibwrapgen/vt_libwrapgen_defs.h
./ompi/contrib/vt/vt/tools/vtlibwrapgen/vtlibwrapgen
./ompi/contrib/vt/vt/tools/vtlibwrapgen/installdirs.c
./ompi/contrib/vt/vt/tools/vtlibwrapgen/util.c
./ompi/contrib/vt/vt/tools/vtrun/Makefile.in
./ompi/contrib/vt/vt/tools/vtrun/vtrun
./ompi/contrib/vt/vt/tools/vtsetup/Makefile.in
./ompi/contrib/vt/vt/tools/vtsetup/vtsetup
./ompi/contrib/vt/vt/tools/vtsetup/vtsetup-config.xml
./ompi/contrib/vt/vt/tools/vtsetup/vtsetup-data.xml
./ompi/contrib/vt/vt/tools/vtsetup/doc/Makefile.in
./ompi/contrib/vt/vt/tools/vtsetup/doc/ChangeLog
./ompi/contrib/vt/vt/tools/vtsetup/doc/LICENSE
./ompi/contrib/vt/vt/tools/vtunify/Makefile.in
./ompi/contrib/vt/vt/tools/vtunify/vtunify
./ompi/contrib/vt/vt/tools/vtunify/mpi/Makefile.in
./ompi/contrib/vt/vt/tools/vtunify/mpi/vtunify-mpi
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_defs.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_events_stats.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_defs_recs.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_handlers.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_markers.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_usrcom.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_sync.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/hooks
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_hooks.cc
./ompi/contrib/vt/vt/tools/vtunify/mpi/vt_unify_tkfac.cc
./ompi/contrib/vt/vt/tools/vtwrapper/Makefile.in
./ompi/contrib/vt/vt/tools/vtwrapper/vtwrapper
./ompi/contrib/vt/vt/tools/vtwrapper/vtcc-wrapper-data.txt
./ompi/contrib/vt/vt/tools/vtwrapper/vtc++-wrapper-data.txt
./ompi/contrib/vt/vt/tools/vtwrapper/vtfort-wrapper-data.txt
./ompi/contrib/vt/vt/tools/vtwrapper/vtnvcc-wrapper-data.txt
./ompi/contrib/vt/vt/tools/vtwrapper/vtf77-wrapper-data.txt
./ompi/contrib/vt/vt/tools/vtwrapper/vtf90-wrapper-data.txt
./ompi/contrib/vt/vt/tools/vtwrapper/util.c
./ompi/contrib/vt/vt/tools/vtwrapper/installdirs.c
./ompi/contrib/vt/vt/util/Makefile.in
./ompi/contrib/vt/vt/util/installdirs_conf.h
./ompi/contrib/vt/vt/vtlib/Makefile.in
./ompi/contrib/vt/vt/vtlib/vt_fmpiwrap.gen.c
./ompi/contrib/vt/vt/vtlib/vt_mpireg.gen.c
./ompi/contrib/vt/vt/vtlib/vt_mpireg.gen.h
./ompi/contrib/vt/vt/vtlib/vt_mpiwrap.gen.c
./ompi/contrib/vt/wrappers/Makefile.in
./ompi/contrib/vt/wrappers/mpi*txt
./ompi/datatype/Makefile.in
./ompi/debuggers/*.in
./ompi/debuggers/dlopen_test
./ompi/debuggers/predefined_gap_test
./ompi/etc/Makefile.in
./ompi/include/Makefile.in
./ompi/include/stamp-h*
./ompi/include/mpi.h
./ompi/include/mpif-config.h
./ompi/include/mpif.h
./ompi/include/mpif-common.h
./ompi/include/mpi-ext.h
./ompi/include/mpif-ext.h
./ompi/include/mpif-constants.h
./ompi/include/mpif-io-handles.h
./ompi/include/mpif-handles.h
./ompi/include/mpif-io-constants.h
./ompi/include/mpi_portable_platform.h
./ompi/include/ompi/version.h
./ompi/include/ompi/frameworks.h
./ompi/mca/allocator/Makefile.in
./ompi/mca/allocator/basic/Makefile.in
./ompi/mca/allocator/bucket/Makefile.in
./ompi/mca/bcol/Makefile.in
./ompi/mca/bcol/basesmuma/Makefile.in
./ompi/mca/bcol/ptpcoll/Makefile.in
./ompi/mca/bml/Makefile.in
./ompi/mca/bml/r2/Makefile.in
./ompi/mca/btl/Makefile.in
./ompi/mca/btl/openib/Makefile.in
./ompi/mca/btl/openib/btl_openib_lex.c
./ompi/mca/btl/portals4/Makefile.in
./ompi/mca/btl/scif/Makefile.in
./ompi/mca/btl/self/Makefile.in
./ompi/mca/btl/sm/Makefile.in
./ompi/mca/btl/smcuda/Makefile.in
./ompi/mca/btl/tcp/Makefile.in
./ompi/mca/btl/ugni/Makefile.in
./ompi/mca/btl/usnic/Makefile.in
./ompi/mca/btl/vader/Makefile.in
./ompi/mca/coll/Makefile.in
./ompi/mca/coll/basic/Makefile.in
./ompi/mca/coll/basic/coll-basic-version.h*
./ompi/mca/coll/fca/Makefile.in
./ompi/mca/coll/hcoll/Makefile.in
./ompi/mca/coll/hierarch/Makefile.in
./ompi/mca/coll/inter/Makefile.in
./ompi/mca/coll/libnbc/Makefile.in
./ompi/mca/coll/ml/Makefile.in
./ompi/mca/coll/ml/coll_ml_lex.c
./ompi/mca/coll/portals4/Makefile.in
./ompi/mca/coll/self/Makefile.in
./ompi/mca/coll/self/coll-self-version.h*
./ompi/mca/coll/sm/Makefile.in
./ompi/mca/coll/sm/coll-sm-version.h*
./ompi/mca/coll/tuned/Makefile.in
./ompi/mca/common/Makefile.in
./ompi/mca/common/cuda/Makefile.in
./ompi/mca/common/mx/Makefile.in
./ompi/mca/common/sm/Makefile.in
./ompi/mca/common/ugni/Makefile.in
./ompi/mca/common/verbs/Makefile.in
./ompi/mca/crcp/Makefile.in
./ompi/mca/crcp/ompi_crcp.7
./ompi/mca/crcp/bkmrk/Makefile.in
./ompi/mca/dpm/Makefile.in
./ompi/mca/dpm/base/Makefile.in
./ompi/mca/dpm/orte/Makefile.in
./ompi/mca/fbtl/Makefile.in
./ompi/mca/fbtl/posix/Makefile.in
./ompi/mca/fbtl/pvfs2/Makefile.in
./ompi/mca/fcoll/Makefile.in
./ompi/mca/fcoll/dynamic/Makefile.in
./ompi/mca/fcoll/individual/Makefile.in
./ompi/mca/fcoll/static/Makefile.in
./ompi/mca/fcoll/two_phase/Makefile.in
./ompi/mca/fcoll/ylib/Makefile.in
./ompi/mca/fs/Makefile.in
./ompi/mca/fs/lustre/Makefile.in
./ompi/mca/fs/pvfs2/Makefile.in
./ompi/mca/fs/ufs/Makefile.in
./ompi/mca/io/Makefile.in
./ompi/mca/io/ompio/Makefile.in
./ompi/mca/io/romio/Makefile.in
./ompi/mca/io/romio/acinclude.m4*
./ompi/mca/io/romio/configure.ac*
./ompi/mca/io/romio/mkinstalldirs
./ompi/mca/io/romio/stamp-h1
./ompi/mca/io/romio/io-romio-version.h*
./ompi/mca/io/romio/romio/Makefile.in
./ompi/mca/io/romio/romio/lib
./ompi/mca/io/romio/romio/localdefs
./ompi/mca/io/romio/romio/adio/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_bgl/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_bglockless/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_gridftp/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_hfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_lustre/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_nfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_ntfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_panfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_pfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_piofs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_pvfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_pvfs2/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_sfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_testfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_ufs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_xfs/Makefile.in
./ompi/mca/io/romio/romio/adio/ad_zoidfs/Makefile.in
./ompi/mca/io/romio/romio/adio/common/Makefile.in
./ompi/mca/io/romio/romio/adio/include/Makefile.in
./ompi/mca/io/romio/romio/adio/include/romioconf.h
./ompi/mca/io/romio/romio/adio/include/romioconf.h.in
./ompi/mca/io/romio/romio/adio/include/stamp-h1
./ompi/mca/io/romio/romio/confdb/.placeholder
./ompi/mca/io/romio/romio/confdb/compile
./ompi/mca/io/romio/romio/confdb/ar-lib
./ompi/mca/io/romio/romio/confdb/libtool.m4
./ompi/mca/io/romio/romio/confdb/ltoptions.m4
./ompi/mca/io/romio/romio/confdb/ltsugar.m4
./ompi/mca/io/romio/romio/confdb/ltversion.m4
./ompi/mca/io/romio/romio/confdb/lt~obsolete.m4
./ompi/mca/io/romio/romio/doc/Makefile.in
./ompi/mca/io/romio/romio/include/Makefile.in
./ompi/mca/io/romio/romio/include/mpio.h
./ompi/mca/io/romio/romio/include/mpiof.h
./ompi/mca/io/romio/romio/mpi-io/Makefile.in
./ompi/mca/io/romio/romio/mpi-io/glue/openmpi/io_romio_mpio_file.c
./ompi/mca/io/romio/romio/mpi-io/glue/openmpi/Makefile.in
./ompi/mca/io/romio/romio/mpi-io/glue/openmpi/io_romio_mpio_err.c
./ompi/mca/io/romio/romio/test/Makefile.in
./ompi/mca/io/romio/romio/test/runtests
./ompi/mca/io/romio/romio/test/large_file.c
./ompi/mca/io/romio/romio/test/misc.c
./ompi/mca/io/romio/romio/test/fcoll_test.f
./ompi/mca/io/romio/romio/test/fmisc.f
./ompi/mca/io/romio/romio/test/fperf.f
./ompi/mca/io/romio/romio/test/pfcoll_test.f
./ompi/mca/io/romio/romio/test/status
./ompi/mca/io/romio/romio/test/coll_test
./ompi/mca/io/romio/romio/test/atomicity
./ompi/mca/io/romio/romio/test/async-multiple
./ompi/mca/io/romio/romio/test/i_noncontig
./ompi/mca/io/romio/romio/test/noncontig_coll2
./ompi/mca/io/romio/romio/test/large_file
./ompi/mca/io/romio/romio/test/shared_fp
./ompi/mca/io/romio/romio/test/misc
./ompi/mca/io/romio/romio/test/perf
./ompi/mca/io/romio/romio/test/noncontig
./ompi/mca/io/romio/romio/test/split_coll
./ompi/mca/io/romio/romio/test/psimple
./ompi/mca/io/romio/romio/test/async
./ompi/mca/io/romio/romio/test/large_array
./ompi/mca/io/romio/romio/test/simple
./ompi/mca/io/romio/romio/test/error
./ompi/mca/io/romio/romio/test/file_info
./ompi/mca/io/romio/romio/test/coll_perf
./ompi/mca/io/romio/romio/test/aggregation1
./ompi/mca/io/romio/romio/test/aggregation2
./ompi/mca/io/romio/romio/test/excl
./ompi/mca/io/romio/romio/test/noncontig_coll
./ompi/mca/io/romio/romio/test/ordered_fp
./ompi/mca/io/romio/romio/test/hindexed
./ompi/mca/io/romio/romio/test-internal/Makefile.in
./ompi/mca/io/romio/romio/util/Makefile.in
./ompi/mca/io/romio/romio/util/romioinstall
./ompi/mca/io/romio/src/Makefile.in
./ompi/mca/io/romio/src/stamp-h1
./ompi/mca/io/romio/src/romio_config.h
./ompi/mca/io/romio/src/romio_config.h.in
./ompi/mca/mpool/Makefile.in
./ompi/mca/mpool/gpusm/Makefile.in
./ompi/mca/mpool/grdma/Makefile.in
./ompi/mca/mpool/rgpusm/Makefile.in
./ompi/mca/mpool/sm/Makefile.in
./ompi/mca/mpool/udreg/Makefile.in
./ompi/mca/mtl/Makefile.in
./ompi/mca/mtl/mx/Makefile.in
./ompi/mca/mtl/mxm/Makefile.in
./ompi/mca/mtl/portals4/Makefile.in
./ompi/mca/mtl/psm/Makefile.in
./ompi/mca/op/Makefile.in
./ompi/mca/op/base/Makefile.in
./ompi/mca/osc/Makefile.in
./ompi/mca/osc/base/Makefile.in
./ompi/mca/osc/portals4/Makefile.in
./ompi/mca/osc/rdma/Makefile.in
./ompi/mca/osc/sm/Makefile.in
./ompi/mca/pml/Makefile.in
./ompi/mca/pml/bfo/Makefile.in
./ompi/mca/pml/cm/Makefile.in
./ompi/mca/pml/crcpw/Makefile.in
./ompi/mca/pml/ob1/Makefile.in
./ompi/mca/pml/v/Makefile.in
./ompi/mca/pml/v/autogen.vprotocols
./ompi/mca/pml/v/mca_vprotocol_config_output
./ompi/mca/pubsub/Makefile.in
./ompi/mca/pubsub/base/Makefile.in
./ompi/mca/pubsub/orte/Makefile.in
./ompi/mca/pubsub/pmi/Makefile.in
./ompi/mca/rcache/Makefile.in
./ompi/mca/rcache/vma/Makefile.in
./ompi/mca/rte/Makefile.in
./ompi/mca/rte/orte/Makefile.in
./ompi/mca/rte/orte/ompi-ps.1
./ompi/mca/rte/orte/ompi-clean.1
./ompi/mca/rte/orte/mpiexec.1
./ompi/mca/rte/orte/ompi-top.1
./ompi/mca/rte/orte/ompi-server.1
./ompi/mca/rte/orte/mpirun.1
./ompi/mca/sbgp/Makefile.in
./ompi/mca/sbgp/basesmsocket/Makefile.in
./ompi/mca/sbgp/basesmuma/Makefile.in
./ompi/mca/sbgp/p2p/Makefile.in
./ompi/mca/sharedfp/Makefile.in
./ompi/mca/sharedfp/individual/Makefile.in
./ompi/mca/sharedfp/lockedfile/Makefile.in
./ompi/mca/sharedfp/sm/Makefile.in
./ompi/mca/topo/Makefile.in
./ompi/mca/topo/basic/Makefile.in
./ompi/mca/vprotocol/Makefile.in
./ompi/mca/vprotocol/base/Makefile.in
./ompi/mca/vprotocol/pessimist/Makefile.in
./ompi/mpi/Makefile.in
./ompi/mpi/c/Makefile.in
./ompi/mpi/c/profile/Makefile.in
./ompi/mpi/c/profile/p*.c
./ompi/mpi/cxx/Makefile.in
./ompi/mpi/fortran/configure-fortran-output.h
./ompi/mpi/fortran/base/Makefile.in
./ompi/mpi/fortran/base/*.mod
./ompi/mpi/fortran/mpiext/Makefile.in
./ompi/mpi/fortran/mpiext/mpi-ext-module.F90
./ompi/mpi/fortran/mpiext/mpi-f08-ext-module.F90
./ompi/mpi/fortran/mpiext/*.mod
./ompi/mpi/fortran/mpif-h/Makefile.in
./ompi/mpi/fortran/mpif-h/profile/Makefile.in
./ompi/mpi/fortran/mpif-h/profile/p*.c
./ompi/mpi/fortran/use-mpi-f08/Makefile.in
./ompi/mpi/fortran/use-mpi-f08/constants.h
./ompi/mpi/fortran/use-mpi-f08/*.mod
./ompi/mpi/fortran/use-mpi-f08-desc/Makefile.in
./ompi/mpi/fortran/use-mpi-f08-desc/*.mod
./ompi/mpi/fortran/use-mpi-ignore-tkr/Makefile.in
./ompi/mpi/fortran/use-mpi-ignore-tkr/mpi-ignore-tkr-interfaces.h
./ompi/mpi/fortran/use-mpi-ignore-tkr/mpi-ignore-tkr-file-interfaces.h
./ompi/mpi/fortran/use-mpi-ignore-tkr/*.mod
./ompi/mpi/fortran/use-mpi-tkr/Makefile.in
./ompi/mpi/fortran/use-mpi-tkr/fortran_kinds.sh
./ompi/mpi/fortran/use-mpi-tkr/fortran_sizes.h
./ompi/mpi/fortran/use-mpi-tkr/mpi_*.f90
./ompi/mpi/fortran/use-mpi-tkr/mpi.mod
./ompi/mpi/fortran/use-mpi-tkr/MPI.mod
./ompi/mpi/fortran/use-mpi-tkr/mpi_kinds.mod
./ompi/mpi/fortran/use-mpi-tkr/mpi_kinds.ompi_module
./ompi/mpi/fortran/use-mpi-tkr/mpi-f90-interfaces.h
./ompi/mpi/fortran/use-mpi-tkr/libmpi_f90.a
./ompi/mpi/fortran/use-mpi-tkr/scripts/Makefile.in
./ompi/mpi/java/Makefile.in
./ompi/mpi/java/c/Makefile.in
./ompi/mpi/java/java/mpi
./ompi/mpi/java/java/Makefile.in
./ompi/mpi/java/java/*.jar
./ompi/mpi/java/java/*.h
./ompi/mpi/java/java/doc
./ompi/mpi/man/man3/MPI*.3
./ompi/mpi/man/man3/OpenMPI.3
./ompi/mpi/man/man3/.dir-stamp
./ompi/mpi/tool/Makefile.in
./ompi/mpi/tool/profile/Makefile.in
./ompi/mpi/tool/profile/*.c
./ompi/mpiext/Makefile.in
./ompi/mpiext/affinity/Makefile.in
./ompi/mpiext/affinity/c/Makefile.in
./ompi/mpiext/affinity/c/OMPI_Affinity_str.3
./ompi/mpiext/affinity/c/example
./ompi/mpiext/cr/Makefile.in
./ompi/mpiext/cr/c/Makefile.in
./ompi/mpiext/example/Makefile.in
./ompi/mpiext/example/c/Makefile.in
./ompi/mpiext/example/mpif-h/Makefile.in
./ompi/mpiext/example/tests/progress_c
./ompi/mpiext/example/tests/progress_mpifh
./ompi/mpiext/example/tests/progress_usempi
./ompi/mpiext/example/tests/progress_usempif08
./ompi/mpiext/example/use-mpi/Makefile.in
./ompi/mpiext/example/use-mpi-f08/Makefile.in
./ompi/mpiext/example/use-mpi-f08/*.mod
./ompi/tools/ompi_info/Makefile.in
./ompi/tools/ompi_info/ompi_info
./ompi/tools/ompi_info/*.ii
./ompi/tools/ompi_info/*.ti
./ompi/tools/ompi_info/ompi_info.1
./ompi/tools/wrappers/Makefile.in
./ompi/tools/wrappers/mpic++-wrapper-data.txt
./ompi/tools/wrappers/mpicc-wrapper-data.txt
./ompi/tools/wrappers/mpifort-wrapper-data.txt
./ompi/tools/wrappers/mpicc.1
./ompi/tools/wrappers/mpic++.1
./ompi/tools/wrappers/mpicxx.1
./ompi/tools/wrappers/mpifort.1
./ompi/tools/wrappers/ompi.pc
./ompi/tools/wrappers/ompi-c.pc
./ompi/tools/wrappers/ompi-cxx.pc
./ompi/tools/wrappers/ompi-fort.pc
./ompi/tools/wrappers/mpijavac.pl
./ompi/tools/wrappers/mpif90.1
./ompi/tools/wrappers/mpif77.1
./opal/Makefile.in
./opal/libltdl
./opal/vc70.pdb
./opal/asm/Makefile.in
./opal/asm/atomic-asm.S
./opal/asm/atomic-test
./opal/asm/vc70.pdb
./opal/asm/*.obj
./opal/asm/generated/atomic-*.s
./opal/class/*.obj
./opal/datatype/Makefile.in
./opal/etc/Makefile.in
./opal/include/Makefile.in
./opal/include/opal_config.h
./opal/include/opal_config.h.in
./opal/include/stamp-h1
./opal/include/opal/install_dirs.h
./opal/include/opal/version.h
./opal/include/opal/frameworks.h
./opal/include/opal/sys/Makefile.in
./opal/include/opal/sys/alpha/Makefile.in
./opal/include/opal/sys/amd64/Makefile.in
./opal/include/opal/sys/ia32/Makefile.in
./opal/include/opal/sys/ia64/Makefile.in
./opal/include/opal/sys/mips/Makefile.in
./opal/include/opal/sys/powerpc/Makefile.in
./opal/include/opal/sys/powerpc/atomic-32.s
./opal/include/opal/sys/powerpc/atomic-64.s
./opal/include/opal/sys/powerpc/atomic-32-64.s
./opal/include/opal/sys/sparcv9/Makefile.in
./opal/include/opal/sys/win32/Makefile.in
./opal/mca/backtrace/Makefile.in
./opal/mca/backtrace/execinfo/Makefile.in
./opal/mca/backtrace/none/Makefile.in
./opal/mca/backtrace/printstack/Makefile.in
./opal/mca/base/Makefile.in
./opal/mca/base/*.obj
./opal/mca/base/mca_base_parse_paramfile_lex.c
./opal/mca/base/vc70.pdb
./opal/mca/common/Makefile.in
./opal/mca/common/pmi/Makefile.in
./opal/mca/compress/Makefile.in
./opal/mca/compress/bzip/Makefile.in
./opal/mca/compress/gzip/Makefile.in
./opal/mca/crs/Makefile.in
./opal/mca/crs/opal_crs.7
./opal/mca/crs/base/Makefile.in
./opal/mca/crs/blcr/Makefile.in
./opal/mca/crs/dmtcp/Makefile.in
./opal/mca/crs/none/Makefile.in
./opal/mca/crs/self/Makefile.in
./opal/mca/db/Makefile.in
./opal/mca/db/hash/Makefile.in
./opal/mca/db/pmi/Makefile.in
./opal/mca/db/print/Makefile.in
./opal/mca/db/sqlite/Makefile.in
./opal/mca/event/Makefile.in
./opal/mca/event/external/Makefile.in
./opal/mca/event/external/makefile.am
./opal/mca/event/libevent2021/Makefile.in
./opal/mca/event/libevent2021/libevent/stamp-h1
./opal/mca/event/libevent2021/libevent/Makefile.in
./opal/mca/event/libevent2021/libevent/config.h
./opal/mca/event/libevent2021/libevent/config.h.in
./opal/mca/event/libevent2021/libevent/libevent.pc
./opal/mca/event/libevent2021/libevent/libevent_openssl.pc
./opal/mca/event/libevent2021/libevent/libevent_pthreads.pc
./opal/mca/event/libevent2021/libevent/compile
./opal/mca/event/libevent2021/libevent/test-driver
./opal/mca/event/libevent2021/libevent/compile
./opal/mca/event/libevent2021/libevent/include/Makefile.in
./opal/mca/event/libevent2021/libevent/include/event2/event-config.h
./opal/mca/event/libevent2021/libevent/m4/ltsugar.m4
./opal/mca/event/libevent2021/libevent/m4/libtool.m4
./opal/mca/event/libevent2021/libevent/m4/ltversion.m4
./opal/mca/event/libevent2021/libevent/m4/lt~obsolete.m4
./opal/mca/event/libevent2021/libevent/m4/ltoptions.m4
./opal/mca/hwloc/Makefile.in
./opal/mca/hwloc/external/Makefile.in
./opal/mca/hwloc/hwloc172/Makefile.in
./opal/mca/hwloc/hwloc172/hwloc/Makefile.in
./opal/mca/hwloc/hwloc172/hwloc/include/Makefile.in
./opal/mca/hwloc/hwloc172/hwloc/include/hwloc/autogen/config.h
./opal/mca/hwloc/hwloc172/hwloc/include/hwloc/autogen/stamp-h?
./opal/mca/hwloc/hwloc172/hwloc/include/private/autogen/config.h
./opal/mca/hwloc/hwloc172/hwloc/include/private/autogen/stamp-h?
./opal/mca/hwloc/hwloc172/hwloc/src/Makefile.in
./opal/mca/if/Makefile.in
./opal/mca/if/bsdx_ipv4/Makefile.in
./opal/mca/if/bsdx_ipv6/Makefile.in
./opal/mca/if/linux_ipv6/Makefile.in
./opal/mca/if/posix_ipv4/Makefile.in
./opal/mca/if/solaris_ipv6/Makefile.in
./opal/mca/installdirs/Makefile.in
./opal/mca/installdirs/config/Makefile.in
./opal/mca/installdirs/config/install_dirs.h
./opal/mca/installdirs/env/Makefile.in
./opal/mca/memchecker/Makefile.in
./opal/mca/memchecker/base/Makefile.in
./opal/mca/memchecker/valgrind/Makefile.in
./opal/mca/memcpy/Makefile.in
./opal/mca/memory/Makefile.in
./opal/mca/memory/vc70.pdb
./opal/mca/memory/base/*.obj
./opal/mca/memory/linux/Makefile.in
./opal/mca/memory/malloc_solaris/Makefile.in
./opal/mca/pstat/Makefile.in
./opal/mca/pstat/*.obj
./opal/mca/pstat/base/*.obj
./opal/mca/pstat/linux/Makefile.in
./opal/mca/pstat/test/Makefile.in
./opal/mca/sec/Makefile.in
./opal/mca/sec/basic/Makefile.in
./opal/mca/sec/keystone/Makefile.in
./opal/mca/shmem/Makefile.in
./opal/mca/shmem/mmap/Makefile.in
./opal/mca/shmem/posix/Makefile.in
./opal/mca/shmem/sysv/Makefile.in
./opal/mca/timer/Makefile.in
./opal/mca/timer/vc70.pdb
./opal/mca/timer/aix/Makefile.in
./opal/mca/timer/altix/Makefile.in
./opal/mca/timer/base/*.obj
./opal/mca/timer/catamount/Makefile.in
./opal/mca/timer/darwin/Makefile.in
./opal/mca/timer/linux/Makefile.in
./opal/mca/timer/solaris/Makefile.in
./opal/memoryhooks/*.obj
./opal/runtime/*.obj
./opal/threads/*.obj
./opal/tools/opal-checkpoint/Makefile.in
./opal/tools/opal-checkpoint/opal-checkpoint
./opal/tools/opal-checkpoint/opal-checkpoint.1
./opal/tools/opal-restart/Makefile.in
./opal/tools/opal-restart/opal-restart
./opal/tools/opal-restart/opal-restart.1
./opal/tools/wrappers/Makefile.in
./opal/tools/wrappers/opalcc-wrapper-data.txt
./opal/tools/wrappers/opalc++-wrapper-data.txt
./opal/tools/wrappers/opalCC-wrapper-data.txt
./opal/tools/wrappers/opal_wrapper
./opal/tools/wrappers/opalcc.1
./opal/tools/wrappers/opalc++.1
./opal/tools/wrappers/generic_wrapper.1
./opal/tools/wrappers/opal_wrapper.1
./opal/tools/wrappers/opal.pc
./opal/util/Makefile.in
./opal/util/*.obj
./opal/util/show_help_lex.c
./opal/util/vc70.pdb
./opal/util/keyval/Makefile.in
./opal/util/keyval/keyval_lex.c
./orte/Makefile.in
./orte/doxygen
./orte/etc/Makefile.in
./orte/include/Makefile.in
./orte/include/stamp-h*
./orte/include/orte_config.h
./orte/include/orte/version.h
./orte/include/orte/frameworks.h
./orte/mca/dfs/Makefile.in
./orte/mca/dfs/app/Makefile.in
./orte/mca/dfs/base/Makefile.in
./orte/mca/dfs/orted/Makefile.in
./orte/mca/dfs/test/Makefile.in
./orte/mca/errmgr/Makefile.in
./orte/mca/errmgr/vc70.pdb
./orte/mca/errmgr/base/*.obj
./orte/mca/errmgr/default_app/Makefile.in
./orte/mca/errmgr/default_hnp/Makefile.in
./orte/mca/errmgr/default_orted/Makefile.in
./orte/mca/errmgr/default_tool/Makefile.in
./orte/mca/ess/Makefile.in
./orte/mca/ess/alps/Makefile.in
./orte/mca/ess/base/Makefile.in
./orte/mca/ess/env/Makefile.in
./orte/mca/ess/hnp/Makefile.in
./orte/mca/ess/lsf/Makefile.in
./orte/mca/ess/pmi/Makefile.in
./orte/mca/ess/singleton/Makefile.in
./orte/mca/ess/slurm/Makefile.in
./orte/mca/ess/tm/Makefile.in
./orte/mca/ess/tool/Makefile.in
./orte/mca/filem/Makefile.in
./orte/mca/filem/orte_filem.7
./orte/mca/filem/base/Makefile.in
./orte/mca/filem/raw/Makefile.in
./orte/mca/grpcomm/Makefile.in
./orte/mca/grpcomm/bad/Makefile.in
./orte/mca/grpcomm/base/Makefile.in
./orte/mca/grpcomm/hier/Makefile.in
./orte/mca/grpcomm/pmi/Makefile.in
./orte/mca/iof/Makefile.in
./orte/mca/iof/hnp/Makefile.in
./orte/mca/iof/mr_hnp/Makefile.in
./orte/mca/iof/mr_orted/Makefile.in
./orte/mca/iof/orted/Makefile.in
./orte/mca/iof/tool/Makefile.in
./orte/mca/odls/Makefile.in
./orte/mca/odls/default/Makefile.in
./orte/mca/odls/default/.gdb_history
./orte/mca/oob/Makefile.in
./orte/mca/oob/tcp/Makefile.in
./orte/mca/oob/tcp/acinclude.m4
./orte/mca/oob/tcp/configure.ac
./orte/mca/oob/tcp/.lam*
./orte/mca/oob/ud/Makefile.in
./orte/mca/plm/Makefile.in
./orte/mca/plm/alps/Makefile.in
./orte/mca/plm/base/Makefile.in
./orte/mca/plm/isolated/Makefile.in
./orte/mca/plm/lsf/Makefile.in
./orte/mca/plm/rsh/Makefile.in
./orte/mca/plm/slurm/Makefile.in
./orte/mca/plm/tm/Makefile.in
./orte/mca/ras/Makefile.in
./orte/mca/ras/alps/Makefile.in
./orte/mca/ras/gridengine/Makefile.in
./orte/mca/ras/loadleveler/Makefile.in
./orte/mca/ras/lsf/Makefile.in
./orte/mca/ras/simulator/Makefile.in
./orte/mca/ras/slurm/Makefile.in
./orte/mca/ras/tm/Makefile.in
./orte/mca/rmaps/Makefile.in
./orte/mca/rmaps/lama/Makefile.in
./orte/mca/rmaps/mindist/Makefile.in
./orte/mca/rmaps/ppr/Makefile.in
./orte/mca/rmaps/rank_file/Makefile.in
./orte/mca/rmaps/rank_file/rmaps_rank_file_lex.c
./orte/mca/rmaps/rank_file/rankfile_lex.c
./orte/mca/rmaps/resilient/Makefile.in
./orte/mca/rmaps/round_robin/Makefile.in
./orte/mca/rmaps/seq/Makefile.in
./orte/mca/rmaps/staged/Makefile.in
./orte/mca/rml/Makefile.in
./orte/mca/rml/ftrm/Makefile.in
./orte/mca/rml/oob/Makefile.in
./orte/mca/routed/Makefile.in
./orte/mca/routed/binomial/Makefile.in
./orte/mca/routed/debruijn/Makefile.in
./orte/mca/routed/direct/Makefile.in
./orte/mca/routed/radix/Makefile.in
./orte/mca/sensor/Makefile.in
./orte/mca/sensor/base/Makefile.in
./orte/mca/sensor/file/Makefile.in
./orte/mca/sensor/ft_tester/Makefile.in
./orte/mca/sensor/heartbeat/Makefile.in
./orte/mca/sensor/resusage/Makefile.in
./orte/mca/snapc/Makefile.in
./orte/mca/snapc/orte_snapc.7
./orte/mca/snapc/base/Makefile.in
./orte/mca/snapc/full/Makefile.in
./orte/mca/sstore/Makefile.in
./orte/mca/sstore/orte_sstore.7
./orte/mca/sstore/central/Makefile.in
./orte/mca/sstore/stage/Makefile.in
./orte/mca/state/Makefile.in
./orte/mca/state/app/Makefile.in
./orte/mca/state/base/Makefile.in
./orte/mca/state/hnp/Makefile.in
./orte/mca/state/novm/Makefile.in
./orte/mca/state/orted/Makefile.in
./orte/mca/state/staged_hnp/Makefile.in
./orte/mca/state/staged_orted/Makefile.in
./orte/mca/state/tool/Makefile.in
./orte/test/mpi/abort
./orte/test/mpi/accept
./orte/test/mpi/bad_exit
./orte/test/mpi/bcast_loop
./orte/test/mpi/cell_spawn
./orte/test/mpi/concurrent_spawn
./orte/test/mpi/connect
./orte/test/mpi/crisscross
./orte/test/mpi/delayed_abort
./orte/test/mpi/hello_barrier
./orte/test/mpi/hello_nodename
./orte/test/mpi/hello_output
./orte/test/mpi/hello_show_help
./orte/test/mpi/hello
./orte/test/mpi/hello++
./orte/test/mpi/loop_child
./orte/test/mpi/loop_spawn
./orte/test/mpi/mpi_barrier
./orte/test/mpi/mpi_no_op
./orte/test/mpi/mpi_spin
./orte/test/mpi/multi_abort
./orte/test/mpi/parallel_r8
./orte/test/mpi/parallel_r64
./orte/test/mpi/parallel_w8
./orte/test/mpi/parallel_w64
./orte/test/mpi/pubsub
./orte/test/mpi/read_write
./orte/test/mpi/reduce-hang
./orte/test/mpi/segv
./orte/test/mpi/simple_spawn
./orte/test/mpi/slave_spawn
./orte/test/mpi/slave
./orte/test/mpi/spawn_multiple
./orte/test/mpi/ziaprobe
./orte/test/mpi/ziatest
./orte/test/mpi/.gdb_history
./orte/test/mpi/junk*
./orte/test/mpi/sio
./orte/test/mpi/sendrecv_blaster
./orte/test/mpi/early_abort
./orte/test/mpi/spawn_problem/ch_rec
./orte/test/mpi/spawn_problem/output
./orte/test/mpi/spawn_problem/start
./orte/test/mpi/debugger
./orte/test/mpi/server_port_name.txt
./orte/test/mpi/singleton_client_server
./orte/test/mpi/intercomm_create
./orte/test/mpi/spawn_tree
./orte/test/mpi/init-exit77
./orte/test/mpi/mpi_info
./orte/test/mpi/thread_init
./orte/test/system/radix
./orte/test/system/sigusr_trap
./orte/test/system/orte_no_op
./orte/test/system/no_op
./orte/test/system/hello
./orte/test/system/hello_nodename
./orte/test/system/hello_null
./orte/test/system/.gdb*
./orte/test/system/spin
./orte/test/system/orte_nodename
./orte/test/system/orte_proc_subscribe
./orte/test/system/orte_spawn
./orte/test/system/orte_stage_gate
./orte/test/system/orte_loop_spawn
./orte/test/system/orte_loop_child
./orte/test/system/orte_abort
./orte/test/system/get_limits
./orte/test/system/orte_ring
./orte/test/system/spawn_child
./orte/test/system/orte_tool
./orte/test/system/binom
./orte/test/system/iof_stress
./orte/test/system/oob_stress
./orte/test/system/iof_delay
./orte/test/system/orte_barrier
./orte/test/system/orte_mcast
./orte/test/system/mcast
./orte/test/system/mcast_recv
./orte/test/system/opal_interface
./orte/test/system/orte_spin
./orte/test/system/segfault
./orte/test/system/sysinfo
./orte/test/system/orte_exit
./orte/test/system/orte_db
./orte/test/system/orte_state
./orte/test/system/orte_sensor
./orte/test/system/event-threads
./orte/test/system/test-time
./orte/test/system/psm_keygen
./orte/test/system/regex
./orte/test/system/orte_errors
./orte/test/system/evthread-test
./orte/test/system/evpri-test
./orte/test/system/opal-evpri-test
./orte/test/system/evpri-test2
./orte/test/system/mapper
./orte/test/system/reducer
./orte/tools/orte-checkpoint/Makefile.in
./orte/tools/orte-checkpoint/orte-checkpoint
./orte/tools/orte-checkpoint/orte-checkpoint.1
./orte/tools/orte-checkpoint/ompi-checkpoint.1
./orte/tools/orte-clean/Makefile.in
./orte/tools/orte-clean/orte-clean
./orte/tools/orte-clean/orte-clean.1
./orte/tools/orte-info/Makefile.in
./orte/tools/orte-info/orte-info
./orte/tools/orte-info/*.exe
./orte/tools/orte-info/orte-info.1
./orte/tools/orte-migrate/Makefile.in
./orte/tools/orte-migrate/orte-migrate
./orte/tools/orte-migrate/orte-migrate.1
./orte/tools/orte-migrate/ompi-migrate.1
./orte/tools/orte-ps/Makefile.in
./orte/tools/orte-ps/orte-ps
./orte/tools/orte-ps/orte-ps.1
./orte/tools/orte-restart/Makefile.in
./orte/tools/orte-restart/orte-restart
./orte/tools/orte-restart/orte-restart.1
./orte/tools/orte-restart/ompi-restart.1
./orte/tools/orte-server/orte-server
./orte/tools/orte-server/Makefile.in
./orte/tools/orte-server/orte-server.1
./orte/tools/orte-top/Makefile.in
./orte/tools/orte-top/orte-top
./orte/tools/orte-top/orte-top.1
./orte/tools/orted/Makefile.in
./orte/tools/orted/orted
./orte/tools/orted/orted.1
./orte/tools/orted/.gdb_history
./orte/tools/orted/*.exe
./orte/tools/orterun/Makefile.in
./orte/tools/orterun/orterun
./orte/tools/orterun/*.exe
./orte/tools/orterun/orterun.1
./orte/tools/wrappers/Makefile.in
./orte/tools/wrappers/ortecc-wrapper-data.txt
./orte/tools/wrappers/ortec++-wrapper-data.txt
./orte/tools/wrappers/ortecc.1
./orte/tools/wrappers/ortec++.1
./orte/tools/wrappers/orte.pc
./orte/util/hostfile/hostfile_lex.c
./orte/util/hostfile/orte_hosts.7
./oshmem/Makefile.in
./oshmem/include/Makefile.in
./oshmem/include/shmem.h
./oshmem/include/stamp-*
./oshmem/include/shmem_portable_platform.h
./oshmem/include/oshmem/frameworks.h
./oshmem/include/oshmem/version.h
./oshmem/include/oshmem/oshmem_config.h
./oshmem/mca/atomic/Makefile.in
./oshmem/mca/atomic/base/Makefile.in
./oshmem/mca/atomic/basic/Makefile.in
./oshmem/mca/atomic/mxm/Makefile.in
./oshmem/mca/memheap/Makefile.in
./oshmem/mca/memheap/base/Makefile.in
./oshmem/mca/memheap/buddy/Makefile.in
./oshmem/mca/memheap/ptmalloc/Makefile.in
./oshmem/mca/scoll/Makefile.in
./oshmem/mca/scoll/base/Makefile.in
./oshmem/mca/scoll/basic/Makefile.in
./oshmem/mca/scoll/fca/Makefile.in
./oshmem/mca/scoll/mpi/Makefile.in
./oshmem/mca/spml/Makefile.in
./oshmem/mca/spml/base/Makefile.in
./oshmem/mca/spml/ikrit/Makefile.in
./oshmem/mca/spml/yoda/Makefile.in
./oshmem/mca/sshmem/Makefile.in
./oshmem/mca/sshmem/.deps/
./oshmem/mca/sshmem/base/static-components.h
./oshmem/mca/sshmem/base/Makefile.in
./oshmem/mca/sshmem/mmap/Makefile.in
./oshmem/mca/sshmem/sysv/Makefile.in
./oshmem/mca/sshmem/verbs/Makefile.in