From 03c105ffe5c54b232c28fa0b352eabccc3192ffb Mon Sep 17 00:00:00 2001 From: cdfrey Date: Thu, 24 May 2007 19:09:15 +0000 Subject: [PATCH] - added ctags generation to buildgen.sh --- ChangeLog | 2 ++ buildgen.sh | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index b4898a99..41e7cef6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ Release: version 0.8 - 2007/05/?? ------------------------------------------------------------------------------ +2007/05/24 + - added ctags generation to buildgen.sh 2007/05/17 - fixed bug in Debian packaging that put util commands in /bin and /sbin instead of /usr/bin and /usr/sbin diff --git a/buildgen.sh b/buildgen.sh index a4f67f61..746c827d 100755 --- a/buildgen.sh +++ b/buildgen.sh @@ -22,6 +22,17 @@ elif [ "$1" = "clean" ] ; then rm -f build-arch-stamp build-indep-stamp configure-stamp \ debian/barry.substvars debian/files \ tools/bcharge + # clean up ctags trails + rm -f src/tags tools/tags examples/tags \ + gui/src/tags opensync-plugin/src/tags +elif [ "$1" = "ctags" ] ; then + (cd src && ctags -R) + (cd tools && ctags -R) + (cd examples && ctags -R) + (cd gui/src && ctags -R) + (cd opensync-plugin/src && ctags -R) + # and one with everything + ctags -R -f ~/tags-barry --tag-relative=yes else autoreconf -if #autoreconf -ifv -- 2.11.4.GIT