diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-08-22 16:22:43 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-08-22 16:22:43 (GMT) |
commit | 9d4229713ebb1ed899c5c5fa72dbaeb5611e923e (patch) | |
tree | 381374eb5ffa7cf95f6794a0910e1cdd12cf0175 /c++ | |
parent | c17ea4461717a8065cc421980f897fa30a07f8d0 (diff) | |
download | hdf5-9d4229713ebb1ed899c5c5fa72dbaeb5611e923e.zip hdf5-9d4229713ebb1ed899c5c5fa72dbaeb5611e923e.tar.gz hdf5-9d4229713ebb1ed899c5c5fa72dbaeb5611e923e.tar.bz2 |
[svn-r12608] Checked in External Link C examples.
Since these examples need to follow filesystem paths, the Makefiles need
to create directories in the examples directory; added this to the
Makefile.am.
Tested on Windows, mir, juniper
Diffstat (limited to 'c++')
-rw-r--r-- | c++/Makefile.in | 2 | ||||
-rw-r--r-- | c++/examples/Makefile.in | 2 | ||||
-rw-r--r-- | c++/src/Makefile.in | 2 | ||||
-rw-r--r-- | c++/test/Makefile.in | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in index 7053bd5..8ca7890 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -700,7 +700,7 @@ install-doc uninstall-doc: # clean up files generated by tests so they can be re-run. build-check-clean: - $(RM) $(CHECK_CLEANFILES) + $(RM) -rf $(CHECK_CLEANFILES) # run check-clean whenever mostlyclean is run mostlyclean-local: build-check-clean diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index a18e35a..c20f2f9 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -612,7 +612,7 @@ install-doc uninstall-doc: # clean up files generated by tests so they can be re-run. build-check-clean: - $(RM) $(CHECK_CLEANFILES) + $(RM) -rf $(CHECK_CLEANFILES) # run check-clean whenever mostlyclean is run mostlyclean-local: build-check-clean diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in index 2589338..0b632bc 100644 --- a/c++/src/Makefile.in +++ b/c++/src/Makefile.in @@ -789,7 +789,7 @@ install-doc uninstall-doc: # clean up files generated by tests so they can be re-run. build-check-clean: - $(RM) $(CHECK_CLEANFILES) + $(RM) -rf $(CHECK_CLEANFILES) # run check-clean whenever mostlyclean is run mostlyclean-local: build-check-clean diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index 74ce1bb..341f2302 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -679,7 +679,7 @@ install-doc uninstall-doc: # clean up files generated by tests so they can be re-run. build-check-clean: - $(RM) $(CHECK_CLEANFILES) + $(RM) -rf $(CHECK_CLEANFILES) # run check-clean whenever mostlyclean is run mostlyclean-local: build-check-clean |