mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r18551] Description:
In order to compile stand-alone Fortran wrappers the following files need to be installed via make install: (1) From the source: trunk/fortran/src/H5f90i.h - defines the character type and includes the file H5f90i_gen.h (2) From the compiled source: trunk/fortran/src/H5f90i_gen.h - a generated file at hdf5 compile time relating the C types to the Fortran types for interoperability. Since these C/Fortran types need to match those used in generating h5cc and h5fc commands we include the files H5f90i_gen.h and H5f90i.h in the hdf5/include install directory when Fortran is enabled. the files are installed with the other fortran files in include and also removed when the installation is cleaned. Test: jam
This commit is contained in:
parent
a788a50791
commit
c068fe26da
@ -90,11 +90,14 @@ clean-local:
|
||||
@if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \
|
||||
$(RM) *.$(F9XMODEXT); \
|
||||
fi
|
||||
$(RM) $(DESTDIR)$(includedir)/H5f90i*.h
|
||||
|
||||
install-data-local:
|
||||
@if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \
|
||||
$(CP) $(top_builddir)/$(subdir)/*.$(F9XMODEXT) $(DESTDIR)$(includedir)/. ; \
|
||||
fi
|
||||
$(CP) $(top_builddir)/$(subdir)/H5f90i_gen.h $(DESTDIR)$(includedir)/.
|
||||
$(CP) $(top_srcdir)/fortran/src/H5f90i.h $(DESTDIR)$(includedir)/.
|
||||
|
||||
uninstall-local:
|
||||
@if test -n "$(F9XMODEXT)" -a "X$(F9XMODEXT)" != "Xo"; then \
|
||||
@ -103,6 +106,7 @@ uninstall-local:
|
||||
fi; \
|
||||
fi; \
|
||||
$(RM) $(DESTDIR)$(bindir)/$(H5FC_NAME)
|
||||
$(RM) $(DESTDIR)$(includedir)/H5f90i*.h
|
||||
|
||||
# Also install and uninstall (uninstall-local above) h5fc script
|
||||
install-exec-local:
|
||||
|
@ -916,11 +916,14 @@ clean-local:
|
||||
@if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \
|
||||
$(RM) *.$(F9XMODEXT); \
|
||||
fi
|
||||
$(RM) $(DESTDIR)$(includedir)/H5f90i*.h
|
||||
|
||||
install-data-local:
|
||||
@if test -n "$(F9XMODEXT)" && test "X$(F9XMODEXT)" != "Xo"; then \
|
||||
$(CP) $(top_builddir)/$(subdir)/*.$(F9XMODEXT) $(DESTDIR)$(includedir)/. ; \
|
||||
fi
|
||||
$(CP) $(top_builddir)/$(subdir)/H5f90i_gen.h $(DESTDIR)$(includedir)/.
|
||||
$(CP) $(top_srcdir)/fortran/src/H5f90i.h $(DESTDIR)$(includedir)/.
|
||||
|
||||
uninstall-local:
|
||||
@if test -n "$(F9XMODEXT)" -a "X$(F9XMODEXT)" != "Xo"; then \
|
||||
@ -929,6 +932,7 @@ uninstall-local:
|
||||
fi; \
|
||||
fi; \
|
||||
$(RM) $(DESTDIR)$(bindir)/$(H5FC_NAME)
|
||||
$(RM) $(DESTDIR)$(includedir)/H5f90i*.h
|
||||
|
||||
# Also install and uninstall (uninstall-local above) h5fc script
|
||||
install-exec-local:
|
||||
|
Loading…
x
Reference in New Issue
Block a user