mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: move bin/doxyFilt -> bin/tools/doxyFilter
- normally only for doxygen generation, not needed in the path
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
# along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# Script
|
||||
# doxyFilt
|
||||
# doxyFilter
|
||||
#
|
||||
# Description
|
||||
# pass-through filter for doxygen
|
||||
@ -43,19 +43,19 @@ then
|
||||
dirName=${filePath%/[^/]*}
|
||||
fileName=${filePath##*/}
|
||||
|
||||
awkScript=$WM_PROJECT_DIR/bin/tools/doxyFilt.awk
|
||||
awkScript=$WM_PROJECT_DIR/bin/tools/doxyFilter.awk
|
||||
|
||||
case "$1" in
|
||||
*/applications/solvers/*.C | */applications/utilities/*.C )
|
||||
awkScript=$WM_PROJECT_DIR/bin/tools/doxyFilt-top.awk
|
||||
awkScript=$WM_PROJECT_DIR/bin/tools/doxyFilter-top.awk
|
||||
;;
|
||||
# */applications/solvers/*.H | */applications/utilities/*.H )
|
||||
# awkScript=$WM_PROJECT_DIR/bin/tools/doxyFilt-ignore.awk
|
||||
# awkScript=$WM_PROJECT_DIR/bin/tools/doxyFilter-ignore.awk
|
||||
# ;;
|
||||
esac
|
||||
|
||||
awk -f $awkScript $1 | \
|
||||
sed -f $WM_PROJECT_DIR/bin/tools/doxyFilt.sed \
|
||||
sed -f $WM_PROJECT_DIR/bin/tools/doxyFilter.sed \
|
||||
-e s@%filePath%@$filePath@g \
|
||||
-e s@%fileName%@$fileName@g \
|
||||
-e s@%dirName%@$dirName@g
|
||||
@ -22,7 +22,7 @@
|
||||
# along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# Script
|
||||
# doxyFilt-ignore.awk
|
||||
# doxyFilter-ignore.awk
|
||||
#
|
||||
# Description
|
||||
# - Prefix file contents with doxygen @file tag and %filePath% tag
|
||||
@ -22,7 +22,7 @@
|
||||
# along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# Script
|
||||
# doxyFilt-top.awk
|
||||
# doxyFilter-top.awk
|
||||
#
|
||||
# Description
|
||||
# Only output the first /* ... */ comment section found in the file
|
||||
@ -22,7 +22,7 @@
|
||||
# along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# Script
|
||||
# doxyFilt.awk
|
||||
# doxyFilter.awk
|
||||
#
|
||||
# Description
|
||||
# Converts cocoon style sentinel strings into doxygen style strings
|
||||
@ -1,6 +1,6 @@
|
||||
# -----------------------------------------------------------------------------
|
||||
# Script
|
||||
# doxyFilt.sed
|
||||
# doxyFilter.sed
|
||||
#
|
||||
# Description
|
||||
# Transform human-readable tags such as 'Description' into the Doxygen
|
||||
@ -567,7 +567,7 @@ IMAGE_PATH =
|
||||
# to standard output. If FILTER_PATTERNS is specified, this tag will be
|
||||
# ignored.
|
||||
|
||||
INPUT_FILTER = doxyFilt
|
||||
INPUT_FILTER = $(WM_PROJECT_DIR)/bin/tools/doxyFilter
|
||||
|
||||
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
|
||||
# basis. Doxygen will compare the file name with each pattern and apply the
|
||||
|
||||
@ -669,7 +669,7 @@ IMAGE_PATH =
|
||||
# If FILTER_PATTERNS is specified, this tag will be
|
||||
# ignored.
|
||||
|
||||
INPUT_FILTER = doxyFilt
|
||||
INPUT_FILTER = $(WM_PROJECT_DIR)/bin/tools/doxyFilter
|
||||
|
||||
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
|
||||
# basis.
|
||||
|
||||
Reference in New Issue
Block a user