Bug fix
Description:
Couple files did not get installed because they were not included
in the Makefile.in.
Solution:
Added them.
Platforms tested:
Eirene. First test: make install-doc before fix to verify the files
are not installed. Then put in the fix, gmake reconfigure, make
install-doc again. Verified the files are installed.
Second test: distclean everything, configure, make all and check,
make install, make install-doc. Eyeball'ed to see the files
are installed properly..
28 lines
743 B
Makefile
28 lines
743 B
Makefile
# HDF5 Library Makefile(.in)
|
|
#
|
|
# Copyright (C) 2001 National Center for Supercomputing Applications.
|
|
# All rights reserved.
|
|
#
|
|
#
|
|
top_srcdir=@top_srcdir@
|
|
top_builddir=../../..
|
|
srcdir=@srcdir@
|
|
VPATH=.:@srcdir@
|
|
@COMMENCE@
|
|
|
|
# Subdirectories in build-order (not including `examples')
|
|
SUBDIRS=
|
|
DOCDIR=$(docdir)/hdf5/fortran
|
|
|
|
# Public doc files (to be installed)...
|
|
PUB_DOCS=F90UserNotes.html h5a_FORTRAN.html h5d_FORTRAN.html \
|
|
F90Flags.html h5_FORTRAN.html \
|
|
h5e_FORTRAN.html h5f_FORTRAN.html h5g_FORTRAN.html \
|
|
h5i_FORTRAN.html h5p_FORTRAN.html h5r_FORTRAN.html \
|
|
h5s_FORTRAN.html h5t_FORTRAN.html
|
|
|
|
# Other doc files (not to be installed)...
|
|
PRIVATE_DOCS=
|
|
|
|
@CONCLUDE@
|