diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-11-18 15:55:22 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-11-18 15:55:22 (GMT) |
commit | 4f8ca8e026fbff3eafaf514bb0be8a4126593268 (patch) | |
tree | 63f46898d4de94232f09e4c1b1bad77b99508c90 /hl/fortran | |
parent | 75ea10e5f50c3c23fd73f073adb84b0baf551edc (diff) | |
download | hdf5-4f8ca8e026fbff3eafaf514bb0be8a4126593268.zip hdf5-4f8ca8e026fbff3eafaf514bb0be8a4126593268.tar.gz hdf5-4f8ca8e026fbff3eafaf514bb0be8a4126593268.tar.bz2 |
[svn-r11738] Purpose:
Configure feature
Description:
Added 'make trace' target.
Solution:
Added tracing to 1.7. This was done automatically in 1.6, but left out
of 1.7 until now (oops!).
Tracing in 1.7 only happens manually, when the user types 'make trace.'
Tracing automatically requires more framework than it's worth.
I also fixed a couple of tracing bugs and ran trace.
Platforms tested:
mir, sleipnir, modi4
Misc. update:
Diffstat (limited to 'hl/fortran')
-rw-r--r-- | hl/fortran/Makefile.in | 4 | ||||
-rw-r--r-- | hl/fortran/src/Makefile.in | 4 | ||||
-rw-r--r-- | hl/fortran/test/Makefile.in | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/hl/fortran/Makefile.in b/hl/fortran/Makefile.in index 32ba6a0..1ed7f2a 100644 --- a/hl/fortran/Makefile.in +++ b/hl/fortran/Makefile.in @@ -307,6 +307,10 @@ docdir = $(exec_prefix)/doc @BUILD_SHARED_ONLY_CONDITIONAL_FALSE@H5CPP = $(bindir)/h5c++ @BUILD_SHARED_ONLY_CONDITIONAL_TRUE@H5CPP = $(bindir)/h5c++ -shlib +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + # .chkexe files are used to mark tests that have run successfully. # .chklog files are output from those tests. # *.clog are from the MPE option. diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in index 4946cb5..1fd0bda 100644 --- a/hl/fortran/src/Makefile.in +++ b/hl/fortran/src/Makefile.in @@ -328,6 +328,10 @@ docdir = $(exec_prefix)/doc @BUILD_SHARED_ONLY_CONDITIONAL_FALSE@H5CPP = $(bindir)/h5c++ @BUILD_SHARED_ONLY_CONDITIONAL_TRUE@H5CPP = $(bindir)/h5c++ -shlib +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + # .chkexe files are used to mark tests that have run successfully. # .chklog files are output from those tests. # *.clog are from the MPE option. diff --git a/hl/fortran/test/Makefile.in b/hl/fortran/test/Makefile.in index 7740a79..e44d33b 100644 --- a/hl/fortran/test/Makefile.in +++ b/hl/fortran/test/Makefile.in @@ -327,6 +327,10 @@ docdir = $(exec_prefix)/doc @BUILD_SHARED_ONLY_CONDITIONAL_FALSE@H5CPP = $(bindir)/h5c++ @BUILD_SHARED_ONLY_CONDITIONAL_TRUE@H5CPP = $(bindir)/h5c++ -shlib +# The trace script; this is used on source files from the C library to +# insert tracing macros. +TRACE = perl $(top_srcdir)/bin/trace + # .chkexe files are used to mark tests that have run successfully. # .chklog files are output from those tests. # *.clog are from the MPE option. |