diff options
Diffstat (limited to 'testpar/Makefile.in')
-rw-r--r-- | testpar/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testpar/Makefile.in b/testpar/Makefile.in index e28feae..15cf109 100644 --- a/testpar/Makefile.in +++ b/testpar/Makefile.in @@ -1,6 +1,5 @@ ## hdf5 Parallel Library Test Makefile(.in) ## -## ## Copyright by the Board of Trustees of the University of Illinois. ## All rights reserved. ## @@ -29,7 +28,7 @@ RUNTEST=$(RUNPARALLEL) ## Test programs and scripts. ## -TEST_PROGS_PARA=t_mpi +TEST_PROGS_PARA=t_mpi t_fphdf5 TEST_SCRIPTS=testph5.sh ## These are our main targets @@ -40,7 +39,7 @@ MOSTLYCLEAN=ParaEg[123].h5f DISTCLEAN=go Makefile testph5.sh ## Test source files -TEST_PHDF5_SRC=testphdf5.c t_dset.c t_file.c t_mdset.c +TEST_PHDF5_SRC=testphdf5.c t_dset.c t_file.c t_mdset.c t_ph5basic.c TEST_PHDF5_OBJ=$(TEST_PHDF5_SRC:.c=.lo) TEST_SRC=t_mpi.c $(TEST_PHDF5_SRC) TEST_OBJ=$(TEST_SRC:.c=.lo) @@ -51,6 +50,9 @@ $(PROGS): $(LIBHDF5) $(LIBH5TEST) $(TEST_OBJ): $(TEST_HDR) +t_fphdf5: t_fphdf5.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ t_fphdf5.lo $(LIBH5TEST) $(LIBHDF5) $(LDFLAGS) $(LIBS) + t_mpi: t_mpi.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ t_mpi.lo $(LIBH5TEST) $(LIBHDF5) $(LDFLAGS) $(LIBS) |