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