New (Copy of ../tools/build/doxy-filter).

This commit is contained in:
Ralf Corsepius
2010-06-11 19:36:36 +00:00
parent c8bfa2480f
commit cd8009eff9

21
cpukit/doxy-filter Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
# doxygen input filter
# $Id$
# usage: doxy-filter <input-file-name>
# Reads <input-file> and writes to stdout.
file=$1
# Does file contain a doxygen @file directive?
if ! grep -q '@file' $file >/dev/null ; then
# No, add one
echo "/** @file $file */"
cat $file
else
# Yes, adjust path to work around doxygen not being able to
# distinguish file names properly
exec sed -e "s,@file.*$,@file $file," $file
fi