]> git.saurik.com Git - wxWidgets.git/blame - docs/gtk/makewxgtk
Reduced Number Of Capitals And Other Fixes
[wxWidgets.git] / docs / gtk / makewxgtk
CommitLineData
64b73f1a 1#!/bin/sh
8870c26e 2# makewxgtk
befe9ee1
JS
3# Configures and makes wxGTK from either the root wxWindows directory
4# or a build directory underneath it.
5
6CONFIG=./configure
7
8if [ ! -f ./configure ]; then
9 CONFIG=../configure
10fi
11
12CONFIG="$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"
13
14echo Invoking $CONFIG
15
a925b006 16rm -f *.cache
befe9ee1
JS
17$CONFIG
18
8870c26e 19make
befe9ee1 20