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 /fortran | |
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 'fortran')
-rw-r--r-- | fortran/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/examples/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/src/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/test/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/testpar/Makefile.in | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/fortran/Makefile.in b/fortran/Makefile.in index 2c0ab1e..d759e53 100644 --- a/fortran/Makefile.in +++ b/fortran/Makefile.in @@ -709,7 +709,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/fortran/examples/Makefile.in b/fortran/examples/Makefile.in index b02cc10..b93f6f5 100644 --- a/fortran/examples/Makefile.in +++ b/fortran/examples/Makefile.in @@ -639,7 +639,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/fortran/src/Makefile.in b/fortran/src/Makefile.in index 3aa6a48..a3ac8e5 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -919,7 +919,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/fortran/test/Makefile.in b/fortran/test/Makefile.in index 7fc8ad6..738bb6a 100644 --- a/fortran/test/Makefile.in +++ b/fortran/test/Makefile.in @@ -851,7 +851,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/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in index b9e1be8..47a6667 100644 --- a/fortran/testpar/Makefile.in +++ b/fortran/testpar/Makefile.in @@ -646,7 +646,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 |