]> git.saurik.com Git - wxWidgets.git/blame_incremental - distrib/scripts/unix/dobuilds
Removing all occurrences of the distrib scripts in the manifests.
[wxWidgets.git] / distrib / scripts / unix / dobuilds
... / ...
CommitLineData
1#!/bin/sh
2
3HOMEDIR="$PWD"
4
5BUILDDIR_ROOT="$PWD/builds"
6
7BUILDDIR_CARBON="$BUILDDIR_ROOT/carbon"
8BUILDDIR_COCOA="$BUILDDIR_ROOT/cocoa"
9
10mkdir -p $BUILDDIR_CARBON
11mkdir -p $BUILDDIR_COCOA
12
13cd $BUILDDIR_CARBON
14BUILDDIR=$BUILDDIR_CARBON
15
16export WXROOT="$HOMEDIR/../../.."
17export INSTALLDIR="$BUILDDIR/install-ansi"
18$HOMEDIR/macbuild
19
20export INSTALLDIR="$BUILDDIR/install-unicode"
21$HOMEDIR/macbuild unicode
22
23export INSTALLDIR="$BUILDDIR/install-static-ansi"
24$HOMEDIR/macbuild static
25
26export INSTALLDIR="$BUILDDIR/install-static-unicode"
27$HOMEDIR/macbuild static unicode
28
29cd $BUILDDIR_COCOA
30BUILDDIR=$BUILDDIR_COCOA
31
32export INSTALLDIR="$BUILDDIR/install-ansi"
33$HOMEDIR/macbuild cocoa
34
35export INSTALLDIR="$BUILDDIR/install-unicode"
36$HOMEDIR/macbuild cocoa unicode
37
38export INSTALLDIR="$BUILDDIR/install-static-ansi"
39$HOMEDIR/macbuild cocoa static
40
41export INSTALLDIR="$BUILDDIR/install-static-unicode"
42$HOMEDIR/macbuild cocoa static unicode
43
44cd $HOMEDIR