diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-03-01 15:04:59 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-03-01 15:04:59 (GMT) |
commit | 3f2f490a0f5da29ee9e4d4d74449a3e0b2713ce1 (patch) | |
tree | fe1d2a1f534515f9054b0f7a027748ee120864a6 /hl/examples/Makefile.in | |
parent | 516c242b04b60a3f51d004977bee09ff6f8968b7 (diff) | |
download | hdf5-3f2f490a0f5da29ee9e4d4d74449a3e0b2713ce1.zip hdf5-3f2f490a0f5da29ee9e4d4d74449a3e0b2713ce1.tar.gz hdf5-3f2f490a0f5da29ee9e4d4d74449a3e0b2713ce1.tar.bz2 |
[svn-r11993] Purpose:
Added HL examples
Description:
Examples existed for the HL lite, image, and table interfaces, but
were never included in the distro... until now!
Solution:
Added source files to CVS, updated Makefile and MANIFEST.
Platforms tested:
mir, heping, shanti
Diffstat (limited to 'hl/examples/Makefile.in')
-rw-r--r-- | hl/examples/Makefile.in | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/hl/examples/Makefile.in b/hl/examples/Makefile.in index a97b677..3ed927f 100644 --- a/hl/examples/Makefile.in +++ b/hl/examples/Makefile.in @@ -309,19 +309,19 @@ TRACE = perl $(top_srcdir)/bin/trace CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.h5 @BUILD_PARALLEL_CONDITIONAL_TRUE@TEST_PROG_PARA = +# Example directory +EXAMPLEDIR = $(docdir)/hdf5/examples/hl/c + # Example programs. # Don't tell automake about them, because if it knew they were programs, # it would try to compile them instead of using the h5cc script. # Use the boilerplate in config/examples.am instead. -TEST_PROG = ptExampleFL ptExampleVL +TEST_PROG = ex_lite1 ex_lite2 ex_lite3 ptExampleFL ptExampleVL # Install files # List all file that should be installed in examples directory INSTALL_FILES = ptExampleFL.c ptExampleVL.c -# Example directory -EXAMPLEDIR = $(docdir)/hdf5/examples/hl/c - # Assume that all tests in this directory are examples, and tell # conclude.am when to build them. EXAMPLE_PROG = $(TEST_PROG_PARA) $(TEST_PROG) @@ -534,12 +534,18 @@ $(EXTRA_PROG): $(LIBHDF5) $(LIBH5_HL) @BUILD_PARALLEL_CONDITIONAL_TRUE@ $(H5CC_PP) $(CFLAGS) -o $@ $(srcdir)/$@.c; @BUILD_PARALLEL_CONDITIONAL_FALSE@ $(H5CC) $(CFLAGS) -o $@ $(srcdir)/$@.c; +# ex_lite2 uses a file created by ex_lite1 +ex_lite2.chkexe_: ex_lite1.chkexe_ + # List dependencies for each program. Normally, automake would take # care of this for us, but if we tell automake about the programs it # will try to build them with the normal C compiler, not h5cc. This is # an inelegant way of solving the problem. # All programs share the same build rule and a dependency on the main hdf5 # library above. +ex_lite1: $(srcdir)/ex_lite1.c +ex_lite2: $(srcdir)/ex_lite2.c +ex_lite3: $(srcdir)/ex_lite3.c ptExampleFL: $(srcdir)/ptExampleFL.c ptExampleVL: $(srcdir)/ptExampleVL.c |