]>
git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/regen.sh
5 # This bash script regenerates the HTML doxygen version of the
6 # wxWidgets manual and adjusts the doxygen log to make it more
9 mkdir -p out
/html
# we need to copy files in this folder below
10 mkdir -p out
/html
/wxmsw out
/html
/wxgtk out
/html
/wxmac
12 # this image is not automatically copied by Doxygen because it's not
13 # used in doxygen documentation but only in our html footer...
14 cp images
/powered
-by-wxwidgets.png out
/html
15 cp images
/*logo.png out
/html
16 cp images
/wxmsw
/*png out
/html
/wxmsw
17 cp images
/wxmac
/*png out
/html
/wxmac
18 cp images
/wxgtk
/*png out
/html
/wxgtk
20 # this CSS is automatically copied by Doxygen because it's
21 # included by our custom html header...
22 cp wxwidgets.css out
/html
27 # NB: we do this _after_ copying the required files to the output folders
28 # otherwise when generating the CHM file with Doxygen, those files are
31 if [[ -z "$1" ]]; then
32 cfgfile
="Doxyfile.all"
39 # Doxygen has the annoying habit to put the full path of the
40 # affected files in the log file; remove it to make the log
43 interfacepath
=`cd ../../interface && pwd`/
44 cat doxygen.log
| sed -e "s|$currpath||g" -e "s|$interfacepath||g" >temp
47 # filter out the following warning which we don't care about
48 #cat doxygen.log | grep -v ".*supplied.*as.*the.*argument.*is.*not.*an.*input.*file.*" >temp