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