Linux/Ubuntu2011. 9. 30. 15:26

1. Download graphviz dot tool from below site
http://www.graphviz.org/pub/graphviz/ARCHIVE/graphviz-2.28.0.tar.gz

Make and Install
#tar xzvf graphviz-2.28.0.tar.gz
#./configure
#make && make install 

2. Download doxygen
http://www.stack.nl/~dimitri/doxygen/download.html#latestsrc

Make and Install with configureation

#tar xzvf doxygen-1.7.5.1.src.tar.gz
#./configure
#./configure --with-doxywizard

doxywizard : Build the GUI frontend for doxygen. (QT 가 설치 되어 있어야 함. apt-get install libqt4_dev)

설정의 편의를 위해서 doxywizard 사용 권장.

text로 설정을 변경하고 싶을 경우

#doxygen -g <filename>
#vi <filename>
#doxygen <filename>



doxygen wizard 설정은 아래 블로그 참고.(window용 설정 임..)
http://blog.naver.com/khbrst?Redirect=Log&logNo=50112236741
Posted by ekwang