diff options
Diffstat (limited to 'examples/Makefile.in')
-rw-r--r-- | examples/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in index fa5d93b..b36f86a 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -16,7 +16,8 @@ LIBHDF5=../src/libhdf5.la ## These are the programs that `make all' or `make tests' will build and which ## `make check' will run. List them in the order they should be run. 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_group h5_select h5_attribute h5_mount h5_reference \ + ph5example ## These are the files that `make clean' (and derivatives) will remove from ## this directory. @@ -62,4 +63,8 @@ h5_mount: h5_mount.lo h5_reference: h5_reference.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5_reference.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) + +ph5example: ph5example.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ $@.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) + @CONCLUDE@ |