summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-02-15 21:15:33 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-02-15 21:15:33 (GMT)
commit16c346bad4b2ac05e4434b32a2f190ff68bdc964 (patch)
treed04386f8f2ff4441105a028053a299ae35a90bb1 /testpar
parentb35ddccf5dc9e2487926bdbc4b56095dd02f4af5 (diff)
downloadhdf5-16c346bad4b2ac05e4434b32a2f190ff68bdc964.zip
hdf5-16c346bad4b2ac05e4434b32a2f190ff68bdc964.tar.gz
hdf5-16c346bad4b2ac05e4434b32a2f190ff68bdc964.tar.bz2
[svn-r1068] Completed the previous to do auto-configure for parallel tests too.
Also removed the pre-defined "USE_PAUSE" since it should be invoked only in individual cases, rather than as defaults. Tested in O2K.
Diffstat (limited to 'testpar')
-rw-r--r--testpar/Makefile.in13
1 files changed, 6 insertions, 7 deletions
diff --git a/testpar/Makefile.in b/testpar/Makefile.in
index 2f6e5d8..dcab8f1 100644
--- a/testpar/Makefile.in
+++ b/testpar/Makefile.in
@@ -7,16 +7,15 @@
@COMMENCE@
# Add the include directory to the C preprocessor flags the the hdf5 library
-# to the library list. Also add the -DUSE_PAUSE to get the test files to
-# pause until a `go' file exists in order to attach a debugger.
-CPPFLAGS=-I. -I../src -DUSE_PAUSE @CPPFLAGS@
+# to the library list.
+CPPFLAGS=-I. -I../src @CPPFLAGS@
LIBS=../src/libhdf5.a @LIBS@
# These tests are parallel
RUNTEST=$(RUNPARALLEL)
# These are our main targets
-TESTS=testphdf5
+TEST_PROGS=testphdf5
# Temporary files
MOSTLYCLEAN=ParaEg[123].h5f
@@ -28,9 +27,9 @@ TEST_OBJ=$(TEST_SRC:.c=.o)
PRIVATE_HDR=testphdf5.h
# How to build the tests... They all depend on the hdf5 library
-$(TESTS): ../src/libhdf5.a
+$(TEST_PROGS): ../src/libhdf5.a
-testphdf5: testphdf5.o t_dset.o t_file.o
- $(CC) $(CFLAGS) -o $@ testphdf5.o t_dset.o t_file.o $(LDFLAGS) $(LIBS)
+testphdf5: $(TEST_OBJ)
+ $(CC) $(CFLAGS) -o $@ $(TEST_OBJ) $(LDFLAGS) $(LIBS)
@CONCLUDE@