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
24# Our main targets
25bin_PROGRAMS=h5import
26
27# Add h5import specific linker flags here
28h5import_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS)
29
30# All programs depend on the main hdf5 library and the tools library
31LDADD=$(LIBH5TOOLS) $(LIBHDF5)
32
33include $(top_srcdir)/config/conclude.am
34