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 files in /src directory and /tools/lib directory
22AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_srcdir)/tools/lib
23
24# Our main target, the h5dump tool.
25bin_PROGRAMS=h5dump
26
27# Add h5dump specific linker flags here
28h5dump_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS)
29
30# All the programs depend on the hdf5 and h5tools libraries
31LDADD=$(LIBH5TOOLS) $(LIBHDF5)
32
33# Source files for the program
34h5dump_SOURCES=h5dump.c h5dump_ddl.c h5dump_xml.c
35
36include $(top_srcdir)/config/conclude.am
37