summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2006-03-03 18:26:00 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2006-03-03 18:26:00 (GMT)
commit7943c599df998ce5db1d873ca1e9669ced7aa6c7 (patch)
tree2cf83dc274f64a2dbea15218ea237ba31b7d44b6 /hl
parent76d11ae062f5eabc53df7b82e14b874ff8f0fff9 (diff)
downloadhdf5-7943c599df998ce5db1d873ca1e9669ced7aa6c7.zip
hdf5-7943c599df998ce5db1d873ca1e9669ced7aa6c7.tar.gz
hdf5-7943c599df998ce5db1d873ca1e9669ced7aa6c7.tar.bz2
[svn-r12000] Purpose:
Bug fix Description: Fixed errors in hl examples on modi4 and in parallel. Solution: Parallel error was a typo. D'oh! Used the wrong variable for h5pcc. modi4 was because pmake needs all of its variables defined before they are used. Forgot to define $(LIBHDF5_HL). 1.7 branch is smarter about this. :) Platforms tested: mir, modi4
Diffstat (limited to 'hl')
-rw-r--r--hl/examples/Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/hl/examples/Makefile.in b/hl/examples/Makefile.in
index c7a2e17..a2a43df 100644
--- a/hl/examples/Makefile.in
+++ b/hl/examples/Makefile.in
@@ -26,6 +26,8 @@ H5CC=$(bindir)/h5cc
H5PCC=$(bindir)/h5pcc
CPPFLAGS=-I. -I$(srcdir)
CFLAGS=
+LIBHDF5=../../src/libhdf5.la
+LIBHDF5_HL=../src/libhdf5_hl.la
hdf5_srcdir=$(top_srcdir)/src
hdf5_builddir=$(top_builddir)/src
@@ -55,7 +57,7 @@ ex_lite1: $(srcdir)/ex_lite1.c
$(H5CC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
else \
echo $(H5PCC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
- $(H5CC_PP) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
+ $(H5PCC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
fi
ex_lite2: $(srcdir)/ex_lite2.c
@@ -64,7 +66,7 @@ ex_lite2: $(srcdir)/ex_lite2.c
$(H5CC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
else \
echo $(H5PCC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
- $(H5CC_PP) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
+ $(H5PCC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
fi
ex_lite3: $(srcdir)/ex_lite3.c
@@ -73,7 +75,7 @@ ex_lite3: $(srcdir)/ex_lite3.c
$(H5CC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
else \
echo $(H5PCC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
- $(H5CC_PP) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
+ $(H5PCC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c; \
fi
@CONCLUDE@