diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-08-15 16:35:53 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-08-15 16:35:53 (GMT) |
commit | 8ec38c06f4929f93c0ecf547ef02712e08e1aefb (patch) | |
tree | 3d862fa1102b6386b811850485ed1a7e72e5ba9c /INSTALL | |
parent | fdb45fa4fa3c0e0749deb2b40c6246543ba47cf1 (diff) | |
download | hdf5-8ec38c06f4929f93c0ecf547ef02712e08e1aefb.zip hdf5-8ec38c06f4929f93c0ecf547ef02712e08e1aefb.tar.gz hdf5-8ec38c06f4929f93c0ecf547ef02712e08e1aefb.tar.bz2 |
[svn-r32] ./INSTALL NEW
Instructions for end users.
./INSTALL_MAINT NEW
Instructions and hints for maintainers.
./MANIFEST NEW
A list of names of files that are part of the HDF5
distribution.
./Makefile.in NEW
Top-level makefile template. See INSTALL and/or INSTALL_MAINT
for instructions on how to generate the Makefile from this
file.
./configure NEW
./configure.in NEW
Configuration shell script generated from configure.in.
./Makefile
Removed from CVS. This file is now generated by running
configure.
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 54 |
1 files changed, 54 insertions, 0 deletions
@@ -0,0 +1,54 @@ +To build/install HDF5 on Unix systems from the root of the +distribution directory: + + * Build the ./src/H5config.h file and Makefiles by saying: + + ./configure + + You can say `./configure --help' to see a list of options. On + common option is to specify the prefix directory where the + libraries, header files, and programs are installed. The default + is to install them in /usr/local/lib, /usr/local/include, and + /usr/local/bin, but you can specify some other path instead of + /usr/local by saying: + + ./configure --prefix=/usr + + You can also override detection of certain things with + environment variables: + + CC Name of the C compiler to use. + CFLAGS Alternate C compiler flags. + CPPFLAGS Alternate C preprocessor flags. + MAKE Name of the make(1) program. + + For instance (assuming /bin/sh), it is common to say: + + CPPFLAGS=-DNDEBUG CC=gcc CFLAGS=-O3 ./configure + + + * Build library targets by saying: + + make + + If you ran configure like (assuming /bin/sh): + + MAKE=gmake ./configure + + then you'll want to be sure to use `gmake' also when you build + the library. If you're re-building the library after changing + some files and you're not using GNU make and gcc, then you should + say `make clean' from the top directory between each build + attempt. + + * Install the library, header files, and programs by saying: + + make install + + This step will fail unless you have permission to write to the + installation directories. + +To build/install HDF5 on non-Unix systems from the root of the +distribution directory: + + * To be written later. |