summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-01-07 17:45:16 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-01-07 17:45:16 (GMT)
commit6a9d906c9074b758a210d702805269b330cc4220 (patch)
treeb5c80ac85b30ad858b815ce537742487ef220d02 /examples
parentfb1494ea6e82b4dc43137d83e8ddffa72f97ed90 (diff)
downloadhdf5-6a9d906c9074b758a210d702805269b330cc4220.zip
hdf5-6a9d906c9074b758a210d702805269b330cc4220.tar.gz
hdf5-6a9d906c9074b758a210d702805269b330cc4220.tar.bz2
[svn-r8035] Purpose:
feature Description: Install the C and Fortran compiler commands as h5pcc and h5pfc if parallel mode is used. Platforms tested: "h5committested"
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.in108
1 files changed, 91 insertions, 17 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in
index 5852297..37e1d0e 100644
--- a/examples/Makefile.in
+++ b/examples/Makefile.in
@@ -1,4 +1,3 @@
-## HDF5 Library Examples Makefile(.in)
##
## Copyright by the Board of Trustees of the University of Illinois.
## All rights reserved.
@@ -12,13 +11,16 @@
## http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have
## access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.
##
+## HDF5 Library Examples Makefile(.in)
+##
top_srcdir=@top_srcdir@
top_builddir=..
srcdir=@srcdir@
@COMMENCE@
## Replace building CC with the just installed h5cc
-CC=$(bindir)/h5cc
+H5CC=$(bindir)/h5cc
+H5CC_PP=$(bindir)/h5pcc
CPPFLAGS=-I. -I$(srcdir)
CFLAGS=
@@ -26,7 +28,7 @@ CFLAGS=
## `make check' will run. List them in the order they should be run.
TEST_PROGS_PARA=ph5example
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_drivers
+ h5_group h5_select h5_attribute h5_mount h5_reference h5_drivers
## These are the files that `make clean' (and derivatives) will remove from
## this directory.
@@ -38,8 +40,8 @@ CLEAN=*.h5 *.raw *.meta *.clog
## for building automatic dependencies.
TEST_SRC_PARA=ph5example.c
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_mount.c \
- h5_reference.c h5_drivers.c $(TEST_SRC_PARA)
+ h5_read.c h5_write.c h5_select.c h5_attribute.c h5_mount.c \
+ h5_reference.c h5_drivers.c $(TEST_SRC_PARA)
TEST_OBJ=$(TEST_SRC:.c=.lo)
EXAMPLE_PROGS=$(TEST_SRC)
@@ -47,39 +49,111 @@ EXAMPLE_PROGS=$(TEST_SRC)
## How to build the programs... they all depend on the hdf5 library
$(TEST_PROGS) $(TEST_PROGS_PARA): $(LIBHDF5)
h5_chunk_read: $(srcdir)/h5_chunk_read.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_chunk_read.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_compound: $(srcdir)/h5_compound.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_compound.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_extend_write: $(srcdir)/h5_extend_write.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_extend_write.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_group: $(srcdir)/h5_group.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_group.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_write: $(srcdir)/h5_write.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_write.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_read: $(srcdir)/h5_read.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_read.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_select: $(srcdir)/h5_select.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_select.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_attribute: $(srcdir)/h5_attribute.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_attribute.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_mount: $(srcdir)/h5_mount.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_mount.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_reference: $(srcdir)/h5_reference.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_reference.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
h5_drivers: $(srcdir)/h5_drivers.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/h5_drivers.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
ph5example: $(srcdir)/ph5example.c
- $(CC) $(CPPFLAGS) -o $@ $(srcdir)/$@.c
+ @if test "X$(PARALLEL)" = "Xno"; then \
+ echo $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC) $(CPPFLAGS) -o $@ $<; \
+ else \
+ echo $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ $(H5CC_PP) $(CPPFLAGS) -o $@ $<; \
+ fi
@CONCLUDE@