diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2008-02-23 23:05:03 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2008-02-23 23:05:03 (GMT) |
commit | 47d9a73c2fcd47366cfbdd6ed5b7eb43ffc4fd49 (patch) | |
tree | 69624c265edb2421b59026ff9f5febb1e1f85f22 /c++ | |
parent | e10819b99462d9d9f54abe5ed4a7e6970225f318 (diff) | |
download | hdf5-47d9a73c2fcd47366cfbdd6ed5b7eb43ffc4fd49.zip hdf5-47d9a73c2fcd47366cfbdd6ed5b7eb43ffc4fd49.tar.gz hdf5-47d9a73c2fcd47366cfbdd6ed5b7eb43ffc4fd49.tar.bz2 |
[svn-r14639] Purpose:
Bug fix.
Descriptions:
Some examples are dependent on other files. E.g., a read program depend
a write program to create the data file first.
Adapted the dependencies from v1.8 Makefiles.
Tested:
By hand and also by h5committest.
Diffstat (limited to 'c++')
-rw-r--r-- | c++/examples/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index 8c453d8..1ea5e2a 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -44,6 +44,10 @@ EXAMPLE_PROGS=$(TEST_SRC) TEST_PROGS=$(TEST_SRC:.cpp=) TEST_SCRIPTS=testh5c++.sh +# Some of the examples depend on files created by running other examples +readdata.chkexe_: create.chkexe_ +chunks.chkexe_: extend_ds.chkexe_ + ## These are the files that `make clean' (and derivatives) will remove from ## this directory. CLEAN=*.h5 |