diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-06-09 23:51:17 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-06-09 23:51:17 (GMT) |
commit | ec6f9400d0f7de22e49a2b10bd86a5e7449a4e7d (patch) | |
tree | 3ab4bc67a9fd4f39be1916936d9d09d55f5f3b53 | |
parent | e3d55f9f125a545f677047926024e94d0710f3e6 (diff) | |
download | hdf5-ec6f9400d0f7de22e49a2b10bd86a5e7449a4e7d.zip hdf5-ec6f9400d0f7de22e49a2b10bd86a5e7449a4e7d.tar.gz hdf5-ec6f9400d0f7de22e49a2b10bd86a5e7449a4e7d.tar.bz2 |
[svn-r7009] Purpose:
Bug fix
Description:
libhdf5.settings should be removed in DISTCLEAN, not CLEAN.
Solution:
Platforms tested:
COpper.
Misc. update:
-rw-r--r-- | src/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 07b70d9..e336099 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -25,7 +25,9 @@ CPPFLAGS=-I. -I@srcdir@ @CPPFLAGS@ ## This is our main target, but also remove the settings file when cleaning. LIB=libhdf5.la -CLEAN=libhdf5.settings + +## libhdf5.settings is generated during configure. Remove it when distclean. +DISTCLEAN=libhdf5.settings ## Source and object files for the library (lexicographically)... LIB_SRC=H5.c H5A.c H5AC.c H5B.c H5D.c H5Dio.c H5E.c H5F.c H5Fcontig.c \ |