mirror of
https://github.com/wfjm/w11.git
synced 2026-01-19 18:07:49 +00:00
- C++ and Tcl based backend server: many support classes for interfacing to w11 system designs, and the associated Tcl bindings. - add 'asm-11', a simple, Macro-11 syntax subset combatible, assembler. - use now doxygen 1.8.3.1, generate c++,tcl, and vhdl source docs
41 lines
845 B
Bash
Executable File
41 lines
845 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: make_doxy 488 2013-02-16 18:49:47Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2013-02-05 482 1.0 Initial version
|
|
#
|
|
if [ -z "$RETROBASE" ]
|
|
then
|
|
echo "RETROBASE not defined"
|
|
exit 1
|
|
fi
|
|
#
|
|
if [ -z "$RETRODOXY" ]
|
|
then
|
|
echo "RETRODOXY defaulted to /tmp"
|
|
export RETRODOXY=/tmp
|
|
fi
|
|
#
|
|
if [ ! -d "$RETRODOXY" ]
|
|
then
|
|
echo "$RETRODOXY doesn't exist"
|
|
exit 1
|
|
fi
|
|
#
|
|
if [ ! -d "$RETRODOXY/w11" ]
|
|
then
|
|
mkdir $RETRODOXY/w11
|
|
fi
|
|
#
|
|
doxygen w11_cpp.Doxyfile 2>&1 | tee w11_cpp.dox_log
|
|
doxygen w11_tcl.Doxyfile 2>&1 | tee w11_tcl.dox_log
|
|
doxygen w11_vhd_all.Doxyfile 2>&1 | tee w11_vhd_all.dox_log
|
|
#
|
|
#
|
|
echo ""
|
|
echo "to view use"
|
|
echo " firefox $RETRODOXY/w11/cpp/html/index.html &"
|
|
echo " firefox $RETRODOXY/w11/tcl/html/index.html &"
|
|
echo " firefox $RETRODOXY/w11/vhd/html/index.html &"
|