summaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2000-04-13 15:17:14 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2000-04-13 15:17:14 (GMT)
commit10a6fb73ee4e50f7a0022669cc78650b8655c3bc (patch)
tree07c25e9a881b2c04a711ec7e6b662fc755665b09 /test/Makefile.in
parent0461ad7f43fb39efeae0e7ee0b9cc43a6a85b646 (diff)
downloadhdf5-10a6fb73ee4e50f7a0022669cc78650b8655c3bc.zip
hdf5-10a6fb73ee4e50f7a0022669cc78650b8655c3bc.tar.gz
hdf5-10a6fb73ee4e50f7a0022669cc78650b8655c3bc.tar.bz2
[svn-r2138] Add SRB as a new VFL, these are its testing programs.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in27
1 files changed, 19 insertions, 8 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 0039159..5d11b48 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -16,9 +16,10 @@ CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src @CPPFLAGS@
## These are our main targets. They should be listed in the order to be
## executed, generally most specific tests to least specific tests.
RUNTEST=$(LT_RUN)
-TEST_PROGS=testhdf5 lheap ohdr stab gheap hyperslab istore bittests dtypes \
- dsets cmpd_dset extend external links unlink big mtime fillval mount \
- flush1 flush2 enum gass_write gass_read gass_append dpss_read dpss_write
+TEST_PROGS=testhdf5 lheap ohdr stab gheap hyperslab istore bittests dtypes \
+ dsets cmpd_dset extend external links unlink big mtime fillval mount \
+ flush1 flush2 enum gass_write gass_read gass_append dpss_write \
+ dpss_read srb_write srb_append srb_read
TIMINGS=iopipe chunk ragged overhead
## The libh5test.a library provides common support code for the tests. We link
@@ -53,11 +54,12 @@ CLEAN=$(TIMINGS)
## other source lists are for the individual tests, the files of which may
## overlap with other tests.
TEST_SRC=big.c bittests.c chunk.c cmpd_dset.c dsets.c dtypes.c extend.c \
- external.c fillval.c flush1.c flush2.c gheap.c h5test.c hyperslab.c \
- iopipe.c istore.c lheap.c links.c mount.c mtime.c ohdr.c overhead.c \
- ragged.c stab.c tattr.c testhdf5.c tfile.c th5s.c titerate.c tmeta.c \
- trefer.c tselect.c tvltypes.c tvlstr.c unlink.c enum.c gass_write.c \
- gass_read.c gass_append.c dpss_read.c dpss_write.c
+ external.c fillval.c flush1.c flush2.c gheap.c h5test.c hyperslab.c \
+ iopipe.c istore.c lheap.c links.c mount.c mtime.c ohdr.c overhead.c \
+ ragged.c stab.c tattr.c testhdf5.c tfile.c th5s.c tmeta.c trefer.c \
+ tselect.c tvltypes.c tvlstr.c unlink.c enum.c gass_write.c \
+ gass_read.c gass_append.c dpss_read.c dpss_write.c srb_read.c \
+ srb_write.c srb_append.c
TEST_OBJ=$(TEST_SRC:.c=.lo)
@@ -170,4 +172,13 @@ dpss_read: dpss_read.lo
dpss_write: dpss_write.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ dpss_write.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+srb_read: srb_read.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ srb_read.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+
+srb_write: srb_write.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ srb_write.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+
+srb_append: srb_append.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ srb_append.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+
@CONCLUDE@