summaryrefslogtreecommitdiffstats
path: root/release_docs/INSTALL
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-09-24 20:17:52 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-09-24 20:17:52 (GMT)
commit0a8e7a6357d8dc6c174001e6ad4154d5b433efe6 (patch)
tree6f2f85988e37e3f0748255aa8aa5fe91f00a2b21 /release_docs/INSTALL
parentde93207053359bf565746824ee3613f06b9b578f (diff)
downloadhdf5-0a8e7a6357d8dc6c174001e6ad4154d5b433efe6.zip
hdf5-0a8e7a6357d8dc6c174001e6ad4154d5b433efe6.tar.gz
hdf5-0a8e7a6357d8dc6c174001e6ad4154d5b433efe6.tar.bz2
[svn-r4471]
Purpose: Feature add Description: Changed the "make install" thingy to "make install-all" in the quick-setup guide. Also, changed the version number of HDF5 in the examples from 1.4.0 and 1.2.0 to 1.5.x
Diffstat (limited to 'release_docs/INSTALL')
-rw-r--r--release_docs/INSTALL21
1 files changed, 11 insertions, 10 deletions
diff --git a/release_docs/INSTALL b/release_docs/INSTALL
index 1dc06db..d2b44d4 100644
--- a/release_docs/INSTALL
+++ b/release_docs/INSTALL
@@ -105,10 +105,10 @@
used to configure, build, test, and install the HDF5 library,
header files, and support programs.
- $ gunzip < hdf5-1.4.0.tar.gz | tar xf -
- $ cd hdf5-1.4.0
+ $ gunzip < hdf5-1.5.x.tar.gz | tar xf -
+ $ cd hdf5-1.5.x
$ make check
- $ make install
+ $ make install-all
3.1. TFLOPS
Users of the Intel TFLOPS machine, after reading this file,
@@ -142,23 +142,23 @@
5.1. Unpacking the distribution
The HDF5 source code is distributed in a variety of formats which
can be unpacked with the following commands, each of which
- creates an `hdf5-1.2.0' directory.
+ creates an `hdf5-1.5.x' directory.
5.1.1. Non-compressed tar archive (*.tar)
- $ tar xf hdf5-1.4.0.tar
+ $ tar xf hdf5-1.5.x.tar
5.1.2. Compressed tar archive (*.tar.Z)
- $ uncompress -c < hdf5-1.4.0.tar.Z | tar xf -
+ $ uncompress -c < hdf5-1.5.x.tar.Z | tar xf -
5.1.3. Gzip'd tar archive (*.tar.gz)
- $ gunzip < hdf5-1.4.0.tar.gz | tar xf -
+ $ gunzip < hdf5-1.5.x.tar.gz | tar xf -
5.1.4. Bzip'd tar archive (*.tar.bz2)
- $ bunzip2 < hdf5-1.2.0.tar.bz2 | tar xf -
+ $ bunzip2 < hdf5-1.5.x.tar.bz2 | tar xf -
5.2. Source vs. Build Directories
On most systems the build can occur in a directory other than the
@@ -206,8 +206,9 @@
5.3.1. Specifying the installation directories
Typing `make install' will install the HDF5 library, header
- files, and support programs in /usr/local/lib,
- /usr/local/include, and /usr/local/bin. To use a path other than
+ files, examples, and support programs in /usr/local/lib,
+ /usr/local/include, /usr/local/doc/hdf5/examples, and
+ /usr/local/bin. To use a path other than
/usr/local specify the path with the `--prefix=PATH' switch:
$ ./configure --prefix=$HOME