diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-02-10 22:46:17 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-02-10 22:46:17 (GMT) |
commit | 7b1c09511a502bdb4f4b2102fe392766a2507a4a (patch) | |
tree | d0619b5d1a3877b5f3a0888ccd20b33d6f38974e /fortran | |
parent | f63891efb59d6b6f6a919e6c57dc4f42d5a2a930 (diff) | |
download | hdf5-7b1c09511a502bdb4f4b2102fe392766a2507a4a.zip hdf5-7b1c09511a502bdb4f4b2102fe392766a2507a4a.tar.gz hdf5-7b1c09511a502bdb4f4b2102fe392766a2507a4a.tar.bz2 |
[svn-r8177] 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:
Using make in sol, copper.
Using gmake in eirene (serial and PP).
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 682c07f..5d481fb 100644 --- a/fortran/examples/Makefile.in +++ b/fortran/examples/Makefile.in @@ -47,129 +47,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@ |