File: Makefile.in

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (1051 lines) | stat: -rw-r--r-- 40,748 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
# Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@

# Copyright (C) 1994-2021 Free Software Foundation, Inc.

# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.

@SET_MAKE@

#
# Copyright (c) 2022-2023 Cisco Systems, Inc.  All rights reserved.
# Copyright (c) 2023      Jeffrey M. Squyres.  All rights reserved.
#
# Copyright (c) 2023-2024 Nanook Consulting  All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#

# -*- makefile -*-
# Copyright (c) 2008-2022 Cisco Systems, Inc.  All rights reserved.
# Copyright (c) 2008      Sun Microsystems, Inc.  All rights reserved.
# Copyright (c) 2020      Intel, Inc.  All rights reserved.
# Copyright (c) 2023      Nanook Consulting.  All rights reserved.
# Copyright (c) 2023      Jeffrey M. Squyres.  All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
VPATH = @srcdir@
am__is_gnu_make = { \
  if test -z '$(MAKELEVEL)'; then \
    false; \
  elif test -n '$(MAKE_HOST)'; then \
    true; \
  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
    true; \
  else \
    false; \
  fi; \
}
am__make_running_with_option = \
  case $${target_option-} in \
      ?) ;; \
      *) echo "am__make_running_with_option: internal error: invalid" \
              "target option '$${target_option-}' specified" >&2; \
         exit 1;; \
  esac; \
  has_opt=no; \
  sane_makeflags=$$MAKEFLAGS; \
  if $(am__is_gnu_make); then \
    sane_makeflags=$$MFLAGS; \
  else \
    case $$MAKEFLAGS in \
      *\\[\ \	]*) \
        bs=\\; \
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
    esac; \
  fi; \
  skip_next=no; \
  strip_trailopt () \
  { \
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  }; \
  for flg in $$sane_makeflags; do \
    test $$skip_next = yes && { skip_next=no; continue; }; \
    case $$flg in \
      *=*|--*) continue;; \
        -*I) strip_trailopt 'I'; skip_next=yes;; \
      -*I?*) strip_trailopt 'I';; \
        -*O) strip_trailopt 'O'; skip_next=yes;; \
      -*O?*) strip_trailopt 'O';; \
        -*l) strip_trailopt 'l'; skip_next=yes;; \
      -*l?*) strip_trailopt 'l';; \
      -[dEDm]) skip_next=yes;; \
      -[JT]) skip_next=yes;; \
    esac; \
    case $$flg in \
      *$$target_option*) has_opt=yes; break;; \
    esac; \
  done; \
  test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@

###########################################################################

# Have to not list these targets in EXTRA_DIST outside of the
# PRTE_BUILD_DOCS conditional because "make dist" will fail due to
# these missing targets (and therefore not run the "dist-hook" target
# in the top-level Makefile, which prints a pretty message about why
# "make dist" failed).
#
# We list the entire directory trees (html and man) to grab all
# generated files in them.
@PRTE_BUILD_DOCS_TRUE@am__append_1 = \
@PRTE_BUILD_DOCS_TRUE@        $(OUTDIR)/html \
@PRTE_BUILD_DOCS_TRUE@        $(OUTDIR)/man

subdir = docs
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/config/oac/oac_assert.m4 \
	$(top_srcdir)/config/oac/oac_check_os_flavors.m4 \
	$(top_srcdir)/config/oac/oac_check_package.m4 \
	$(top_srcdir)/config/oac/oac_check_vendor.m4 \
	$(top_srcdir)/config/oac/oac_init.m4 \
	$(top_srcdir)/config/oac/oac_linker.m4 \
	$(top_srcdir)/config/oac/oac_list.m4 \
	$(top_srcdir)/config/oac/oac_log.m4 \
	$(top_srcdir)/config/oac/oac_setup_sphinx.m4 \
	$(top_srcdir)/config/oac/oac_summary.m4 \
	$(top_srcdir)/config/oac/oac_var_scope.m4 \
	$(top_srcdir)/config/libtool.m4 \
	$(top_srcdir)/config/ltoptions.m4 \
	$(top_srcdir)/config/ltsugar.m4 \
	$(top_srcdir)/config/ltversion.m4 \
	$(top_srcdir)/config/lt~obsolete.m4 \
	$(top_srcdir)/config/prte_check_attributes.m4 \
	$(top_srcdir)/config/prte_check_cflags.m4 \
	$(top_srcdir)/config/prte_check_compiler_version.m4 \
	$(top_srcdir)/config/prte_check_ident.m4 \
	$(top_srcdir)/config/prte_check_lsf.m4 \
	$(top_srcdir)/config/prte_check_offsetof.m4 \
	$(top_srcdir)/config/prte_check_pthread_pids.m4 \
	$(top_srcdir)/config/prte_check_ptrace.m4 \
	$(top_srcdir)/config/prte_check_sge.m4 \
	$(top_srcdir)/config/prte_check_slurm.m4 \
	$(top_srcdir)/config/prte_check_tm.m4 \
	$(top_srcdir)/config/prte_check_visibility.m4 \
	$(top_srcdir)/config/prte_config_asm.m4 \
	$(top_srcdir)/config/prte_config_files.m4 \
	$(top_srcdir)/config/prte_config_pthreads.m4 \
	$(top_srcdir)/config/prte_config_subdir.m4 \
	$(top_srcdir)/config/prte_config_subdir_args.m4 \
	$(top_srcdir)/config/prte_config_threads.m4 \
	$(top_srcdir)/config/prte_configure_options.m4 \
	$(top_srcdir)/config/prte_ensure_contains_optflags.m4 \
	$(top_srcdir)/config/prte_functions.m4 \
	$(top_srcdir)/config/prte_load_platform.m4 \
	$(top_srcdir)/config/prte_mca.m4 \
	$(top_srcdir)/config/prte_save_version.m4 \
	$(top_srcdir)/config/prte_search_libs.m4 \
	$(top_srcdir)/config/prte_setup_cc.m4 \
	$(top_srcdir)/config/prte_setup_cli.m4 \
	$(top_srcdir)/config/prte_setup_hwloc.m4 \
	$(top_srcdir)/config/prte_setup_libev.m4 \
	$(top_srcdir)/config/prte_setup_libevent.m4 \
	$(top_srcdir)/config/prte_setup_pmix.m4 \
	$(top_srcdir)/config/prte_summary.m4 \
	$(top_srcdir)/config/autogen_found_items.m4 \
	$(top_srcdir)/src/mca/prtebacktrace/configure.m4 \
	$(top_srcdir)/src/mca/prtedl/configure.m4 \
	$(top_srcdir)/src/mca/prteinstalldirs/configure.m4 \
	$(top_srcdir)/src/mca/ess/lsf/configure.m4 \
	$(top_srcdir)/src/mca/ess/slurm/configure.m4 \
	$(top_srcdir)/src/mca/ess/tm/configure.m4 \
	$(top_srcdir)/src/mca/odls/default/configure.m4 \
	$(top_srcdir)/src/mca/oob/tcp/configure.m4 \
	$(top_srcdir)/src/mca/plm/lsf/configure.m4 \
	$(top_srcdir)/src/mca/plm/slurm/configure.m4 \
	$(top_srcdir)/src/mca/plm/ssh/configure.m4 \
	$(top_srcdir)/src/mca/plm/tm/configure.m4 \
	$(top_srcdir)/src/mca/prtebacktrace/execinfo/configure.m4 \
	$(top_srcdir)/src/mca/prtebacktrace/none/configure.m4 \
	$(top_srcdir)/src/mca/prtebacktrace/printstack/configure.m4 \
	$(top_srcdir)/src/mca/prtedl/dlopen/configure.m4 \
	$(top_srcdir)/src/mca/prtedl/libltdl/configure.m4 \
	$(top_srcdir)/src/mca/prteinstalldirs/config/configure.m4 \
	$(top_srcdir)/src/mca/prteinstalldirs/env/configure.m4 \
	$(top_srcdir)/src/mca/prtereachable/netlink/configure.m4 \
	$(top_srcdir)/src/mca/ras/gridengine/configure.m4 \
	$(top_srcdir)/src/mca/ras/lsf/configure.m4 \
	$(top_srcdir)/src/mca/ras/pbs/configure.m4 \
	$(top_srcdir)/src/mca/ras/slurm/configure.m4 \
	$(top_srcdir)/src/mca/schizo/ompi/configure.m4 \
	$(top_srcdir)/src/mca/schizo/prte/configure.m4 \
	$(top_srcdir)/config/prte_get_version.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/src/include/prte_config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo "  GEN     " $@;
am__v_GEN_1 = 
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 = 
SOURCES =
DIST_SOURCES =
am__can_run_installinfo = \
  case $$AM_UPDATE_INFO_DIR in \
    n|no|NO) false;; \
    *) (install-info --version) >/dev/null 2>&1;; \
  esac
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
  test -z "$$files" \
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
         $(am__cd) "$$dir" && rm -f $$files; }; \
  }
man1dir = $(mandir)/man1
am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)"
man5dir = $(mandir)/man5
NROFF = nroff
MANS = $(man1_MANS) $(man5_MANS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in \
	$(top_srcdir)/Makefile.prte-rules
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMCA_PARAM_SETS_DIR = @AMCA_PARAM_SETS_DIR@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCAS = @CCAS@
CCASDEPMODE = @CCASDEPMODE@
CCASFLAGS = @CCASFLAGS@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CLEANFILES = @CLEANFILES@
CONFIGURE_DEPENDENCIES = @CONFIGURE_DEPENDENCIES@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LEX = @LEX@
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MCA_PROJECT_SUBDIRS = @MCA_PROJECT_SUBDIRS@
MCA_prte_FRAMEWORKS = @MCA_prte_FRAMEWORKS@
MCA_prte_FRAMEWORKS_SUBDIRS = @MCA_prte_FRAMEWORKS_SUBDIRS@
MCA_prte_FRAMEWORK_COMPONENT_ALL_SUBDIRS = @MCA_prte_FRAMEWORK_COMPONENT_ALL_SUBDIRS@
MCA_prte_FRAMEWORK_COMPONENT_DSO_SUBDIRS = @MCA_prte_FRAMEWORK_COMPONENT_DSO_SUBDIRS@
MCA_prte_FRAMEWORK_COMPONENT_STATIC_SUBDIRS = @MCA_prte_FRAMEWORK_COMPONENT_STATIC_SUBDIRS@
MCA_prte_FRAMEWORK_LIBS = @MCA_prte_FRAMEWORK_LIBS@
MCA_prte_common_ALL_COMPONENTS = @MCA_prte_common_ALL_COMPONENTS@
MCA_prte_common_ALL_SUBDIRS = @MCA_prte_common_ALL_SUBDIRS@
MCA_prte_common_DSO_COMPONENTS = @MCA_prte_common_DSO_COMPONENTS@
MCA_prte_common_DSO_SUBDIRS = @MCA_prte_common_DSO_SUBDIRS@
MCA_prte_common_STATIC_COMPONENTS = @MCA_prte_common_STATIC_COMPONENTS@
MCA_prte_common_STATIC_LTLIBS = @MCA_prte_common_STATIC_LTLIBS@
MCA_prte_common_STATIC_SUBDIRS = @MCA_prte_common_STATIC_SUBDIRS@
MCA_prte_errmgr_ALL_COMPONENTS = @MCA_prte_errmgr_ALL_COMPONENTS@
MCA_prte_errmgr_ALL_SUBDIRS = @MCA_prte_errmgr_ALL_SUBDIRS@
MCA_prte_errmgr_DSO_COMPONENTS = @MCA_prte_errmgr_DSO_COMPONENTS@
MCA_prte_errmgr_DSO_SUBDIRS = @MCA_prte_errmgr_DSO_SUBDIRS@
MCA_prte_errmgr_STATIC_COMPONENTS = @MCA_prte_errmgr_STATIC_COMPONENTS@
MCA_prte_errmgr_STATIC_LTLIBS = @MCA_prte_errmgr_STATIC_LTLIBS@
MCA_prte_errmgr_STATIC_SUBDIRS = @MCA_prte_errmgr_STATIC_SUBDIRS@
MCA_prte_ess_ALL_COMPONENTS = @MCA_prte_ess_ALL_COMPONENTS@
MCA_prte_ess_ALL_SUBDIRS = @MCA_prte_ess_ALL_SUBDIRS@
MCA_prte_ess_DSO_COMPONENTS = @MCA_prte_ess_DSO_COMPONENTS@
MCA_prte_ess_DSO_SUBDIRS = @MCA_prte_ess_DSO_SUBDIRS@
MCA_prte_ess_STATIC_COMPONENTS = @MCA_prte_ess_STATIC_COMPONENTS@
MCA_prte_ess_STATIC_LTLIBS = @MCA_prte_ess_STATIC_LTLIBS@
MCA_prte_ess_STATIC_SUBDIRS = @MCA_prte_ess_STATIC_SUBDIRS@
MCA_prte_filem_ALL_COMPONENTS = @MCA_prte_filem_ALL_COMPONENTS@
MCA_prte_filem_ALL_SUBDIRS = @MCA_prte_filem_ALL_SUBDIRS@
MCA_prte_filem_DSO_COMPONENTS = @MCA_prte_filem_DSO_COMPONENTS@
MCA_prte_filem_DSO_SUBDIRS = @MCA_prte_filem_DSO_SUBDIRS@
MCA_prte_filem_STATIC_COMPONENTS = @MCA_prte_filem_STATIC_COMPONENTS@
MCA_prte_filem_STATIC_LTLIBS = @MCA_prte_filem_STATIC_LTLIBS@
MCA_prte_filem_STATIC_SUBDIRS = @MCA_prte_filem_STATIC_SUBDIRS@
MCA_prte_grpcomm_ALL_COMPONENTS = @MCA_prte_grpcomm_ALL_COMPONENTS@
MCA_prte_grpcomm_ALL_SUBDIRS = @MCA_prte_grpcomm_ALL_SUBDIRS@
MCA_prte_grpcomm_DSO_COMPONENTS = @MCA_prte_grpcomm_DSO_COMPONENTS@
MCA_prte_grpcomm_DSO_SUBDIRS = @MCA_prte_grpcomm_DSO_SUBDIRS@
MCA_prte_grpcomm_STATIC_COMPONENTS = @MCA_prte_grpcomm_STATIC_COMPONENTS@
MCA_prte_grpcomm_STATIC_LTLIBS = @MCA_prte_grpcomm_STATIC_LTLIBS@
MCA_prte_grpcomm_STATIC_SUBDIRS = @MCA_prte_grpcomm_STATIC_SUBDIRS@
MCA_prte_iof_ALL_COMPONENTS = @MCA_prte_iof_ALL_COMPONENTS@
MCA_prte_iof_ALL_SUBDIRS = @MCA_prte_iof_ALL_SUBDIRS@
MCA_prte_iof_DSO_COMPONENTS = @MCA_prte_iof_DSO_COMPONENTS@
MCA_prte_iof_DSO_SUBDIRS = @MCA_prte_iof_DSO_SUBDIRS@
MCA_prte_iof_STATIC_COMPONENTS = @MCA_prte_iof_STATIC_COMPONENTS@
MCA_prte_iof_STATIC_LTLIBS = @MCA_prte_iof_STATIC_LTLIBS@
MCA_prte_iof_STATIC_SUBDIRS = @MCA_prte_iof_STATIC_SUBDIRS@
MCA_prte_odls_ALL_COMPONENTS = @MCA_prte_odls_ALL_COMPONENTS@
MCA_prte_odls_ALL_SUBDIRS = @MCA_prte_odls_ALL_SUBDIRS@
MCA_prte_odls_DSO_COMPONENTS = @MCA_prte_odls_DSO_COMPONENTS@
MCA_prte_odls_DSO_SUBDIRS = @MCA_prte_odls_DSO_SUBDIRS@
MCA_prte_odls_STATIC_COMPONENTS = @MCA_prte_odls_STATIC_COMPONENTS@
MCA_prte_odls_STATIC_LTLIBS = @MCA_prte_odls_STATIC_LTLIBS@
MCA_prte_odls_STATIC_SUBDIRS = @MCA_prte_odls_STATIC_SUBDIRS@
MCA_prte_oob_ALL_COMPONENTS = @MCA_prte_oob_ALL_COMPONENTS@
MCA_prte_oob_ALL_SUBDIRS = @MCA_prte_oob_ALL_SUBDIRS@
MCA_prte_oob_DSO_COMPONENTS = @MCA_prte_oob_DSO_COMPONENTS@
MCA_prte_oob_DSO_SUBDIRS = @MCA_prte_oob_DSO_SUBDIRS@
MCA_prte_oob_STATIC_COMPONENTS = @MCA_prte_oob_STATIC_COMPONENTS@
MCA_prte_oob_STATIC_LTLIBS = @MCA_prte_oob_STATIC_LTLIBS@
MCA_prte_oob_STATIC_SUBDIRS = @MCA_prte_oob_STATIC_SUBDIRS@
MCA_prte_plm_ALL_COMPONENTS = @MCA_prte_plm_ALL_COMPONENTS@
MCA_prte_plm_ALL_SUBDIRS = @MCA_prte_plm_ALL_SUBDIRS@
MCA_prte_plm_DSO_COMPONENTS = @MCA_prte_plm_DSO_COMPONENTS@
MCA_prte_plm_DSO_SUBDIRS = @MCA_prte_plm_DSO_SUBDIRS@
MCA_prte_plm_STATIC_COMPONENTS = @MCA_prte_plm_STATIC_COMPONENTS@
MCA_prte_plm_STATIC_LTLIBS = @MCA_prte_plm_STATIC_LTLIBS@
MCA_prte_plm_STATIC_SUBDIRS = @MCA_prte_plm_STATIC_SUBDIRS@
MCA_prte_prtebacktrace_ALL_COMPONENTS = @MCA_prte_prtebacktrace_ALL_COMPONENTS@
MCA_prte_prtebacktrace_ALL_SUBDIRS = @MCA_prte_prtebacktrace_ALL_SUBDIRS@
MCA_prte_prtebacktrace_DSO_COMPONENTS = @MCA_prte_prtebacktrace_DSO_COMPONENTS@
MCA_prte_prtebacktrace_DSO_SUBDIRS = @MCA_prte_prtebacktrace_DSO_SUBDIRS@
MCA_prte_prtebacktrace_STATIC_COMPONENTS = @MCA_prte_prtebacktrace_STATIC_COMPONENTS@
MCA_prte_prtebacktrace_STATIC_LTLIBS = @MCA_prte_prtebacktrace_STATIC_LTLIBS@
MCA_prte_prtebacktrace_STATIC_SUBDIRS = @MCA_prte_prtebacktrace_STATIC_SUBDIRS@
MCA_prte_prtedl_ALL_COMPONENTS = @MCA_prte_prtedl_ALL_COMPONENTS@
MCA_prte_prtedl_ALL_SUBDIRS = @MCA_prte_prtedl_ALL_SUBDIRS@
MCA_prte_prtedl_DSO_COMPONENTS = @MCA_prte_prtedl_DSO_COMPONENTS@
MCA_prte_prtedl_DSO_SUBDIRS = @MCA_prte_prtedl_DSO_SUBDIRS@
MCA_prte_prtedl_STATIC_COMPONENTS = @MCA_prte_prtedl_STATIC_COMPONENTS@
MCA_prte_prtedl_STATIC_LTLIBS = @MCA_prte_prtedl_STATIC_LTLIBS@
MCA_prte_prtedl_STATIC_SUBDIRS = @MCA_prte_prtedl_STATIC_SUBDIRS@
MCA_prte_prteinstalldirs_ALL_COMPONENTS = @MCA_prte_prteinstalldirs_ALL_COMPONENTS@
MCA_prte_prteinstalldirs_ALL_SUBDIRS = @MCA_prte_prteinstalldirs_ALL_SUBDIRS@
MCA_prte_prteinstalldirs_DSO_COMPONENTS = @MCA_prte_prteinstalldirs_DSO_COMPONENTS@
MCA_prte_prteinstalldirs_DSO_SUBDIRS = @MCA_prte_prteinstalldirs_DSO_SUBDIRS@
MCA_prte_prteinstalldirs_STATIC_COMPONENTS = @MCA_prte_prteinstalldirs_STATIC_COMPONENTS@
MCA_prte_prteinstalldirs_STATIC_LTLIBS = @MCA_prte_prteinstalldirs_STATIC_LTLIBS@
MCA_prte_prteinstalldirs_STATIC_SUBDIRS = @MCA_prte_prteinstalldirs_STATIC_SUBDIRS@
MCA_prte_prtereachable_ALL_COMPONENTS = @MCA_prte_prtereachable_ALL_COMPONENTS@
MCA_prte_prtereachable_ALL_SUBDIRS = @MCA_prte_prtereachable_ALL_SUBDIRS@
MCA_prte_prtereachable_DSO_COMPONENTS = @MCA_prte_prtereachable_DSO_COMPONENTS@
MCA_prte_prtereachable_DSO_SUBDIRS = @MCA_prte_prtereachable_DSO_SUBDIRS@
MCA_prte_prtereachable_STATIC_COMPONENTS = @MCA_prte_prtereachable_STATIC_COMPONENTS@
MCA_prte_prtereachable_STATIC_LTLIBS = @MCA_prte_prtereachable_STATIC_LTLIBS@
MCA_prte_prtereachable_STATIC_SUBDIRS = @MCA_prte_prtereachable_STATIC_SUBDIRS@
MCA_prte_ras_ALL_COMPONENTS = @MCA_prte_ras_ALL_COMPONENTS@
MCA_prte_ras_ALL_SUBDIRS = @MCA_prte_ras_ALL_SUBDIRS@
MCA_prte_ras_DSO_COMPONENTS = @MCA_prte_ras_DSO_COMPONENTS@
MCA_prte_ras_DSO_SUBDIRS = @MCA_prte_ras_DSO_SUBDIRS@
MCA_prte_ras_STATIC_COMPONENTS = @MCA_prte_ras_STATIC_COMPONENTS@
MCA_prte_ras_STATIC_LTLIBS = @MCA_prte_ras_STATIC_LTLIBS@
MCA_prte_ras_STATIC_SUBDIRS = @MCA_prte_ras_STATIC_SUBDIRS@
MCA_prte_rmaps_ALL_COMPONENTS = @MCA_prte_rmaps_ALL_COMPONENTS@
MCA_prte_rmaps_ALL_SUBDIRS = @MCA_prte_rmaps_ALL_SUBDIRS@
MCA_prte_rmaps_DSO_COMPONENTS = @MCA_prte_rmaps_DSO_COMPONENTS@
MCA_prte_rmaps_DSO_SUBDIRS = @MCA_prte_rmaps_DSO_SUBDIRS@
MCA_prte_rmaps_STATIC_COMPONENTS = @MCA_prte_rmaps_STATIC_COMPONENTS@
MCA_prte_rmaps_STATIC_LTLIBS = @MCA_prte_rmaps_STATIC_LTLIBS@
MCA_prte_rmaps_STATIC_SUBDIRS = @MCA_prte_rmaps_STATIC_SUBDIRS@
MCA_prte_rtc_ALL_COMPONENTS = @MCA_prte_rtc_ALL_COMPONENTS@
MCA_prte_rtc_ALL_SUBDIRS = @MCA_prte_rtc_ALL_SUBDIRS@
MCA_prte_rtc_DSO_COMPONENTS = @MCA_prte_rtc_DSO_COMPONENTS@
MCA_prte_rtc_DSO_SUBDIRS = @MCA_prte_rtc_DSO_SUBDIRS@
MCA_prte_rtc_STATIC_COMPONENTS = @MCA_prte_rtc_STATIC_COMPONENTS@
MCA_prte_rtc_STATIC_LTLIBS = @MCA_prte_rtc_STATIC_LTLIBS@
MCA_prte_rtc_STATIC_SUBDIRS = @MCA_prte_rtc_STATIC_SUBDIRS@
MCA_prte_schizo_ALL_COMPONENTS = @MCA_prte_schizo_ALL_COMPONENTS@
MCA_prte_schizo_ALL_SUBDIRS = @MCA_prte_schizo_ALL_SUBDIRS@
MCA_prte_schizo_DSO_COMPONENTS = @MCA_prte_schizo_DSO_COMPONENTS@
MCA_prte_schizo_DSO_SUBDIRS = @MCA_prte_schizo_DSO_SUBDIRS@
MCA_prte_schizo_STATIC_COMPONENTS = @MCA_prte_schizo_STATIC_COMPONENTS@
MCA_prte_schizo_STATIC_LTLIBS = @MCA_prte_schizo_STATIC_LTLIBS@
MCA_prte_schizo_STATIC_SUBDIRS = @MCA_prte_schizo_STATIC_SUBDIRS@
MCA_prte_state_ALL_COMPONENTS = @MCA_prte_state_ALL_COMPONENTS@
MCA_prte_state_ALL_SUBDIRS = @MCA_prte_state_ALL_SUBDIRS@
MCA_prte_state_DSO_COMPONENTS = @MCA_prte_state_DSO_COMPONENTS@
MCA_prte_state_DSO_SUBDIRS = @MCA_prte_state_DSO_SUBDIRS@
MCA_prte_state_STATIC_COMPONENTS = @MCA_prte_state_STATIC_COMPONENTS@
MCA_prte_state_STATIC_LTLIBS = @MCA_prte_state_STATIC_LTLIBS@
MCA_prte_state_STATIC_SUBDIRS = @MCA_prte_state_STATIC_SUBDIRS@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PERL = @PERL@
PKG_CONFIG = @PKG_CONFIG@
PMIXCC_PATH = @PMIXCC_PATH@
PRTE_CC_ABSOLUTE = @PRTE_CC_ABSOLUTE@
PRTE_CONFIGURE_CLI = @PRTE_CONFIGURE_CLI@
PRTE_CONFIGURE_DATE = @PRTE_CONFIGURE_DATE@
PRTE_CONFIGURE_HOST = @PRTE_CONFIGURE_HOST@
PRTE_CONFIGURE_USER = @PRTE_CONFIGURE_USER@
PRTE_DEFAULT_CONFIG = @PRTE_DEFAULT_CONFIG@
PRTE_DEFAULT_MCA_PARAM_CONF = @PRTE_DEFAULT_MCA_PARAM_CONF@
PRTE_DYN_LIB_PREFIX = @PRTE_DYN_LIB_PREFIX@
PRTE_DYN_LIB_SUFFIX = @PRTE_DYN_LIB_SUFFIX@
PRTE_GREEK_VERSION = @PRTE_GREEK_VERSION@
PRTE_MAJOR_VERSION = @PRTE_MAJOR_VERSION@
PRTE_MAKEDIST_DISABLE = @PRTE_MAKEDIST_DISABLE@
PRTE_MINOR_VERSION = @PRTE_MINOR_VERSION@
PRTE_PARAM_FROM_PLATFORM = @PRTE_PARAM_FROM_PLATFORM@
PRTE_RELEASE_DATE = @PRTE_RELEASE_DATE@
PRTE_RELEASE_VERSION = @PRTE_RELEASE_VERSION@
PRTE_REPO_REV = @PRTE_REPO_REV@
PRTE_TARBALL_VERSION = @PRTE_TARBALL_VERSION@
PRTE_TOP_BUILDDIR = @PRTE_TOP_BUILDDIR@
PRTE_TOP_SRCDIR = @PRTE_TOP_SRCDIR@
PRTE_VERSION = @PRTE_VERSION@
PYTHON = @PYTHON@
QRSH = @QRSH@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SPHINX_BUILD = @SPHINX_BUILD@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
ac_prefix_program = @ac_prefix_program@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
ess_lsf_CPPFLAGS = @ess_lsf_CPPFLAGS@
ess_lsf_LDFLAGS = @ess_lsf_LDFLAGS@
ess_lsf_LIBS = @ess_lsf_LIBS@
ess_slurm_CPPFLAGS = @ess_slurm_CPPFLAGS@
ess_slurm_LDFLAGS = @ess_slurm_LDFLAGS@
ess_slurm_LIBS = @ess_slurm_LIBS@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
libprrte_common_alps_so_version = @libprrte_common_alps_so_version@
libprrte_so_version = @libprrte_so_version@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
plm_lsf_CPPFLAGS = @plm_lsf_CPPFLAGS@
plm_lsf_LDFLAGS = @plm_lsf_LDFLAGS@
plm_lsf_LIBS = @plm_lsf_LIBS@
plm_slurm_CPPFLAGS = @plm_slurm_CPPFLAGS@
plm_slurm_LDFLAGS = @plm_slurm_LDFLAGS@
plm_slurm_LIBS = @plm_slurm_LIBS@
plm_tm_CPPFLAGS = @plm_tm_CPPFLAGS@
plm_tm_LDFLAGS = @plm_tm_LDFLAGS@
plm_tm_LIBS = @plm_tm_LIBS@
prefix = @prefix@
program_transform_name = @program_transform_name@
prte_prtedl_dlopen_LIBS = @prte_prtedl_dlopen_LIBS@
prte_prtedl_libltdl_CPPFLAGS = @prte_prtedl_libltdl_CPPFLAGS@
prte_prtedl_libltdl_LDFLAGS = @prte_prtedl_libltdl_LDFLAGS@
prte_prtedl_libltdl_LIBS = @prte_prtedl_libltdl_LIBS@
prte_reachable_netlink_CPPFLAGS = @prte_reachable_netlink_CPPFLAGS@
prte_reachable_netlink_LDFLAGS = @prte_reachable_netlink_LDFLAGS@
prte_reachable_netlink_LIBS = @prte_reachable_netlink_LIBS@
prtedatadir = @prtedatadir@
prteincludedir = @prteincludedir@
prtelibdir = @prtelibdir@
prtemajor = @prtemajor@
prteminor = @prteminor@
prtenumeric = @prtenumeric@
prterelease = @prterelease@
psdir = @psdir@
ras_lsf_CPPFLAGS = @ras_lsf_CPPFLAGS@
ras_lsf_LDFLAGS = @ras_lsf_LDFLAGS@
ras_lsf_LIBS = @ras_lsf_LIBS@
ras_slurm_CPPFLAGS = @ras_slurm_CPPFLAGS@
ras_slurm_LDFLAGS = @ras_slurm_LDFLAGS@
ras_slurm_LIBS = @ras_slurm_LIBS@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target = @target@
target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
OUTDIR = _build
SPHINX_CONFIG = conf.py

# Note: it is significantly more convenient to list all the source
# files here using wildcards (vs. listing every single .rst file).
# However, it is necessary to list $(srcdir) when using wildcards.
RST_SOURCE_FILES = \
        $(srcdir)/*.rst \
        $(srcdir)/prrte-rst-content/*.rst \
        $(srcdir)/placement/*.rst \
        $(srcdir)/hosts/*.rst \
        $(srcdir)/how-things-work/*.rst \
        $(srcdir)/developers/*.rst \
        $(srcdir)/man/*.rst \
        $(srcdir)/man/man1/*.rst \
        $(srcdir)/man/man5/*.rst \
        $(srcdir)/news/*.rst


#-------------------
EXTRA_DIST = requirements.txt _templates/configurator.html \
	$(SPHINX_CONFIG) $(RST_SOURCE_FILES) $(PRTE_MAN1_BUILT) \
	$(PRTE_MAN5_BUILT) $(am__append_1)

###########################################################################

# Note: we list all the man pages explicitly (as opposed to using
# wildcards, like we do to list all the RST source files in
# EXTRA_DIST) because these files get installed by Automake.  There
# are less complications and portability issues (between GNU and BSD
# make(1), for example) if all the files to be installed are
# explicitly listed.
PRTE_MAN1 = \
        prte.1 \
        prte_info.1 \
        prted.1 \
        prterun.1 \
        prun.1 \
        pterm.1

PRTE_MAN5 = \
        prte.5

MAN_OUTDIR = $(OUTDIR)/man
PRTE_MAN1_RST = $(PRTE_MAN1:%.1=man/man1/%.1.rst)
PRTE_MAN1_BUILT = $(PRTE_MAN1:%.1=$(MAN_OUTDIR)/%.1)
PRTE_MAN5_RST = $(PRTE_MAN5:%.5=man/man5/%.5.rst)
PRTE_MAN5_BUILT = $(PRTE_MAN5:%.5=$(MAN_OUTDIR)/%.5)

# A little verbosity magic; "make" will show the terse output.  "make
# V=1" will show the actual commands used (just like the other
# Automake-generated cprtelation/linker rules).
@PRTE_BUILD_DOCS_TRUE@V = 0
@PRTE_BUILD_DOCS_TRUE@PRTE_V_SPHINX_HTML = $(prte__v_SPHINX_HTML_$V)
@PRTE_BUILD_DOCS_TRUE@prte__v_SPHINX_HTML_ = $(prte__v_SPHINX_HTML_$AM_DEFAULT_VERBOSITY)
@PRTE_BUILD_DOCS_TRUE@prte__v_SPHINX_HTML_0 = @echo "  GENERATE HTML docs";
@PRTE_BUILD_DOCS_TRUE@PRTE_V_SPHINX_MAN = $(prte__v_SPHINX_MAN_$V)
@PRTE_BUILD_DOCS_TRUE@prte__v_SPHINX_MAN_ = $(prte__v_SPHINX_MAN_$AM_DEFAULT_VERBOSITY)
@PRTE_BUILD_DOCS_TRUE@prte__v_SPHINX_MAN_0 = @echo "  GENERATE man pages";
@PRTE_BUILD_DOCS_TRUE@PRTE_V_TXT = $(prte__v_TXT_$V)
@PRTE_BUILD_DOCS_TRUE@prte__v_TXT_ = $(prte__v_TXT_$AM_DEFAULT_VERBOSITY)
@PRTE_BUILD_DOCS_TRUE@prte__v_TXT_0 = @echo "  GENERATE text files";
@PRTE_BUILD_DOCS_TRUE@PRTE_V_LN_S = $(prte__v_LN_S_$V)
@PRTE_BUILD_DOCS_TRUE@prte__v_LN_S_ = $(prte__v_LN_S_$AM_DEFAULT_VERBOSITY)
@PRTE_BUILD_DOCS_TRUE@prte__v_LN_S_0 = @echo "  LN_S    " `basename $@`;
@PRTE_BUILD_DOCS_TRUE@ALL_MAN_BUILT = \
@PRTE_BUILD_DOCS_TRUE@        $(PRTE_MAN1_BUILT) $(PRTE_MAN5_BUILT)


# List all the built man pages here in the Automake BUILT_SOURCES
# macro.  This hooks into the normal Automake build mechanisms, and
# will ultimately cause the invocation of the above rule that runs
# Sphinx to build the HTML and man pages.
@PRTE_BUILD_DOCS_TRUE@BUILT_SOURCES = $(ALL_MAN_BUILT)

###########################################################################
@PRTE_INSTALL_DOCS_TRUE@man1_MANS = $(PRTE_MAN1_BUILT)
@PRTE_INSTALL_DOCS_TRUE@man5_MANS = $(PRTE_MAN5_BUILT)
all: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) all-am

.SUFFIXES:
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/Makefile.prte-rules $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
	        && { if test -f $@; then exit 0; else break; fi; }; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign docs/Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --foreign docs/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
	esac;
$(top_srcdir)/Makefile.prte-rules $(am__empty):

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh

$(top_srcdir)/configure:  $(am__configure_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs
install-man1: $(man1_MANS)
	@$(NORMAL_INSTALL)
	@list1='$(man1_MANS)'; \
	list2=''; \
	test -n "$(man1dir)" \
	  && test -n "`echo $$list1$$list2`" \
	  || exit 0; \
	echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
	$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
	{ for i in $$list1; do echo "$$i"; done;  \
	if test -n "$$list2"; then \
	  for i in $$list2; do echo "$$i"; done \
	    | sed -n '/\.1[a-z]*$$/p'; \
	fi; \
	} | while read p; do \
	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; echo "$$p"; \
	done | \
	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
	sed 'N;N;s,\n, ,g' | { \
	list=; while read file base inst; do \
	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
	  fi; \
	done; \
	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
	while read files; do \
	  test -z "$$files" || { \
	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
	done; }

uninstall-man1:
	@$(NORMAL_UNINSTALL)
	@list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \
	files=`{ for i in $$list; do echo "$$i"; done; \
	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
install-man5: $(man5_MANS)
	@$(NORMAL_INSTALL)
	@list1='$(man5_MANS)'; \
	list2=''; \
	test -n "$(man5dir)" \
	  && test -n "`echo $$list1$$list2`" \
	  || exit 0; \
	echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \
	$(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \
	{ for i in $$list1; do echo "$$i"; done;  \
	if test -n "$$list2"; then \
	  for i in $$list2; do echo "$$i"; done \
	    | sed -n '/\.5[a-z]*$$/p'; \
	fi; \
	} | while read p; do \
	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; echo "$$p"; \
	done | \
	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
	sed 'N;N;s,\n, ,g' | { \
	list=; while read file base inst; do \
	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \
	  fi; \
	done; \
	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
	while read files; do \
	  test -z "$$files" || { \
	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \
	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \
	done; }

uninstall-man5:
	@$(NORMAL_UNINSTALL)
	@list='$(man5_MANS)'; test -n "$(man5dir)" || exit 0; \
	files=`{ for i in $$list; do echo "$$i"; done; \
	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
	dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir)
tags TAGS:

ctags CTAGS:

cscope cscopelist:

distdir: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) distdir-am

distdir-am: $(DISTFILES)
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d "$(distdir)/$$file"; then \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
	  else \
	    test -f "$(distdir)/$$file" \
	    || cp -p $$d/$$file "$(distdir)/$$file" \
	    || exit 1; \
	  fi; \
	done
check-am: all-am
check: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(MANS)
installdirs:
	for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) install-exec-am
install-data: install-data-am
uninstall: uninstall-am

install-am: all-am
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-am
install-strip:
	if test -z '$(STRIP)'; then \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	      install; \
	else \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
	fi
mostlyclean-generic:

clean-generic:
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
@PRTE_BUILD_DOCS_FALSE@maintainer-clean-local:
@PRTE_INSTALL_DOCS_FALSE@install-data-hook:
@PRTE_INSTALL_DOCS_FALSE@uninstall-hook:
clean: clean-am

clean-am: clean-generic clean-libtool mostlyclean-am

distclean: distclean-am
	-rm -f Makefile
distclean-am: clean-am distclean-generic

dvi: dvi-am

dvi-am:

html: html-am

html-am:

info: info-am

info-am:

install-data-am: install-man
	@$(NORMAL_INSTALL)
	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
install-dvi: install-dvi-am

install-dvi-am:

install-exec-am:

install-html: install-html-am

install-html-am:

install-info: install-info-am

install-info-am:

install-man: install-man1 install-man5

install-pdf: install-pdf-am

install-pdf-am:

install-ps: install-ps-am

install-ps-am:

installcheck-am:

maintainer-clean: maintainer-clean-am
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic \
	maintainer-clean-local

mostlyclean: mostlyclean-am

mostlyclean-am: mostlyclean-generic mostlyclean-libtool

pdf: pdf-am

pdf-am:

ps: ps-am

ps-am:

uninstall-am: uninstall-man
	@$(NORMAL_INSTALL)
	$(MAKE) $(AM_MAKEFLAGS) uninstall-hook
uninstall-man: uninstall-man1 uninstall-man5

.MAKE: all check install install-am install-data-am install-exec \
	install-strip uninstall-am

.PHONY: all all-am check check-am clean clean-generic clean-libtool \
	cscopelist-am ctags-am distclean distclean-generic \
	distclean-libtool distdir dvi dvi-am html html-am info info-am \
	install install-am install-data install-data-am \
	install-data-hook install-dvi install-dvi-am install-exec \
	install-exec-am install-html install-html-am install-info \
	install-info-am install-man install-man1 install-man5 \
	install-pdf install-pdf-am install-ps install-ps-am \
	install-strip installcheck installcheck-am installdirs \
	maintainer-clean maintainer-clean-generic \
	maintainer-clean-local mostlyclean mostlyclean-generic \
	mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
	uninstall-am uninstall-hook uninstall-man uninstall-man1 \
	uninstall-man5

.PRECIOUS: Makefile


# We need this Makefile to be executed serially.  Below, we list all
# the man pages as the targets of the rule that invokes Sphinx for
# dependency/generation reasons.  But a *single* execution of the make
# target will generate *all* of the man pages and HTML files.  Hence,
# when "make" determines that none of the man page files exist, it
# should execute the Sphinx-invocation rule once, and then it will
# realize that all the man pages files exist.  More specifically: if
# someone invokes "make -j N", we need make to not execute the
# Sphinx-invocation rule multiple times simultaneously.  Both GNU Make
# and BSD Make will honor the .NOTPARALLEL target to disable all
# parallel invocation in this Makefile[.am].
#
# Note that even though we explicitly disable make's parallelism,
# we'll use Sphinx's internal parallelism via "-j auto" -- see
# SPHINX_OPTS.
.NOTPARALLEL:
SPHINX_OPTS       ?= -W --keep-going -j auto
@PRTE_BUILD_DOCS_TRUE@$(ALL_MAN_BUILT): $(RST_SOURCE_FILES) $(IMAGE_SOURCE_FILES)
@PRTE_BUILD_DOCS_TRUE@$(ALL_MAN_BUILT): $(TEXT_SOURCE_FILES) $(SPHINX_CONFIG)

# List both commands (HTML and man) in a single rule because they
# really need to be run in serial.  Specifically, if they were two
# different rules and someone ran "make -j", then both of them could
# be writing to $(OUTDIR)/doctrees simultaneously, which would be Bad.
# Use one of the man pages as a sentinel file to indicate whether all
# the HTML docs and man pages have been built.
@PRTE_BUILD_DOCS_TRUE@$(ALL_MAN_BUILT):
@PRTE_BUILD_DOCS_TRUE@	$(PRTE_V_SPHINX_HTML) $(SPHINX_BUILD) -M html "$(srcdir)" "$(OUTDIR)" $(SPHINX_OPTS)
@PRTE_BUILD_DOCS_TRUE@	$(PRTE_V_SPHINX_MAN) $(SPHINX_BUILD) -M man "$(srcdir)" "$(OUTDIR)" $(SPHINX_OPTS)

# A useful rule to invoke manually to ensure that all of the external
# HTML links we have are valid.  Running this rule requires
# connectivity to the general internet.
@PRTE_BUILD_DOCS_TRUE@linkcheck:
@PRTE_BUILD_DOCS_TRUE@	$(SPHINX_BUILD) -M linkcheck "$(srcdir)" "$(OUTDIR)" $(SPHINX_OPTS)

@PRTE_BUILD_DOCS_TRUE@.PHONY: linkcheck

@PRTE_BUILD_DOCS_TRUE@maintainer-clean-local:
@PRTE_BUILD_DOCS_TRUE@	$(SPHINX_BUILD) -M clean "$(srcdir)" "$(OUTDIR)" $(SPHINX_OPTS)

# We do not know the names of all the generated HTML files: we only
# know that the generated tree will of files be in _build/html/.
# Unfortunately, Automake's installation process only handles
# individual files -- not entire trees of files.  Hence, we use a
# "find ..." to copy the entire generated tree to the target
# directory.
#
# Note: we do not use "cp -r ..." because if the source directory is
# write-protected (e.g., during "make distcheck"), then the cp -r will
# also write-protect the target directory.  Instead, use the
# Automake-provided install macros to set desirable permissions on the
# target directories and files.
#
# Since this might be a VPATH build, first check to see if _build/html
# exists in the source tree.  If not, do the find+install from the
# build tree.
@PRTE_INSTALL_DOCS_TRUE@install-data-hook:
@PRTE_INSTALL_DOCS_TRUE@	$(MKDIR_P) $(DESTDIR)$(docdir)
@PRTE_INSTALL_DOCS_TRUE@	if test -d $(srcdir)/_build/html; then \
@PRTE_INSTALL_DOCS_TRUE@	    topdir=$(srcdir)/_build; \
@PRTE_INSTALL_DOCS_TRUE@	else \
@PRTE_INSTALL_DOCS_TRUE@	    topdir=_build; \
@PRTE_INSTALL_DOCS_TRUE@	fi; \
@PRTE_INSTALL_DOCS_TRUE@	cd $$topdir; \
@PRTE_INSTALL_DOCS_TRUE@	find html -type d -exec $(mkinstalldirs) $(DESTDIR)$(docdir)/{} \; ; \
@PRTE_INSTALL_DOCS_TRUE@	find html -type f -exec $(INSTALL_DATA) {} $(DESTDIR)$(docdir)/{} \;

@PRTE_INSTALL_DOCS_TRUE@uninstall-hook:
@PRTE_INSTALL_DOCS_TRUE@	rm -rf $(DESTDIR)$(docdir)

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: