mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-23 16:20:57 +08:00
Added Packet Table to high-level APIs Description: The Packet Table is an API that allows the user to append records ("packets") to a table, and read the back again. It supports fixed-length records with a defined datatype and variable-length records. It also supports a "current record" index to track the user's position in the table. Solution: The Packet Table code lives in hl/src, and its tests in hl/test. Some code is shared between the H5TB table and the H5PT Packet Table in the form of functions in H5HL_private.c. Some documentation exists for a previous version of the API. Updated documentation and C++ wrapper API coming soon. Platforms tested: sleipnir, eirene, copper, modi4
29 lines
977 B
Makefile
29 lines
977 B
Makefile
# Copyright (C) 2001 National Center for Supercomputing Applications.
|
|
# All rights reserved.
|
|
#
|
|
#
|
|
## Makefile.am
|
|
## Run automake to generate a Makefile.in from this file.
|
|
#
|
|
# HDF5 High-Level Test Makefile(.in)
|
|
#
|
|
|
|
include $(top_srcdir)/config/commence.am
|
|
|
|
# Add include directories to C preprocessor flags
|
|
AM_CPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/hl/src
|
|
|
|
# The tests depend on the hdf5 and hdf5_hl libraries
|
|
LDADD=$(LIBH5_HL) $(LIBHDF5)
|
|
|
|
# Test programs. These are our main targets. They should be listed in the
|
|
# order to be executed, generally most specific tests to least specific tests.
|
|
TEST_PROG=test_lite test_image test_table test_ds test_packet
|
|
check_PROGRAMS=$(TEST_PROG)
|
|
|
|
# Temporary files. These files are the ones created by running `make test'.
|
|
MOSTLYCLEANFILES=combine_tables[1-2].h5 test_ds[1-3].h5 test_image.h5 \
|
|
test_lite[1-2].h5 test_table.h5
|
|
|
|
include $(top_srcdir)/config/conclude.am
|