diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-02-11 03:17:36 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-02-11 03:17:36 (GMT) |
commit | f55948e4ba3e8dc49d2cde442096627309ee6b89 (patch) | |
tree | 29d15629b7905c3d70571d67c3651677d65a44fd /fortran | |
parent | 316a2ab99aadd214710db9da70df3133eb5e2f66 (diff) | |
download | hdf5-f55948e4ba3e8dc49d2cde442096627309ee6b89.zip hdf5-f55948e4ba3e8dc49d2cde442096627309ee6b89.tar.gz hdf5-f55948e4ba3e8dc49d2cde442096627309ee6b89.tar.bz2 |
[svn-r8181] Purpose:
Bug fix.
Description:
"make check" failed because the macro "$<" is not known to those
makes.
Solution:
Replace that macro with a string name in the form of a more basic
macro of "$@".
Platforms tested:
h5committested (copper used make.)
Misc. update:
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/examples/Makefile.in | 168 |
1 files changed, 84 insertions, 84 deletions
diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in index e074539..8391834 100644 --- a/fortran/examples/Makefile.in +++ b/fortran/examples/Makefile.in @@ -50,129 +50,129 @@ EXAMPLE_PROGS=$(TEST_SRC) ## How to build the programs... they all depend on the Fortran & C hdf5 libraries $(TEST_PROGS): $(LIBHDF5) dsetexample: $(srcdir)/dsetexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi fileexample: $(srcdir)/fileexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi rwdsetexample: $(srcdir)/rwdsetexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi attrexample: $(srcdir)/attrexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi groupexample: $(srcdir)/groupexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi grpsexample: $(srcdir)/grpsexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi grpdsetexample: $(srcdir)/grpdsetexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi hyperslab: $(srcdir)/hyperslab.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi selectele: $(srcdir)/selectele.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi grpit: $(srcdir)/grpit.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi refobjexample: $(srcdir)/refobjexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi refregexample: $(srcdir)/refregexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi mountexample: $(srcdir)/mountexample.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi compound: $(srcdir)/compound.f90 - @if test "X$(PARALLEL)" = "Xno"; then \ - echo $(FC) -o $@ $<; \ - $(FC) -o $@ $<; \ - else \ - echo $(FC_PP) -o $@ $<; \ - $(FC_PP) -o $@ $<; \ + @if test "X$(PARALLEL)" = "Xno"; then \ + echo $(FC) -o $@ $(srcdir)/$@.f90; \ + $(FC) -o $@ $(srcdir)/$@.f90; \ + else \ + echo $(FC_PP) -o $@ $(srcdir)/$@.f90; \ + $(FC_PP) -o $@ $(srcdir)/$@.f90; \ fi @CONCLUDE@ |