diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-14 21:14:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-14 21:14:12 (GMT) |
commit | bf5165c748def41aec8b1904d450b319617f5e57 (patch) | |
tree | 92ab62f31469b774c529cdb9cdca4485214221f5 /test/Makefile.in | |
parent | 41b05e1ce0abd75acdf7c8b69929e3aa072ac35d (diff) | |
download | hdf5-bf5165c748def41aec8b1904d450b319617f5e57.zip hdf5-bf5165c748def41aec8b1904d450b319617f5e57.tar.gz hdf5-bf5165c748def41aec8b1904d450b319617f5e57.tar.bz2 |
[svn-r489] Changed more API functions to the new names as documented. Also, added
stub for testing selections.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 8ddd2d8..d3aa02f 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -28,9 +28,9 @@ MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \ # source files and is used for things like dependencies, archiving, etc. The # other source lists are for the individual tests, the files of which may # overlap with other tests. -TEST_SRC=testhdf5.c tattr.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5s.c \ - dtypes.c hyperslab.c istore.c dsets.c cmpd_dset.c extend.c external.c \ - iopipe.c gheap.c shtype.c big.c links.c chunk.c bittests.c +TEST_SRC=testhdf5.c tattr.c tfile.c theap.c tmeta.c tohdr.c tselect.c tstab.c \ + th5s.c dtypes.c hyperslab.c istore.c dsets.c cmpd_dset.c extend.c \ + external.c iopipe.c gheap.c shtype.c big.c links.c chunk.c bittests.c TEST_OBJ=$(PROG_SRC:.c=.o) # Private header files (not to be installed)... @@ -47,7 +47,7 @@ timings _timings: $(TIMINGS) done; # How to build the programs... -TESTHDF5_OBJ=testhdf5.o tattr.o tfile.o theap.o tmeta.o tohdr.o tstab.o th5s.o +TESTHDF5_OBJ=testhdf5.o tattr.o tfile.o theap.o tmeta.o tohdr.o tselect.o tstab.o th5s.o testhdf5: $(TESTHDF5_OBJ) ../src/libhdf5.a $(CC) $(CFLAGS) -o $@ $(TESTHDF5_OBJ) ../src/libhdf5.a $(LIBS) |