]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/regen.sh
added wxWidgets samples
[wxWidgets.git] / docs / doxygen / regen.sh
CommitLineData
4411a6b6
FM
1#!/bin/sh
2
3doxygen
4
5# this image is not automatically copied by Doxygen because it's not
6# used in doxygen documentation but only in our html footer...
7cp images/powered-by-wxwidgets.png out/html
d513b59d
FM
8
9# this CSS is automatically copied by Doxygen because it's
10# included by our custom html header...
11cp wxwidgets.css out/html
12
13# Doxygen has the annoying habit to put the full path of the
14# affected files in the log file; remove it to make the log
15# more readable
16currpath=`pwd`/
2c58a7e7
FM
17interfacepath=`cd ../../interface && pwd`/
18cat doxygen.log | sed -e "s|$currpath||g" -e "s|$interfacepath||g" >temp
d513b59d 19mv temp doxygen.log