# # Copyright by The HDF Group. # All rights reserved. # # This file is part of h5check. The full h5check copyright notice, # including terms governing use, modification, and redistribution, is # contained in the file COPYING, which can be found at the root of the # source code distribution tree. If you do not have access to this file, # you may request a copy from help@hdfgroup.org. # ## ## Makefile.am ## Run automake to generate a Makefile.in from this file. # # HDF5 Library Makefile(.in) # include $(top_srcdir)/config/commence.am # Include files in /src directory and /tools/lib directory INCLUDES=-I$(top_srcdir)/src # Test programs and scripts TEST_PROG=testgen TEST_SCRIPT=$(srcdir)/testh5check.sh check_PROGRAMS=$(TEST_PROG) check_SCRIPTS=$(TEST_SCRIPT) SCRIPT_DEPEND=testgen$(EXEEXT) # Our main target, nothing to install. bin_PROGRAMS= # All the programs depend on the hdf5 and h5tools libraries LDADD=../src/libh5check.a testgen: $(srcdir)/testgen.c $(H5CC) $(srcdir)/testgen.c -o testgen # The testscript depends on the testgen program to generated data files # it uses. $(srcdir)/testh5check.sh.chkexe_: testgen.chkexe_ # Temporary files. *.h5 are generated by testgen. CHECK_CLEANFILES+=*.h5 *.bin full*.data logfile.txt DISTCLEANFILES= include $(top_srcdir)/config/conclude.am