diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 1999-06-25 18:11:09 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 1999-06-25 18:11:09 (GMT) |
commit | debc8037fb65a9cfb7b77126f3d5ec0827e6d12c (patch) | |
tree | e37e815d7b4fd46dc870237725285999f80eac7f /examples/Makefile.in | |
parent | 40abc593504c8f10a8e3c9935122aba7b4f3fd56 (diff) | |
download | hdf5-debc8037fb65a9cfb7b77126f3d5ec0827e6d12c.zip hdf5-debc8037fb65a9cfb7b77126f3d5ec0827e6d12c.tar.gz hdf5-debc8037fb65a9cfb7b77126f3d5ec0827e6d12c.tar.bz2 |
[svn-r1380] Two new examples h5_mount.c and h5_reference.c were added.
h5_select.c was modified to use fill values, and h5_group.c was modified
to show how H5Giterate can be used to get information about the objects in
a group.
Necessary changes were done to the Makefile.in.
Tested on Solaris 2.6 (baldric)
Diffstat (limited to 'examples/Makefile.in')
-rw-r--r-- | examples/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in index ae67254..171c8bd 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -17,7 +17,7 @@ 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_group h5_select h5_attribute h5_mount h5_reference # These are the files that `make clean' (and derivatives) will remove from # this directory. @@ -27,7 +27,8 @@ CLEAN=*.h5 *.o *.lo # created by replacing the `.c' with a `.o'. This list is necessary # for building automatic dependencies. TEST_SRC=h5_chunk_read.c h5_compound.c h5_extend_write.c h5_group.c \ - h5_read.c h5_write.c h5_select.c h5_attribute.c + h5_read.c h5_write.c h5_select.c h5_attribute.c h5_mount.c \ + h5_reference.c TEST_OBJ=$(PROG_SRC:.c=.lo) @@ -57,4 +58,9 @@ h5_select: h5_select.lo h5_attribute: h5_attribute.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5_attribute.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) +h5_mount: h5_mount.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5_mount.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) + +h5_reference: h5_reference.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5_reference.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) @CONCLUDE@ |