
This directory contains the binary distribution of HDF4.1r5.
Subdirectory include/ contains all include files; lib/ contains
libmfhdf.a, libdf.a, libjpeg.a  and libz.a; and bin/ contains 
binaries for the HDF utilities.  The binaries were compiled on an 
IBM SP running AIX 4.3.

To compile your program with HDF:

C:
    xlc -qlanglvl=ansi -O -o <your program> <your program>.c \
        -I<path for hdf include directory> \
        -L<path for hdf libraries> -lmfhdf -ldf -ljpeg -lz
 
FORTRAN:
    f77 -O -o <your program> <your program>.f  \
        -L<path for hdf libraries> -lmfhdf -ldf -ljpeg -lz
 

NOTE: The order of the libraries is important: libmfhdf.a first,
followed by libdf.a, then libjpeg.a and libz.a.  

If the binaries in this directory do not work for you, you can compile
HDF 4.1r5 yourself.

Source code for HDF 4.1r5 can be found in /HDF/HDF/HDF_Current/tar/ on the 
NCSA ftp server (ftp.ncsa.uiuc.edu).

Please send questions, comments, and suggestions to:

	hdfhelp@ncsa.uiuc.edu.


