fixes to get 'make dest' working

This commit is contained in:
2013-06-14 09:35:20 +00:00
parent 47c80a05b7
commit 6ff8067ba8
7 changed files with 40 additions and 28 deletions
+2 -1
View File
@@ -3,7 +3,8 @@ ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
src \
test \
tools
tools \
doc
MAINTAINERCLEANFILES = \
config.h \
-3
View File
@@ -351,9 +351,6 @@ AC_CONFIG_FILES([
src/Fortran/Makefile
test/Makefile
doc/Makefile
examples/H5Part/Makefile
examples/H5Block/Makefile
examples/H5Fed/Makefile
tools/Makefile
tools/h5hutcc
tools/vtk2h5grid/Makefile
+4 -3
View File
@@ -1,6 +1,7 @@
EXTRA_DIST = \
Doxyfile \
H5.dox
EXTRA_DIST = \
Doxyfile \
H5.dox \
Makefile.in
all:
+3
View File
@@ -18,7 +18,10 @@ include_HEADERS = \
# Listing of all possible headers that I may include
EXTRA_HEADERS =
endif
EXTRA_DIST = Makefile.in
clean-local:
$(RM) *~
+1
View File
@@ -18,6 +18,7 @@ EXTRA_HEADERS =
EXTRA_DIST = \
TestUnderscoreC.c \
TestUnderscore.f \
h5_private.h \
$(F90_FILES)
# Files that I don't want to include in the dist tar ball
+1 -1
View File
@@ -1,4 +1,4 @@
# test level Makefile.am
SUBDIRS = h5core C Fortran
SUBDIRS = h5core C Fortran include
+29 -20
View File
@@ -1,29 +1,38 @@
# src/C level Makefile.am
# Header files that I wish to install in $(prefix)/include
include_HEADERS = \
../include/h5core/h5.h \
../include/h5core/h5_attribs.h \
../include/h5core/h5_debug.h \
../include/h5core/h5_errorhandling.h \
../include/h5core/h5_model.h \
../include/h5core/h5_syscall.h \
../include/h5core/h5_types.h \
../include/h5core/h5b_attribs.h \
../include/h5core/h5b_model.h \
../include/h5core/h5b_io.h \
../include/h5core/h5t_adjacencies.h \
../include/h5core/h5t_map.h \
../include/h5core/h5t_model.h \
../include/h5core/h5t_retrieve.h \
../include/h5core/h5t_store.h \
../include/h5core/h5t_tags.h \
../include/h5core/h5u_model.h \
../include/h5core/h5u_io.h
include_HEADERS = \
$(top_srcdir)/src/include/h5core/h5_attach.h \
$(top_srcdir)/src/include/h5core/h5_attribs.h \
$(top_srcdir)/src/include/h5core/h5_core.h \
$(top_srcdir)/src/include/h5core/h5_errno.h \
$(top_srcdir)/src/include/h5core/h5_errorhandling.h \
$(top_srcdir)/src/include/h5core/h5_hdf5.h \
$(top_srcdir)/src/include/h5core/h5_maps.h \
$(top_srcdir)/src/include/h5core/h5_openclose.h \
$(top_srcdir)/src/include/h5core/h5_readwrite.h \
$(top_srcdir)/src/include/h5core/h5_syscall.h \
$(top_srcdir)/src/include/h5core/h5_types.h \
$(top_srcdir)/src/include/h5core/h5b_attribs.h \
$(top_srcdir)/src/include/h5core/h5b_model.h \
$(top_srcdir)/src/include/h5core/h5b_readwrite.h \
$(top_srcdir)/src/include/h5core/h5t_adjacencies.h \
$(top_srcdir)/src/include/h5core/h5t_core.h \
$(top_srcdir)/src/include/h5core/h5t_inquiry.h \
$(top_srcdir)/src/include/h5core/h5t_map.h \
$(top_srcdir)/src/include/h5core/h5t_model.h \
$(top_srcdir)/src/include/h5core/h5t_readwrite.h \
$(top_srcdir)/src/include/h5core/h5t_ref_elements.h \
$(top_srcdir)/src/include/h5core/h5t_retrieve.h \
$(top_srcdir)/src/include/h5core/h5t_storemesh.h \
$(top_srcdir)/src/include/h5core/h5t_tags.h \
$(top_srcdir)/src/include/h5core/h5u_model.h \
$(top_srcdir)/src/include/h5core/h5u_readwrite.h
# Listing of all possible headers that I may include
EXTRA_HEADERS =
EXTRA_DIST = Makefile.in
clean-local:
$(RM) *~
$(RM) h5core/*~