]> git.saurik.com Git - wxWidgets.git/blame - docs/gtk/makewxgtk
Updated makewx... scripts
[wxWidgets.git] / docs / gtk / makewxgtk
CommitLineData
8870c26e 1# makewxgtk
befe9ee1
JS
2# Configures and makes wxGTK from either the root wxWindows directory
3# or a build directory underneath it.
4
5CONFIG=./configure
6
7if [ ! -f ./configure ]; then
8 CONFIG=../configure
9fi
10
11CONFIG="$CONFIG --disable-shared --enable-gui --with-gtk --enable-debug_flag --enable-log --enable-debug_info --enable-debug --enable-threads --enable-sockets -with-odbc -with-libjpeg --enable-debug_cntxt"
12
13echo Invoking $CONFIG
14
a925b006 15rm -f *.cache
befe9ee1
JS
16$CONFIG
17
8870c26e 18make
befe9ee1 19