diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-12 16:20:56 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-12 16:20:56 (GMT) |
commit | f81bca3fc67f19b73be416815799867e111f0cad (patch) | |
tree | a659ed1d6387ce0bdd399a236f8851aa95275939 /test/Makefile.in | |
parent | ec0cd59fe8659f90c54117b54582c98c87998f46 (diff) | |
download | hdf5-f81bca3fc67f19b73be416815799867e111f0cad.zip hdf5-f81bca3fc67f19b73be416815799867e111f0cad.tar.gz hdf5-f81bca3fc67f19b73be416815799867e111f0cad.tar.bz2 |
[svn-r4942] Purpose:
Feature Add
Description:
Added set_extend to the MANIFEST and test/ directory Makefile.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 528329c..b20f1a4 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1,7 +1,8 @@ ## HDF5 Library Test Makefile(.in) ## -## Copyright (C) 1997 National Center for Supercomputing Applications. -## All rights reserved. +## Copyright (C) 1997, 2002 +## National Center for Supercomputing Applications. +## All rights reserved. ## ## top_srcdir=@top_srcdir@ @@ -20,7 +21,7 @@ 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 \ - srb_write srb_append srb_read ttsafe stream_test + srb_write srb_append srb_read ttsafe stream_test set_extend TIMINGS=testmeta @@ -64,7 +65,7 @@ TEST_SRC=big.c bittests.c cmpd_dset.c dsets.c dtypes.c extend.c \ titerate.c tmeta.c trefer.c tselect.c ttime.c ttbbt.c tvltypes.c tvlstr.c \ tmisc.c unlink.c enum.c ttsafe.c ttsafe_dcreate.c ttsafe_error.c \ ttsafe_cancel.c ttsafe_acreate.c gass_write.c gass_read.c gass_append.c \ - srb_read.c srb_write.c srb_append.c stream_test.c + srb_read.c srb_write.c srb_append.c stream_test.c set_extend.c TEST_OBJ=$(TEST_SRC:.c=.lo) @@ -169,6 +170,9 @@ gass_read: gass_read.lo gass_append: gass_append.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ gass_append.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) +set_extend: set_extend.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ set_extend.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) + srb_read: srb_read.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ srb_read.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) |