diff options
author | James Laird <jlaird@hdfgroup.org> | 2007-02-23 19:14:11 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2007-02-23 19:14:11 (GMT) |
commit | 0d86163705a6922aa6985bad7d61eab3e17f95d5 (patch) | |
tree | 2816755fd5ed1dee83400e251288e782543ac459 /src | |
parent | 182c05cb95472cae9411169d295a4bcad6f5edd7 (diff) | |
download | hdf5-0d86163705a6922aa6985bad7d61eab3e17f95d5.zip hdf5-0d86163705a6922aa6985bad7d61eab3e17f95d5.tar.gz hdf5-0d86163705a6922aa6985bad7d61eab3e17f95d5.tar.bz2 |
[svn-r13379] Added 'make help' target. This actually runs a script, bin/makehelp (formatting
the output in the makefile was pretty hard).
Tested that make still works on kagiso; no code changes at all.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5A.c | 6 | ||||
-rw-r--r-- | src/Makefile.in | 5 |
2 files changed, 10 insertions, 1 deletions
@@ -231,6 +231,8 @@ H5Acreate2(hid_t loc_id, const char *obj_name, const char *attr_name, hid_t ret_value; /* Return value */ FUNC_ENTER_API(H5Acreate2, FAIL) + H5TRACE8("i", "issiiiii", loc_id, obj_name, attr_name, type_id, space_id, + acpl_id, aapl_id, lapl_id); /* check arguments */ if(H5I_ATTR == H5I_get_type(loc_id)) @@ -449,6 +451,7 @@ H5Aopen(hid_t loc_id, const char *obj_name, const char *attr_name, hid_t ret_value; FUNC_ENTER_API(H5Aopen, FAIL) + H5TRACE5("i", "issii", loc_id, obj_name, attr_name, aapl_id, lapl_id); /* check arguments */ if(H5I_ATTR == H5I_get_type(loc_id)) @@ -516,6 +519,8 @@ H5Aopen_by_idx(hid_t loc_id, const char *obj_name, H5_index_t idx_type, hid_t ret_value; /* Return value */ FUNC_ENTER_API(H5Aopen_by_idx, FAIL) + H5TRACE7("i", "isIiIohii", loc_id, obj_name, idx_type, order, n, aapl_id, + lapl_id); /* check arguments */ if(H5I_ATTR == H5I_get_type(loc_id)) @@ -1617,6 +1622,7 @@ H5Arename2(hid_t loc_id, const char *obj_name, const char *old_attr_name, herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(H5Arename2, FAIL) + H5TRACE5("e", "isssi", loc_id, obj_name, old_attr_name, new_attr_name, lapl_id); /* check arguments */ if(H5I_ATTR == H5I_get_type(loc_id)) diff --git a/src/Makefile.in b/src/Makefile.in index ce678bd..9bd093e 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1027,7 +1027,10 @@ uninstall-am: uninstall-includeHEADERS uninstall-info-am \ # exists. .PHONY: build-check-clean build-check-p build-check-s build-lib build-progs \ build-tests check-clean check-install check-p check-s check-vfd \ - install-doc lib progs tests uninstall-doc _exec_check-s _test + install-doc lib progs tests uninstall-doc _exec_check-s _test help + +help: + @$(top_srcdir)/bin/makehelp # Copyright by The HDF Group. # Copyright by the Board of Trustees of the University of Illinois. |