diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-07-27 20:33:40 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-07-27 20:33:40 (GMT) |
commit | 139688863f191366fe27fbab9654a52285e63c11 (patch) | |
tree | 293f85d4903cf69185c2f532ad22779398426912 /src | |
parent | b9f1ca7df7bd03494016a9dcfc1b7240cbb6bfb1 (diff) | |
download | hdf5-139688863f191366fe27fbab9654a52285e63c11.zip hdf5-139688863f191366fe27fbab9654a52285e63c11.tar.gz hdf5-139688863f191366fe27fbab9654a52285e63c11.tar.bz2 |
[svn-r1547] Changes since 19990723
----------------------
NOTE: These bug fixes but have been applied only to the 1.3 branch per
Albert's request.
./config/gnu-flags [1.3]
Added support for gcc-2.95 by adding full optimization and
debugging flags and applied a patch from Marcus Daniels.
./src/Makefile.in [1.3]
Removes the `libhdf5.settings' file for `make clean'.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 8c1b288..15d5172 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -16,8 +16,9 @@ TRACE=perl $(top_srcdir)/bin/trace ## Add `-I.' to the C preprocessor flags. CPPFLAGS=-I. -I@srcdir@ @CPPFLAGS@ -## This is our main target: +## This is our main target, but also remove the settings file when cleaning. LIB=libhdf5.la +CLEAN=libhdf5.settings ## Source and object files for the library (lexicographically)... LIB_SRC=H5.c H5A.c H5AC.c H5B.c H5D.c H5E.c H5F.c H5Farray.c H5Fcore.c \ |