Revision 692,
604 bytes
checked in by mattausch, 19 years ago
(diff) |
adding ogre 1.2 and dependencies
|
Rev | Line | |
---|
[692] | 1 | # ---------------------------------------------------------------------------- |
---|
| 2 | # OGRE Documentation Generation Script |
---|
| 3 | # |
---|
| 4 | # This script generates the manuals and APIs from source files in this folder |
---|
| 5 | # To run this script, you require: |
---|
| 6 | # 1. Doxygen |
---|
| 7 | # 2. texi2html |
---|
| 8 | # ---------------------------------------------------------------------------- |
---|
| 9 | |
---|
| 10 | # Generate API docs using doxygen |
---|
| 11 | doxygen html.cfg |
---|
| 12 | |
---|
| 13 | # Generate manuals from texi |
---|
| 14 | for f in *.texi; |
---|
| 15 | do |
---|
| 16 | texi2html -init_file ogretexi2html.init -subdir=../`basename $f .texi` -split section $f; |
---|
| 17 | done |
---|
| 18 | # copy stylesheet to core docs folder |
---|
| 19 | cp style.css ../ |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | |
---|
| 23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.