diff options
Diffstat (limited to 'fortran/examples/Makefile.in')
-rw-r--r-- | fortran/examples/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in index cae5546..83c0fdc 100644 --- a/fortran/examples/Makefile.in +++ b/fortran/examples/Makefile.in @@ -275,6 +275,9 @@ H5CC_PP = $(bindir)/h5pcc H5FC = $(bindir)/h5fc H5FC_PP = $(bindir)/h5pfc +# Compile parallel fortran examples only if parallel is enabled +@BUILD_PARALLEL_CONDITIONAL_TRUE@TEST_PROG_PARA = + # These are the programs that 'make all' or 'make tests' will build and # that 'make check' will run. List them in the order in which they should # be run. @@ -286,7 +289,7 @@ TEST_PROG = dsetexample fileexample rwdsetexample attrexample groupexample \ # Tell configure.in when to build examples -EXTRA_PROG = $(TEST_PROG) +EXTRA_PROG = $(TEST_PROG) $(TEST_PROG_PARA) EXAMPLE_PROG = $(EXTRA_PROG) # List files to be installed here |