# Type of compiled binaries [debug,release]
!ifndef BUILD
-BUILD = release
+BUILD = debug
!endif
# C compiler
# Standard preprocessor flags (common for CC and CXX)
!ifndef CPPFLAGS
-CPPFLAGS = -a8 -g0 -I$(BCCDIR)\include
+CPPFLAGS = -a8 -g0
!endif
# C++ compiler
# Standard linker flags
!ifndef LDFLAGS
-LDFLAGS = -L$(BCCDIR)\lib
+LDFLAGS =
!endif
# Multiple libraries or single huge monolithic one? [0,1]
# What type of library to build? [0,1]
!ifndef SHARED
-SHARED = 1
+SHARED = 0
!endif
# Compile Unicode build of wxWindows? [0,1]
UNICODE = 0
!endif
+# Enable exceptions in compiled code. [0,1]
+!ifndef USE_EXCEPTIONS
+USE_EXCEPTIONS = 1
+!endif
+
# Build GUI libraries? [0,1]
!ifndef USE_GUI
USE_GUI = 1