Added scripts

This commit is contained in:
arcan1s
2013-08-30 15:17:37 +04:00
parent 4a86149349
commit 176918b005
9 changed files with 60 additions and 1 deletions

11
mathmech/update_docs.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
COMPONENTS=( mm_agl mm_envir mm_radf mm_statgen mm_trj mm_trj2pdb )
for COMPONENT in ${COMPONENTS[*]}; do
cd $COMPONENT
doxygen $COMPONENT.doxygen
cp logo.png docs/latex
cd docs/latex && make && cd ../../../
mv $COMPONENT/docs/latex/refman.pdf $COMPONENT/$COMPONENT.pdf
rm -rf $COMPONENT/docs
done