Added opensync 0.4x to "config all" script
[barry.git] / build-all.sh
blob1e4ed6378fc7b58788c75308cc61025727d96ab0
1 #!/bin/sh
3 # meant to be run from inside a freshly checked out cvs workspace
4 # builds: library, gui, then plugin
6 set -e
8 SCRIPTDIR="$(dirname "$0")"
10 ./buildgen.sh
11 "$SCRIPTDIR"/configure-barry.sh
12 make
13 make install
15 cd gui
16 ../"$SCRIPTDIR"/configure-barrygui.sh
17 make
18 make install
20 cd ../opensync-plugin
21 ../"$SCRIPTDIR"/configure-barryopensync.sh
22 make
23 make install