Merge "Automatically update doxygen configuration to local version." into devel/master
[platform/core/uifw/dali-toolkit.git] / build / tizen / docs / Makefile.am
1 all-local:
2         @rm -f doxygen-errors.txt
3         @-doxygen -u dali.doxy
4         @-doxygen dali.doxy &> doxygen-errors.txt || rm doxygen-errors.txt
5         @touch doxygen-errors.txt
6         @cat doxygen-errors.txt
7         @if [ -s doxygen-errors.txt ]; then exit 1 ; fi
8         @rm doxygen-errors.txt
9 # Build JavaScript API documentation using yuidoc ( Yahoo JavaScript Documentation Tool )
10 # We first test yuidoc exists, then change in to the dali-script-v8 docs directory and run yuidoc
11         @if [ ! `which yuidoc` = "" ]; then cd ../../../plugins/dali-script-v8/docs && yuidoc --config yuidoc.json -e ".cpp,.js,.md"  -o generated .. ../../../docs/content/shared-javascript-and-cpp-documentation/ ; fi