Retro68/gcc/contrib/filter_gcc_for_doxygen

13 lines
361 B
Plaintext
Raw Normal View History

2012-03-27 23:13:14 +00:00
#!/bin/sh
# This filters GCC source before Doxygen can get confused by it;
2018-12-28 15:30:48 +00:00
# this script is listed in the doxyfile. The output is not very
2012-03-27 23:13:14 +00:00
# pretty, but at least we get output that Doxygen can understand.
#
2018-12-28 15:30:48 +00:00
# $1 is a source file of some kind. The source we wish doxygen to
2012-03-27 23:13:14 +00:00
# process is put on stdout.
dir=`dirname $0`
2018-12-28 15:30:48 +00:00
python $dir/filter_params.py $1
2012-03-27 23:13:14 +00:00
exit 0