-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocumentation
More file actions
executable file
·20 lines (16 loc) · 845 Bytes
/
Copy pathdocumentation
File metadata and controls
executable file
·20 lines (16 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
# change this regarding to your doxygen installation (here is Mac OSX)
DOXYGEN_BIN="/Applications/Doxygen.app/Contents/Resources/doxygen"
DOXY_STYLE_PLUS_PATH="doc/doxygen-style"
SOURCE_ROOT="."
for doxy_config_file in `find . -name *.doxyfile`
do
# generate doxygen HTML output for any config file with doxyfile extention in subdirectories
$DOXYGEN_BIN $doxy_config_file
done
# cp "$DOXY_STYLE_PLUS_PATH/doxygen.css" "$SOURCE_ROOT/doc/html/doxygen.css"
# cp "$DOXY_STYLE_PLUS_PATH/background_navigation.png" "$SOURCE_ROOT/doc/html/background_navigation.png"
# cp "$DOXY_STYLE_PLUS_PATH/img_downArrow.png" "$SOURCE_ROOT/doc/html/img_downArrow.png"
# cp "$DOXY_STYLE_PLUS_PATH/tabs.css" "$SOURCE_ROOT/doc/html/tabs.css"
# now generate p7 specification HTML output
`perl p7/p7spectohtml.pl p7/examples/wired.xml > p7/wired.html`