2 #This script creates the files necessary for developement: vim tags files, doxygen documentation, ...
5 #ROOT_DIR=${HOME}/workspace/vv
7 [ "$1" = "--full" ] && doxygen clitk.doxygen&
9 for i in $(find $(pwd) -type d | grep -v "^\.$")
11 cd $i && [ -n "$(find . -maxdepth 1 -name '*.c??')" ] &&
14 ln -s ${ROOT_DIR}/.vimrc .
15 ctags -R --languages=c,c++ --exclude=build --langmap=c++:.c++.cc.cp.cpp.cxx.h.h++.hh.hp.hpp.hxx.C.H.txx --exclude=doc --exclude=tests_jef ${ROOT_DIR} &