diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2005-01-29 05:41:35 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2005-01-29 05:41:35 (GMT) |
commit | f9ad232b420e95536efbcd3bde9513e58d081a12 (patch) | |
tree | 98b298e37ff4359b7b6d4a4fdf7b1476a50e31da /hl/test/Makefile.in | |
parent | 82e29e9369c589c8b9a5b3e5bb7637abd7144c8c (diff) | |
download | hdf5-f9ad232b420e95536efbcd3bde9513e58d081a12.zip hdf5-f9ad232b420e95536efbcd3bde9513e58d081a12.tar.gz hdf5-f9ad232b420e95536efbcd3bde9513e58d081a12.tar.bz2 |
[svn-r9883] Purpose:
added a first batch of dimension scales
fix some small bubgs in lite (a close function was not being called )
Description:
this batch contains the basic API functions described in the RFC and a minimal test file
Solution:
Platforms tested:
linux
solaris 64
AIX
windows
Misc. update:
Diffstat (limited to 'hl/test/Makefile.in')
-rw-r--r-- | hl/test/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hl/test/Makefile.in b/hl/test/Makefile.in index a44f305..abc31b7 100644 --- a/hl/test/Makefile.in +++ b/hl/test/Makefile.in @@ -16,7 +16,7 @@ CPPFLAGS=-I. -I$(srcdir) -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdi ## executed, generally most specific tests to least specific tests. RUNTEST=$(LT_RUN) -TEST_PROGS=test_lite test_image test_table +TEST_PROGS=test_lite test_image test_table test_ds ## The libh5test.a library provides common support code for the tests. We link ## this library statically because some systems can only link executables to @@ -40,7 +40,7 @@ CLEAN=*.h5 ## other source lists are for the individual tests, the files of which may ## overlap with other tests. -TEST_SRC=test_lite.c test_image.c test_table.c +TEST_SRC=test_lite.c test_image.c test_table.c test_ds.c TEST_OBJ=$(TEST_SRC:.c=.lo) @@ -60,5 +60,8 @@ test_image: test_image.lo test_table: test_table.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ test_table.lo $(LIBHDF5_HL) $(LIBHDF5) $(LDFLAGS) $(LIBS) - +test_ds: test_ds.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ test_ds.lo $(LIBHDF5_HL) $(LIBHDF5) $(LDFLAGS) $(LIBS) + + @CONCLUDE@ |