diff options
-rw-r--r-- | testpar/Makefile.irix64 | 12 |
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. |