Files
oceanbase/src/libtable/generate_doc.sh
wangzelin.wzl 93a1074b0c patch 4.0
2022-10-24 17:57:12 +08:00

14 lines
276 B
Bash
Executable File

#!/bin/bash
case x$1 in
xheader)
/usr/local/bin/doxygen -w html new_header.html new_footer.html new_stylesheet.css Doxyfile
;;
xinstall)
rm -rf ~/public_html/libobtable ; mv -n html/ ~/public_html/libobtable
;;
*)
/usr/local/bin/doxygen Doxyfile
;;
esac