4 # Generates the build system.
7 if [ "$1" = "cleanall" ] ; then
8 (cd gui
&& make distclean
)
9 (cd gui
&& .
/buildgen.sh clean
)
10 (cd opensync-plugin
&& make distclean
)
11 (cd opensync-plugin
&& .
/buildgen.sh clean
)
14 elif [ "$1" = "clean" ] ; then
16 rm -f Makefile.
in aclocal.
m4 config.guess config.h.
in config.sub \
17 configure depcomp install-sh ltmain.sh missing \
18 src
/Makefile.
in tools
/Makefile.
in examples
/Makefile.
in \
20 # clean up Debian build trails
22 rm -f build-arch-stamp build-indep-stamp configure-stamp \
23 debian
/barry.substvars debian
/files \
25 # clean up ctags trails
26 rm -f src
/tags tools
/tags examples
/tags \
27 gui
/src
/tags opensync-plugin
/src
/tags
28 elif [ "$1" = "ctags" ] ; then
29 echo "Building ctags..."
31 (cd tools
&& ctags
-R)
32 (cd examples
&& ctags
-R)
33 (cd gui
/src
&& ctags
-R)
34 (cd opensync-plugin
/src
&& ctags
-R)
35 # and one with everything
36 ctags
-R -f ~
/tags-barry
--tag-relative=yes
37 # add opensync library as well (yes, I know this only works for my
39 #OS_DIR=~/software/opensync/svn
40 OS_DIR
=~
/software
/opensync
/0.22
41 if [ -d $OS_DIR ] ; then
42 echo "Detected opensync source tree, building ctags on it..."
43 (cd $OS_DIR && ctags
-R -a -f ~
/tags-barry
--tag-relative=yes)