mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# This is part of the netCDF package.
|
|
# Copyright 2018 University Corporation for Atmospheric Research/Unidata
|
|
# See COPYRIGHT file for conditions of use.
|
|
#
|
|
# This directory has tests for the HDF4 code. This directory will be
|
|
# skipped if HDF4 is not enabled.
|
|
#
|
|
# Ed Hartnett
|
|
|
|
# Put together AM_CPPFLAGS and AM_LDFLAGS.
|
|
include $(top_srcdir)/lib_flags.am
|
|
|
|
# Link to our assembled library.
|
|
AM_LDFLAGS += ${top_builddir}/liblib/libnetcdf.la
|
|
|
|
# These are the C tests for HDF4.
|
|
check_PROGRAMS = tst_chunk_hdf4 tst_h4_lendian tst_hdf4_extra
|
|
TESTS = tst_chunk_hdf4 tst_h4_lendian tst_hdf4_extra
|
|
|
|
# This test script depends on ncdump and tst_interops2.c.
|
|
if BUILD_UTILITIES
|
|
check_PROGRAMS += tst_interops2
|
|
TESTS += run_formatx_hdf4.sh
|
|
endif # BUILD_UTILITIES
|
|
|
|
# This test script fetches HDF4 files from an FTP server and uses
|
|
# program tst_interops3.c to read them.
|
|
if USE_HDF4_FILE_TESTS
|
|
check_PROGRAMS += tst_interops3
|
|
TESTS += run_get_hdf4_files.sh
|
|
endif # USE_HDF4_FILE_TESTS
|
|
|
|
EXTRA_DIST = CMakeLists.txt ref_contiguous.hdf4 ref_chunked.hdf4 \
|
|
run_get_hdf4_files.sh run_formatx_hdf4.sh
|
|
|
|
CLEANFILES = *.h4 *.hdf
|
|
|
|
# If valgrind is present, add valgrind targets.
|
|
@VALGRIND_CHECK_RULES@
|