summaryrefslogtreecommitdiffstats
path: root/tools/libtest/Makefile.am
blob: 0dc18e9bab43e4f3028071eb5dd05e18267ce73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Read-Only S3 Virtual File Driver (VFD)
# Copyright (c) 2017-2018, The HDF Group.
#
# All rights reserved.
#
# NOTICE:
# All information contained herein is, and remains, the property of The HDF
# Group. The intellectual and technical concepts contained herein are
# proprietary to The HDF Group. Dissemination of this information or
# reproduction of this material is strictly forbidden unless prior written
# permission is obtained from The HDF Group.
##
## Makefile.am
## Run automake to generate a Makefile.in from this file.
#
# HDF5 Library Makefile(.in)
#

include $(top_srcdir)/config/commence.am

# Include src and tools/lib directories
AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_srcdir)/test -I$(top_srcdir)/tools/lib

#test programs
TEST_PROG=h5tools_test_utils

check_PROGRAMS=$(TEST_PROG)

# All programs depend on the hdf5 and h5tools libraries
LDADD=$(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5)

include $(top_srcdir)/config/conclude.am