openfoam/doc/doxygen/Allwmake
Mark Olesen 0b7dc317fa ENH: begin reworking doxygen to use xhtml/css and new OpenCFD look
- drop old table-based formatting in favour of div.
- use single css with @import to minimize the impact of style changes
  on the html documents themselves.
- separate css/ directory
- locate css graphic elements inside the css/ directory for easier
  relative addressing.
2010-04-16 08:57:04 +02:00

23 lines
478 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
rm -rf latex man
# remove html directory in background
mv html html-stagedRemove$$ 2> /dev/null
rm -rf html-stagedRemove$$ >/dev/null 2>&1 &
# ensure that created files are readable by everyone
umask 22
doxygen
# fix permissions (NB: '+X' and not '+x'!)
chmod -R a+rX html latex man 2>/dev/null
echo
echo "Done doxygen"
echo
# ----------------------------------------------------------------- end-of-file