]> git.saurik.com Git - wxWidgets.git/blame - docs/mac/makewxmac
use univ/setup.h when building wxUniv
[wxWidgets.git] / docs / mac / makewxmac
CommitLineData
64b73f1a
JS
1#!/bin/sh
2# makewxmac
3# Configures and makes wxMac for MacOS X from either the root wxWindows
4# directory or a build directory underneath it.
5
6CONFIG=./configure
7
8if [ ! -f ./configure ]; then
9 CONFIG=../configure
10fi
11
12CONFIG="$CONFIG --disable-shared --enable-debug --enable-debug_cntxt --enable-debug_gdb --with-threads --without-sockets --without-odbc --enable-mem_tracing"
13
14echo Invoking $CONFIG
15
16rm -f *.cache
17$CONFIG
18
19make
20