7ea00c38f8
Finished integrating H5Block and the Fortran interface (untested). Started adding an H5Block regression test with a few simple tests (all pass). Added automatic detection of stripe information on lustre, and config option to compile against lustre API. Moved buffers for H5Block ghost zone disolving out of the file handle and into the h5b_3d_set_view function. Fixed bug with pointers in the H5Fed file data not being initialized to NULL.
47 lines
832 B
Makefile
47 lines
832 B
Makefile
# test level Makefile.am
|
|
|
|
#SUBDIRS = H5Block H5Fed H5Part
|
|
|
|
OBJEXT=o
|
|
|
|
HDFLIB = -L@HDF5ROOT@/lib -lhdf5 -lz @SZLIB@ -lm
|
|
H5LIB = -L../src/lib -lH5hutC -lH5hut
|
|
LIBS = $(H5LIB) $(HDFLIB) @MPILIB@
|
|
|
|
INCLUDES = -I../src/include -I@HDF5ROOT@/include @MPIINC@
|
|
|
|
noinst_PROGRAMS = h5u_test h5b_test
|
|
|
|
TESTS_ENVIRONMENT = env LD_LIBRARY_PATH=@HDF5ROOT@/lib:$(LD_LIBRARY_PATH)
|
|
TESTS = h5u_test h5b_test
|
|
|
|
EXTRA_PROGRAMS = h5u_test h5b_test
|
|
|
|
h5u_test_SOURCES = \
|
|
h5u_test.c \
|
|
h5u_write.c \
|
|
h5u_read.c \
|
|
testframe.c \
|
|
testframe.h \
|
|
params.h
|
|
|
|
h5u_test_DEPENDENCIES = \
|
|
../src/lib/libH5hut.a \
|
|
../src/lib/libH5hutC.a
|
|
|
|
h5b_test_SOURCES = \
|
|
h5b_test.c \
|
|
h5b_write.c \
|
|
h5b_read.c \
|
|
testframe.c \
|
|
testframe.h \
|
|
params.h
|
|
|
|
h5b_test_DEPENDENCIES = \
|
|
../src/lib/libH5hut.a \
|
|
../src/lib/libH5hutC.a
|
|
|
|
clean: clean-am
|
|
rm -f *.h5
|
|
|