summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2006-03-27 20:32:45 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2006-03-27 20:32:45 (GMT)
commit580ba61650d57dce375b0c649d5ee7bd88580965 (patch)
tree49ca4d4903012aa3d8a0a9b0b56063362479236a /examples
parent84f1218f6b1426f73b20e641288c6ba015580d6a (diff)
downloadhdf5-580ba61650d57dce375b0c649d5ee7bd88580965.zip
hdf5-580ba61650d57dce375b0c649d5ee7bd88580965.tar.gz
hdf5-580ba61650d57dce375b0c649d5ee7bd88580965.tar.bz2
[svn-r12160] Purpose:
Added test Description: The deploy Daily Test is now more robust Solution: Previously, the Daily Tests (using the bin/snapshot script) would run bin/deploy to install HDF5 into a directory other than the --prefix specified at configure-time. However, this new installation was never tested using make check-install. Modified bin/snapshot to clean the test directory and run make check-install for the newly-deployed library. Platforms tested: tested snapshot script on mir. No changes to code. Trial by fire in Daily Tests tonight!
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in
index be60e94..8b53e93 100644
--- a/examples/Makefile.in
+++ b/examples/Makefile.in
@@ -23,7 +23,6 @@ H5CC=$(bindir)/h5cc
H5CC_PP=$(bindir)/h5pcc
CPPFLAGS=-I. -I$(srcdir)
CFLAGS=
-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.
@@ -48,7 +47,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) $(TEST_PROGS_PARA): $(LIBHDF5)
+$(TEST_PROGS) $(TEST_PROGS_PARA):
h5_chunk_read: $(srcdir)/h5_chunk_read.c
@if test "X$(PARALLEL)" = "Xno"; then \
echo $(H5CC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \