forked from Mirrors/freeswitch
fc40475037
Move all the GNU build files to the root directory so that we look like a normal *NIX-centric project. Thanks to Viktor Krikrun for an initial patch here. For this commit, I ended up redoing the move from scratch to separate out this move from other changes.
10 lines
245 B
Bash
Executable File
10 lines
245 B
Bash
Executable File
cd ../../doc
|
|
rm -f docs.tar.gz
|
|
rm -rf libzrtp-doc
|
|
echo "=================> start doxygen."
|
|
doxygen > /dev/null 2>&1
|
|
mkdir libzrtp-doc
|
|
cp -Rf ./out/html/* ./libzrtp-doc
|
|
tar -zcvf ./libzrtp-doc.tar.gz ./libzrtp-doc >> /dev/null
|
|
rm -rf libzrtp-doc
|