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-C++ Makefile(.in)
17#
18
19include $(top_srcdir)/config/commence.am
20
21# Include directories
22AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_srcdir)/c++/src -I$(top_srcdir)/hl/src -I$(top_srcdir)/hl/c++/src -I$(top_srcdir)/test -I$(top_builddir)/hl/test -I$(top_srcdir)/hl/test
23
24# These are our main targets.  They should be listed in the order to be
25# executed, generally most specific tests to least specific tests.
26TEST_PROG=ptableTest
27check_PROGRAMS=$(TEST_PROG)
28
29# The tests depend on the hdf5, hdf5 C++, and hdf5_hl libraries
30LDADD=$(LIBH5CPP_HL) $(LIBH5_HL) $(LIBH5CPP) $(LIBHDF5)
31
32ptableTest_SOURCES=ptableTest.cpp
33
34# Tell conclude.am that these are C++ tests.
35CXX_API=yes
36
37include $(top_srcdir)/config/conclude.am
38