diff options
-rw-r--r-- | tools/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 05202d6..96a757f 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -10,7 +10,7 @@ CPPFLAGS=-I../src -I. @CPPFLAGS@ # Tools test targets. -#TESTS=testh5dump.sh +TESTS=testh5dump # These are our main targets: PROGS=h5debug h5import h5ls h5repart h5dump @@ -42,4 +42,7 @@ h5repart: h5repart.o $(LIB) ../src/libhdf5.a h5dump: h5dump.o h5dumputil.o $(LIB) ../src/libhdf5.a $(CC) $(CFLAGS) -o $@ h5dump.o h5dumputil.o $(LIBS) +testh5dump: testh5dump.sh + cp testh5dump.sh $@ + @CONCLUDE@ |