[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.
This commit is contained in:
Albert Cheng 1998-04-16 18:01:44 -05:00
parent 0bf1da98b6
commit 368a103a93

View File

@ -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.