Files
metasploit-gs/dev/gendoc.sh
T

12 lines
431 B
Bash
Raw Normal View History

2005-11-02 17:32:09 +00:00
OPTS="-x .ut.rb -x .ts.rb -q"
BASE="documentation/api"
2005-11-02 17:32:09 +00:00
echo "Generating rex..."
rdoc $OPTS -t "Rex Documentation" -o $BASE/rex lib/rex
2005-11-02 17:32:09 +00:00
echo "Generating msfcore"
rdoc $OPTS -t "Framework Core Documentation" -o $BASE/msfcore lib/msf/core
2005-11-02 17:32:09 +00:00
echo "Generating msfbase"
rdoc $OPTS -t "Framework Base Documentation" -o $BASE/msfbase lib/msf/base
2005-11-02 17:32:09 +00:00
echo "Generating msfui"
rdoc $OPTS -t "Framework UI Documentation" -o $BASE/msfui lib/msf/ui