binutils-gdb/gdb/doc/filter-for-doxygen

15 lines
412 B
Plaintext
Raw Normal View History

2014-02-11 00:01:14 +01:00
#!/bin/sh
# This filters GDB source before Doxygen can get confused by it;
# this script is listed in the doxyfile. The output is not very
# pretty, but at least we get output that Doxygen can understand.
#
# $1 is a source file of some kind. The source we wish doxygen to
# process is put on stdout.
# (Adapted from gcc/contrib/filter_gcc_for_doxygen)
dir=`dirname $0`
perl $dir/filter-params.pl < $1
exit 0