comparison contrib/filter_gcc_for_doxygen @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents a06113de4d67
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 #!/bin/sh 1 #!/bin/sh
2 2
3 # This filters GCC source before Doxygen can get confused by it; 3 # This filters GCC source before Doxygen can get confused by it;
4 # this script is listed in the doxyfile. The output is not very 4 # this script is listed in the doxyfile. The output is not very
5 # pretty, but at least we get output that Doxygen can understand. 5 # pretty, but at least we get output that Doxygen can understand.
6 # 6 #
7 # $1 is a source file of some kind. The source we wish doxygen to 7 # $1 is a source file of some kind. The source we wish doxygen to
8 # process is put on stdout. 8 # process is put on stdout.
9 9
10 dir=`dirname $0` 10 dir=`dirname $0`
11 perl $dir/filter_params.pl < $1 | perl $dir/filter_knr2ansi.pl 11 python $dir/filter_params.py $1
12 exit 0 12 exit 0