diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-06-30 22:04:22 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-06-30 22:04:22 (GMT) |
commit | 76ca6e67a7d5e395d018bd97e4a9ad8a4d986311 (patch) | |
tree | 8dfdb46f2b7d5d9eeea4857ad2dc950db95015ef /testpar/Makefile.in | |
parent | cc2be92e781c093f333e35742c4eda3141afced3 (diff) | |
download | hdf5-76ca6e67a7d5e395d018bd97e4a9ad8a4d986311.zip hdf5-76ca6e67a7d5e395d018bd97e4a9ad8a4d986311.tar.gz hdf5-76ca6e67a7d5e395d018bd97e4a9ad8a4d986311.tar.bz2 |
[svn-r1398] Purpose:
new feature
Makefile.in:
Added the dependence of *.c on the testphdf5.h
t_dset.c:
testphdf5.c:
testphdf5.h:
testphdf5 now takes optional arguements for dataset dimension sizes.
That allows testing with different dimension sizes without recompiling
the whole thing.
Platform tested:
O2K
Diffstat (limited to 'testpar/Makefile.in')
-rw-r--r-- | testpar/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testpar/Makefile.in b/testpar/Makefile.in index 7f20fc0..624e5f9 100644 --- a/testpar/Makefile.in +++ b/testpar/Makefile.in @@ -28,7 +28,7 @@ DISTCLEAN=go # Test source files TEST_SRC=testphdf5.c t_dset.c t_file.c t_mpi.c TEST_OBJ=$(TEST_SRC:.c=.lo) -PRIVATE_HDR=testphdf5.h +TEST_HDR=testphdf5.h # How to build the tests... They all depend on the hdf5 library $(TEST_PROGS): ../src/libhdf5.la @@ -36,4 +36,5 @@ $(TEST_PROGS): ../src/libhdf5.la testphdf5: $(TEST_OBJ) @$(LT_LINK_EXE) $(CFLAGS) -o $@ $(TEST_OBJ) $(LIBHDF5) $(LDFLAGS) $(LIBS) +$(TEST_OBJ): $(TEST_HDR) @CONCLUDE@ |