source: OGRE/trunk/ogrenew/Docs/src/makedocs.sh @ 657

Revision 657, 604 bytes checked in by mattausch, 18 years ago (diff)

added ogre dependencies and patched ogre sources

Line 
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
11doxygen html.cfg
12
13# Generate manuals from texi
14for f in *.texi;
15do
16        texi2html -init_file ogretexi2html.init -subdir=../`basename $f .texi` -split section $f;
17done
18# copy stylesheet to core docs folder
19cp style.css ../
20
21
22       
23       
Note: See TracBrowser for help on using the repository browser.