1#
2# Copyright by The HDF Group.
3# Copyright by the Board of Trustees of the University of Illinois.
4# All rights reserved.
5#
6# This file is part of HDF5.  The full HDF5 copyright notice, including
7# terms governing use, modification, and redistribution, is contained in
8# the COPYING file, which can be found at the root of the source code
9# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.
10# If you do not have access to either file, you may request a copy from
11# help@hdfgroup.org.
12##
13## Makefile.am
14## Run automake to generate a Makefile.in from this file.
15#
16# HDF5 Library Makefile(.in)
17#
18
19include $(top_srcdir)/config/commence.am
20
21# Include src and tools/lib directories
22AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_srcdir)/tools/lib
23
24check_PROGRAMS=tellub h5jamgentest getub
25TEST_SCRIPT=testh5jam.sh
26
27check_SCRIPTS=$(TEST_SCRIPT)
28SCRIPT_DEPEND=../../src/h5jam/h5jam$(EXEEXT) ../../src/h5jam/h5unjam$(EXEEXT)
29
30# Link against the main HDF5 library and tools library
31LDADD=$(LIBH5TOOLS) $(LIBHDF5)
32
33# Temporary files.  *.h5 are generated by jamgentest.  They should
34# copied to the testfiles/ directory if update is required.
35CHECK_CLEANFILES+=*.h5 testfiles/h5jam-*-sav testfiles/h5unjam-*-sav
36DISTCLEANFILES=testh5jam.sh
37
38include $(top_srcdir)/config/conclude.am
39