diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-03-26 14:52:05 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-03-26 14:52:05 (GMT) |
commit | 41cd6b928b76ba8c3c39027f3de2085544f44464 (patch) | |
tree | c969d3d1b096a8ea63431d546832badd88162b41 /hl/fortran/examples/Makefile.in | |
parent | 72553ef57e289352f7552a68704e97e684d56f1e (diff) | |
download | hdf5-41cd6b928b76ba8c3c39027f3de2085544f44464.zip hdf5-41cd6b928b76ba8c3c39027f3de2085544f44464.tar.gz hdf5-41cd6b928b76ba8c3c39027f3de2085544f44464.tar.bz2 |
[svn-r23457] add --enable-eff to configure that defaults to no
add HAVE_EFF build flag to indicate whether the IOD plugin should be compiled or not
add an AM conditional to indicate whether the EFF test exampels should be compiled or not
tested on jam
Diffstat (limited to 'hl/fortran/examples/Makefile.in')
-rw-r--r-- | hl/fortran/examples/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hl/fortran/examples/Makefile.in b/hl/fortran/examples/Makefile.in index 64cf679..1ee01a3 100644 --- a/hl/fortran/examples/Makefile.in +++ b/hl/fortran/examples/Makefile.in @@ -158,6 +158,7 @@ DYNAMIC_DIRS = @DYNAMIC_DIRS@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ +EFF = @EFF@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXTERNAL_FILTERS = @EXTERNAL_FILTERS@ @@ -411,11 +412,11 @@ EXAMPLEDIR = ${DESTDIR}$(exec_prefix)/share/hdf5_examples/hl/fortran # Assume that all tests in this directory are examples, and tell # conclude.am when to build them. -EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) +EXTRA_PROG = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) $(EXAMPLE_PROG_EFF) # We need to tell automake what to clean MOSTLYCLEANFILES = *.raw *.meta *.o -CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) +CLEANFILES = $(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA) $(EXAMPLE_PROG_EFF) # Automake needs to be taught how to build lib, progs, and tests targets. # These will be filled in automatically for the most part (e.g., |