]> git.saurik.com Git - wxWidgets.git/blob - distrib/scripts/unix/dobuilds
reorganize scroll sample to make it possible to understand what it does both when...
[wxWidgets.git] / distrib / scripts / unix / dobuilds
1 #!/bin/sh
2
3 HOMEDIR="$PWD"
4
5 BUILDDIR_ROOT="$PWD/builds"
6
7 do_builds {
8 PORT=$1
9 BUILDDIR=$BUILDDIR_ROOT/$PORT
10 mkdir -p $BUILDDIR
11 cd $BUILDDIR
12
13 export WXROOT="$HOMEDIR/../../.."
14 export INSTALLDIR="$BUILDDIR/install-ansi"
15 $HOMEDIR/unixbuild $PORT
16
17 export INSTALLDIR="$BUILDDIR/install-unicode"
18 $HOMEDIR/unixbuild $PORT unicode
19
20 export INSTALLDIR="$BUILDDIR/install-static-ansi"
21 $HOMEDIR/unixbuild $PORT static
22
23 export INSTALLDIR="$BUILDDIR/install-static-unicode"
24 $HOMEDIR/unixbuild $PORT static unicode
25 }
26
27 do_builds "gtk2"