diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2008-05-21 15:02:24 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2008-05-21 15:02:24 (GMT) |
commit | fcf8a9a2cbdca2dd8e8a7af51961ad9b0729c380 (patch) | |
tree | 1c6911ba828f6e4c729f7ea65be0d96dc3d9d49c /fortran/test/Makefile.in | |
parent | 0c40ae2d42f935dcc2d8eed01a4c0e877417ef90 (diff) | |
download | hdf5-fcf8a9a2cbdca2dd8e8a7af51961ad9b0729c380.zip hdf5-fcf8a9a2cbdca2dd8e8a7af51961ad9b0729c380.tar.gz hdf5-fcf8a9a2cbdca2dd8e8a7af51961ad9b0729c380.tar.bz2 |
[svn-r15054] Purpose:
Made reporting of the test status global by handling the output
via a module. Cleaned-up output to the terminal.
Description:
Put writing the test status as a call to a subroutine
instead of on a per account basis.
Added the dependency of compiling in the correct order
in the Makefiles for use of the Module.
Diffstat (limited to 'fortran/test/Makefile.in')
-rw-r--r-- | fortran/test/Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in index 43f713b..e313325 100644 --- a/fortran/test/Makefile.in +++ b/fortran/test/Makefile.in @@ -819,6 +819,15 @@ help: # fflush2 depends on files created by fflush1 fflush2.chkexe_: fflush1.chkexe_ +# Hardcode the dependencies of these files. There isn't a known way of +# determining this automagically (like we do with the C files). So, when +# doing a parallel make, some modules could be made way before the +# modules they depend upon are actually made. *sigh* +fortranlib_test.lo: fortranlib_test.f90 tf.lo +fortranlib_test_1_8.lo: fortranlib_test_1_8.f90 tf.lo +tH5A_1_8.lo: tH5A_1_8.f90 tf.lo +tH5G_1_8.lo: tH5G_1_8.f90 tf.lo + # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) |