mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-12 17:31:09 +08:00
[svn-r11034] Purpose:
bug fix. Description: -nt is not a universal option for the test command in all platforms. The use of it in conclude.am cause some platforms to bark at the Makefile generated. Solution: Created a command script bin/newer which tests if file1 is newer than file2. Replace the "test file1 -nt file2" by "newer file1 file2". Platforms tested: Tested in sol.
This commit is contained in:
parent
3781d2ed5a
commit
f68a2e6db7
1
MANIFEST
1
MANIFEST
@ -43,6 +43,7 @@ a------------------------------------------------------------------------------
|
||||
./bin/missing
|
||||
./bin/mkdirs
|
||||
./bin/mkinstalldirs
|
||||
./bin/newer
|
||||
./bin/reconfigure _DO_NOT_DISTRIBUTE_
|
||||
./bin/release
|
||||
./bin/runtest _DO_NOT_DISTRIBUTE_
|
||||
|
27
bin/newer
Executable file
27
bin/newer
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
##
|
||||
## Copyright by the Board of Trustees of the University of Illinois.
|
||||
## All rights reserved.
|
||||
##
|
||||
## This file is part of HDF5. The full HDF5 copyright notice, including
|
||||
## terms governing use, modification, and redistribution, is contained in
|
||||
## the files COPYING and Copyright.html. COPYING can be found at the root
|
||||
## of the source code distribution tree; Copyright.html can be found at the
|
||||
## root level of an installed copy of the electronic HDF5 document set and
|
||||
## is linked from the top-level documents page. It can also be found at
|
||||
## 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.
|
||||
##
|
||||
# Compare the modification of two files. If file1 is newer than file2,
|
||||
# return true (0). Otherwise return false (1). If file1 or file2 does
|
||||
# not exist or is not a file, return false (1).
|
||||
#
|
||||
# Programmer: Albert Cheng
|
||||
# Created Date: 2005/07/06
|
||||
|
||||
if test -f $1 -a -f $2; then
|
||||
if test X != X`find $1 -newer $2 -print`; then
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
exit 1
|
@ -691,8 +691,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -719,8 +718,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -586,8 +586,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -614,8 +613,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -769,8 +769,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -797,8 +796,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -657,8 +657,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -685,8 +684,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -74,8 +74,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -102,8 +101,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -601,8 +601,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -629,8 +628,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -700,8 +700,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -728,8 +727,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -605,8 +605,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -633,8 +632,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -897,8 +897,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -925,8 +924,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -862,8 +862,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -890,8 +889,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -630,8 +630,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -658,8 +657,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -665,8 +665,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -693,8 +692,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -668,8 +668,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -696,8 +695,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -690,8 +690,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -718,8 +717,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -639,8 +639,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -667,8 +666,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -663,8 +663,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -691,8 +690,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -714,8 +714,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -742,8 +741,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -630,8 +630,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -658,8 +657,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -678,8 +678,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -706,8 +705,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -664,8 +664,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -692,8 +691,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -673,8 +673,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -701,8 +700,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -732,8 +732,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -760,8 +759,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -990,8 +990,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -1018,8 +1017,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -1095,8 +1095,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -1123,8 +1122,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -669,8 +669,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -697,8 +696,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -670,8 +670,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -698,8 +697,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -673,8 +673,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -701,8 +700,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -711,8 +711,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -739,8 +738,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -687,8 +687,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -715,8 +714,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -680,8 +680,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -708,8 +707,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -704,8 +704,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -732,8 +731,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -660,8 +660,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -688,8 +687,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -737,8 +737,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -765,8 +764,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -677,8 +677,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -705,8 +704,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
@ -770,8 +770,7 @@ _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH)
|
||||
$(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
@if test "X$@" != "X.chkexe_" && test "X$@" != "Xdummy.chkexe_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chkexe_=.chkexe) && \
|
||||
test $(@:.chkexe_=.chkexe) -nt $(@:.chkexe_=)$(EXEEXT); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $(@:.chkexe_=)$(EXEEXT); then \
|
||||
echo "No need to test $(@:.chkexe_=)$(EXEEXT) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
@ -798,8 +797,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_:
|
||||
$(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_:
|
||||
@if test "X$@" != "X.chksh_" && test "X$@" != "Xdummy.chksh_"; then \
|
||||
echo "============================"; \
|
||||
if test -f $(@:.chksh_=.chksh) && \
|
||||
test $(@:.chksh_=.chksh) -nt $(@:.chksh_=); then \
|
||||
if $(top_srcdir)/bin/newer $(@:.chksh_=.chksh) $(@:.chksh_=); then \
|
||||
echo "No need to test $(@:.chksh_=) again."; \
|
||||
else \
|
||||
if test "X$(HDF_FORTRAN)" = "Xyes"; then \
|
||||
|
Loading…
x
Reference in New Issue
Block a user