diff options
Diffstat (limited to 'examples/Makefile.in')
-rw-r--r-- | examples/Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in index 2dd7c3b..8010245 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -20,8 +20,7 @@ LIBHDF5=../src/libhdf5.la ## `make check' will run. List them in the order they should be run. TEST_PROGS_PARA=ph5example TEST_PROGS=h5_write h5_read h5_extend_write h5_chunk_read h5_compound \ - h5_group h5_select h5_attribute h5_mount h5_reference \ - h5_drivers $(TEST_PROGS_PARA) + h5_group h5_select h5_attribute h5_mount h5_reference h5_drivers ## These are the files that `make clean' (and derivatives) will remove from ## this directory. @@ -39,7 +38,7 @@ TEST_OBJ=$(TEST_SRC:.c=.lo) EXAMPLE_PROGS=$(TEST_SRC) ## How to build the programs... they all depend on the hdf5 library -$(TEST_PROGS): $(LIBHDF5) +$(TEST_PROGS) $(TEST_PROGS_PARA): $(LIBHDF5) h5_chunk_read: h5_chunk_read.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5_chunk_read.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) |