mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-29 23:25:48 +00:00
12 lines
323 B
Bash
Executable File
12 lines
323 B
Bash
Executable File
#!/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
|