diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-03-09 16:10:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-03-09 16:10:54 (GMT) |
commit | 00feec19d7b1421206a6e5663e64da8564855986 (patch) | |
tree | 82281a6a661aa973c8358cd753c17e50d72e3fba | |
parent | 26738f27524ddbfb8b170ba2153e08dacba4ca5c (diff) | |
download | hdf5-00feec19d7b1421206a6e5663e64da8564855986.zip hdf5-00feec19d7b1421206a6e5663e64da8564855986.tar.gz hdf5-00feec19d7b1421206a6e5663e64da8564855986.tar.bz2 |
[svn-r12046] Purpose:
Bug fix
Description:
Add the high-level examples directory to the list of directories for
mostlyclean/clean/distclean.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
-rwxr-xr-x | hl/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/Makefile.in b/hl/Makefile.in index d4be6b3..465aba2 100755 --- a/hl/Makefile.in +++ b/hl/Makefile.in @@ -95,12 +95,12 @@ check-install: mostlyclean distclean maintainer-clean clean mostlyclean: - @@SETX@; for d in $(SUBDIRS); do \ + @@SETX@; for d in $(SUBDIRS) examples; do \ (cd $$d && $(MAKE) $@); \ done distclean: - @@SETX@; for d in $(SUBDIRS); do \ + @@SETX@; for d in $(SUBDIRS) examples; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) Makefile |