summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-04-16 23:01:44 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-04-16 23:01:44 (GMT)
commit368a103a935ab6dcedf6aa588bb162593d05e47c (patch)
tree03feb76250723ae71022fa5fabc87eca9f84ace3 /testpar
parent0bf1da98b6b79886a79c549c2285507f8471aadb (diff)
downloadhdf5-368a103a935ab6dcedf6aa588bb162593d05e47c.zip
hdf5-368a103a935ab6dcedf6aa588bb162593d05e47c.tar.gz
hdf5-368a103a935ab6dcedf6aa588bb162593d05e47c.tar.bz2
[svn-r348] Removed shdf entries. With more parallel access features used,
it is hard to keep an equivalent sequential version. Its useness has diminshed too now that the basic parallel access features are working.
Diffstat (limited to 'testpar')
-rw-r--r--testpar/Makefile.irix6412
1 files changed, 3 insertions, 9 deletions
diff --git a/testpar/Makefile.irix64 b/testpar/Makefile.irix64
index b1bbada..291ab25 100644
--- a/testpar/Makefile.irix64
+++ b/testpar/Makefile.irix64
@@ -19,7 +19,7 @@ CPPFLAGS=-I. -I../src $(MPI_INC)
RM=rm -f
# temporary test files that can be cleaned away
-MOSTLYCLEAN=ParaEg1.h5f ParaEg2.h5f Eg1.h5f Eg2.h5f shdf5.c go
+MOSTLYCLEAN=ParaEg1.h5f ParaEg2.h5f go
# The default is to build the library and programs.
all: testphdf5
@@ -27,14 +27,14 @@ all: testphdf5
# These are our main targets. They should be listed in the order to be
# executed, generally most specific tests to least specific tests.
-PROGS=testphdf5 shdf5
+PROGS=testphdf5
TESTS=$(PROGS)
# Source and object files for programs... The PROG_SRC list contains all the
# 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.
-PROG_SRC=testphdf5.c shdf5.c
+PROG_SRC=testphdf5.c
PROG_OBJ=$(PROG_SRC:.c=.o)
TESTPHDF5_SRC=testphdf5.c
@@ -47,11 +47,6 @@ PRIVATE_HDR=testhdf5.h
testphdf5: $(TESTPHDF5_OBJ) ../src/libhdf5.a
$(CC) $(CFLAGS) -o $@ $(TESTPHDF5_OBJ) ../src/libhdf5.a $(MPI_LIBS)
-shdf5: testphdf5.c ../src/libhdf5.a
- cp testphdf5.c shdf5.c
- $(CC) -UHAVE_PARALLEL $(CFLAGS) $(CPPFLAGS) -o $@ $@.c ../src/libhdf5.a $(MPI_LIBS)
-
-
#------------------------------------------------------------- -*- makefile -*-
# The following section of this makefile comes from the
# `./config/conclude' file which was generated with config.status
@@ -64,7 +59,6 @@ progs: $(PROGS)
# Runs each test in order, passing $(TEST_FLAGS) to the program.
test: $(PROGS)
mpirun -np 2 testphdf5
- mpirun -np 1 shdf5
# Removes temporary files without removing the final target files. That is,
# remove things like object files but not libraries or executables.