]> git.datanom.net - webcal.git/blame - makedoc
Initial upload
[webcal.git] / makedoc
CommitLineData
a5eae6b7
MR
1#!/bin/sh
2
3CP="cp --parents"
4if [ -e doc_source ]; then
5 rm -rf doc_source
6fi
7
8if [ -e doc ]; then
9 rm -rf doc
10fi
11
12mkdir doc_source
13mkdir doc
14
15$CP caldav/*.php doc_source
16$CP events/*.php doc_source
17$CP include/*.php doc_source
18$CP install/*.php doc_source
19$CP navigate/*.php doc_source
20$CP templates/*.php doc_source
21$CP utils/*.php doc_source
22$CP *.php doc_source
23
24doxygen Doxyfile
25
26cd doc/latex
27make pdf
28cd ../../
29
30exit 0
This page took 0.030564 seconds and 5 git commands to generate.