Merge branch 'remove-bcc-support'
Remove support for Borland C++ compiler, it wasn't tested since a long time and probably didn't work anyhow and there was no interest in keeping support for it since many years. See https://github.com/wxWidgets/wxWidgets/pull/2087
This commit is contained in:
		@@ -6,7 +6,7 @@
 | 
			
		||||
    The formats below are disabled because wxWidgets doesn't support these
 | 
			
		||||
    compilers any longer (although bakefile still does).
 | 
			
		||||
    -->
 | 
			
		||||
    <disable-formats>dmars,dmars_smake,msvc6prj,watcom</disable-formats>
 | 
			
		||||
    <disable-formats>borland,dmars,dmars_smake,msvc6prj,watcom</disable-formats>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    <!-- These wildcards match all .bkl files in wxWidgets tree: -->
 | 
			
		||||
 
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all "standard" wxWindows headers)
 | 
			
		||||
 
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all "standard" wxWidgets headers)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,210 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This configuration file was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Beware that all changes made to this file will be overwritten next
 | 
			
		||||
#     time you run Bakefile!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# These are configurable options:
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
# C compiler 
 | 
			
		||||
!ifndef CC
 | 
			
		||||
CC = bcc32
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# C++ compiler 
 | 
			
		||||
!ifndef CXX
 | 
			
		||||
CXX = bcc32
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Standard flags for CC 
 | 
			
		||||
!ifndef CFLAGS
 | 
			
		||||
CFLAGS = 
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Standard flags for C++ 
 | 
			
		||||
!ifndef CXXFLAGS
 | 
			
		||||
CXXFLAGS = 
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Standard preprocessor flags (common for CC and CXX) 
 | 
			
		||||
!ifndef CPPFLAGS
 | 
			
		||||
CPPFLAGS = -a8 -g0
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Standard linker flags 
 | 
			
		||||
!ifndef LDFLAGS
 | 
			
		||||
LDFLAGS = 
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# The C preprocessor 
 | 
			
		||||
!ifndef CPP
 | 
			
		||||
CPP = cpp32 -Sr -oCON
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# What type of library to build? [0,1]
 | 
			
		||||
!ifndef SHARED
 | 
			
		||||
SHARED = 0
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# GTK+ toolkit version [,2]
 | 
			
		||||
!ifndef TOOLKIT_VERSION
 | 
			
		||||
TOOLKIT_VERSION = 
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxUniversal instead of native port? [0,1]
 | 
			
		||||
!ifndef WXUNIV
 | 
			
		||||
WXUNIV = 0
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Compile Unicode build of wxWidgets? [0,1]
 | 
			
		||||
!ifndef UNICODE
 | 
			
		||||
UNICODE = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Type of compiled binaries [debug,release]
 | 
			
		||||
!ifndef BUILD
 | 
			
		||||
BUILD = debug
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Should debugging info be included in the executables? The default value
 | 
			
		||||
# "default" means that debug info will be included if BUILD=debug
 | 
			
		||||
# and not included if BUILD=release. [0,1,default]
 | 
			
		||||
!ifndef DEBUG_INFO
 | 
			
		||||
DEBUG_INFO = default
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Value of wxDEBUG_LEVEL. The default value is the same as 1 and means that all
 | 
			
		||||
# but expensive assert checks are enabled, use 0 to completely remove debugging
 | 
			
		||||
# code. [0,1,default]
 | 
			
		||||
!ifndef DEBUG_FLAG
 | 
			
		||||
DEBUG_FLAG = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Multiple libraries or single huge monolithic one? [0,1]
 | 
			
		||||
!ifndef MONOLITHIC
 | 
			
		||||
MONOLITHIC = 0
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build GUI libraries? [0,1]
 | 
			
		||||
!ifndef USE_GUI
 | 
			
		||||
USE_GUI = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxHTML library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_HTML
 | 
			
		||||
USE_HTML = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxWebView library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_WEBVIEW
 | 
			
		||||
USE_WEBVIEW = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build multimedia library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_MEDIA
 | 
			
		||||
USE_MEDIA = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxXRC library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_XRC
 | 
			
		||||
USE_XRC = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxAUI library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_AUI
 | 
			
		||||
USE_AUI = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxRibbon library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_RIBBON
 | 
			
		||||
USE_RIBBON = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxPropertyGrid library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_PROPGRID
 | 
			
		||||
USE_PROPGRID = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxRichTextCtrl library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_RICHTEXT
 | 
			
		||||
USE_RICHTEXT = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build wxStyledTextCtrl library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_STC
 | 
			
		||||
USE_STC = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build OpenGL canvas library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_OPENGL
 | 
			
		||||
USE_OPENGL = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Build quality assurance classes library (USE_GUI must be 1)? [0,1]
 | 
			
		||||
!ifndef USE_QA
 | 
			
		||||
USE_QA = 0
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Enable exceptions in compiled code. [0,1]
 | 
			
		||||
!ifndef USE_EXCEPTIONS
 | 
			
		||||
USE_EXCEPTIONS = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Enable run-time type information (RTTI) in compiled code. [0,1]
 | 
			
		||||
!ifndef USE_RTTI
 | 
			
		||||
USE_RTTI = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Set DPI Awareness (win32) to none, system or per-monitor. [0,1,2]
 | 
			
		||||
!ifndef USE_DPI_AWARE_MANIFEST
 | 
			
		||||
USE_DPI_AWARE_MANIFEST = 2
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Enable threading in compiled code. [0,1]
 | 
			
		||||
!ifndef USE_THREADS
 | 
			
		||||
USE_THREADS = 1
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Enable wxCairoContext for platforms other than Linux/GTK. [0,1]
 | 
			
		||||
!ifndef USE_CAIRO
 | 
			
		||||
USE_CAIRO = 0
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Is this official build by wxWidgets developers? [0,1]
 | 
			
		||||
!ifndef OFFICIAL_BUILD
 | 
			
		||||
OFFICIAL_BUILD = 0
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Use this to name your customized DLLs differently 
 | 
			
		||||
!ifndef VENDOR
 | 
			
		||||
VENDOR = custom
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
#  
 | 
			
		||||
!ifndef WX_FLAVOUR
 | 
			
		||||
WX_FLAVOUR = 
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
#  
 | 
			
		||||
!ifndef WX_LIB_FLAVOUR
 | 
			
		||||
WX_LIB_FLAVOUR = 
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Name of your custom configuration. This affects directory
 | 
			
		||||
# where object files are stored as well as the location of
 | 
			
		||||
# compiled .lib files and setup.h under the lib/ toplevel directory. 
 | 
			
		||||
!ifndef CFG
 | 
			
		||||
CFG = 
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
# Version of C runtime library to use. You can change this to
 | 
			
		||||
# static if SHARED=0, but it is highly recommended to not do
 | 
			
		||||
# it if SHARED=1 unless you know what you are doing. [dynamic,static]
 | 
			
		||||
!ifndef RUNTIME_LIBS
 | 
			
		||||
RUNTIME_LIBS = dynamic
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										16857
									
								
								build/msw/makefile.bcc
									
									
									
									
									
								
							
							
						
						
									
										16857
									
								
								build/msw/makefile.bcc
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -10,9 +10,6 @@
 | 
			
		||||
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#   pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef  WX_PRECOMP
 | 
			
		||||
#   include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -15,9 +15,6 @@
 | 
			
		||||
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#   pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef  WX_PRECOMP
 | 
			
		||||
#   include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -10,9 +10,6 @@
 | 
			
		||||
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
  #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef  WX_PRECOMP
 | 
			
		||||
#   include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,247 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
BOMBS_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
BOMBS_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\bombs_bombs.obj \
 | 
			
		||||
	$(OBJS)\bombs_bombs1.obj \
 | 
			
		||||
	$(OBJS)\bombs_game.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\bombs.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\bombs.exe del $(OBJS)\bombs.exe
 | 
			
		||||
	-if exist $(OBJS)\bombs.tds del $(OBJS)\bombs.tds
 | 
			
		||||
	-if exist $(OBJS)\bombs.ilc del $(OBJS)\bombs.ilc
 | 
			
		||||
	-if exist $(OBJS)\bombs.ild del $(OBJS)\bombs.ild
 | 
			
		||||
	-if exist $(OBJS)\bombs.ilf del $(OBJS)\bombs.ilf
 | 
			
		||||
	-if exist $(OBJS)\bombs.ils del $(OBJS)\bombs.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\bombs.exe: $(BOMBS_OBJECTS)  $(OBJS)\bombs_bombs.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(BOMBS_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\bombs_bombs.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\bombs_bombs.obj: .\bombs.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(BOMBS_CXXFLAGS) .\bombs.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\bombs_bombs1.obj: .\bombs1.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(BOMBS_CXXFLAGS) .\bombs1.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\bombs_game.obj: .\game.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(BOMBS_CXXFLAGS) .\game.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\bombs_bombs.res: .\bombs.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\bombs.rc
 | 
			
		||||
 | 
			
		||||
@@ -13,10 +13,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -21,10 +21,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -13,10 +13,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -13,10 +13,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -1,279 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
FORTY_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
FORTY_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\forty_forty.obj \
 | 
			
		||||
	$(OBJS)\forty_canvas.obj \
 | 
			
		||||
	$(OBJS)\forty_card.obj \
 | 
			
		||||
	$(OBJS)\forty_game.obj \
 | 
			
		||||
	$(OBJS)\forty_pile.obj \
 | 
			
		||||
	$(OBJS)\forty_playerdg.obj \
 | 
			
		||||
	$(OBJS)\forty_scoredg.obj \
 | 
			
		||||
	$(OBJS)\forty_scorefil.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_HTML_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_XML_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\forty.exe data
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\forty.exe del $(OBJS)\forty.exe
 | 
			
		||||
	-if exist $(OBJS)\forty.tds del $(OBJS)\forty.tds
 | 
			
		||||
	-if exist $(OBJS)\forty.ilc del $(OBJS)\forty.ilc
 | 
			
		||||
	-if exist $(OBJS)\forty.ild del $(OBJS)\forty.ild
 | 
			
		||||
	-if exist $(OBJS)\forty.ilf del $(OBJS)\forty.ilf
 | 
			
		||||
	-if exist $(OBJS)\forty.ils del $(OBJS)\forty.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty.exe: $(FORTY_OBJECTS)  $(OBJS)\forty_forty.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(FORTY_OBJECTS),$@,, $(__WXLIB_HTML_p)  $(__WXLIB_XML_p)  $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\forty_forty.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
data: 
 | 
			
		||||
	if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
	for %f in (about.htm) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_forty.obj: .\forty.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FORTY_CXXFLAGS) .\forty.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_canvas.obj: .\canvas.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FORTY_CXXFLAGS) .\canvas.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_card.obj: .\card.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FORTY_CXXFLAGS) .\card.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_game.obj: .\game.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FORTY_CXXFLAGS) .\game.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_pile.obj: .\pile.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FORTY_CXXFLAGS) .\pile.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_playerdg.obj: .\playerdg.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FORTY_CXXFLAGS) .\playerdg.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_scoredg.obj: .\scoredg.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FORTY_CXXFLAGS) .\scoredg.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_scorefil.obj: .\scorefil.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FORTY_CXXFLAGS) .\scorefil.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\forty_forty.res: .\forty.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\forty.rc
 | 
			
		||||
 | 
			
		||||
@@ -17,10 +17,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -11,10 +11,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -11,10 +11,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -11,10 +11,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -28,9 +28,6 @@ hack doesn't fix.
 | 
			
		||||
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef  WX_PRECOMP
 | 
			
		||||
  #include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
FRACTAL_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
FRACTAL_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\fractal_fractal.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\fractal.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\fractal.exe del $(OBJS)\fractal.exe
 | 
			
		||||
	-if exist $(OBJS)\fractal.tds del $(OBJS)\fractal.tds
 | 
			
		||||
	-if exist $(OBJS)\fractal.ilc del $(OBJS)\fractal.ilc
 | 
			
		||||
	-if exist $(OBJS)\fractal.ild del $(OBJS)\fractal.ild
 | 
			
		||||
	-if exist $(OBJS)\fractal.ilf del $(OBJS)\fractal.ilf
 | 
			
		||||
	-if exist $(OBJS)\fractal.ils del $(OBJS)\fractal.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\fractal.exe: $(FRACTAL_OBJECTS)  $(OBJS)\fractal_fractal.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(FRACTAL_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\fractal_fractal.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\fractal_fractal.obj: .\fractal.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(FRACTAL_CXXFLAGS) .\fractal.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\fractal_fractal.res: .\fractal.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\fractal.rc
 | 
			
		||||
 | 
			
		||||
@@ -15,10 +15,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -15,10 +15,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -15,9 +15,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
    #include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,255 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
LIFE_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
LIFE_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\life_life.obj \
 | 
			
		||||
	$(OBJS)\life_dialogs.obj \
 | 
			
		||||
	$(OBJS)\life_game.obj \
 | 
			
		||||
	$(OBJS)\life_reader.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\life.exe data
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\life.exe del $(OBJS)\life.exe
 | 
			
		||||
	-if exist $(OBJS)\life.tds del $(OBJS)\life.tds
 | 
			
		||||
	-if exist $(OBJS)\life.ilc del $(OBJS)\life.ilc
 | 
			
		||||
	-if exist $(OBJS)\life.ild del $(OBJS)\life.ild
 | 
			
		||||
	-if exist $(OBJS)\life.ilf del $(OBJS)\life.ilf
 | 
			
		||||
	-if exist $(OBJS)\life.ils del $(OBJS)\life.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\life.exe: $(LIFE_OBJECTS)  $(OBJS)\life_life.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(LIFE_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\life_life.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
data: 
 | 
			
		||||
	if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
	for %f in (breeder.lif) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
 | 
			
		||||
 | 
			
		||||
$(OBJS)\life_life.obj: .\life.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(LIFE_CXXFLAGS) .\life.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\life_dialogs.obj: .\dialogs.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(LIFE_CXXFLAGS) .\dialogs.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\life_game.obj: .\game.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(LIFE_CXXFLAGS) .\game.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\life_reader.obj: .\reader.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(LIFE_CXXFLAGS) .\reader.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\life_life.res: .\life.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\life.rc
 | 
			
		||||
 | 
			
		||||
@@ -15,9 +15,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
    #include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,104 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
 | 
			
		||||
	-DCXXFLAGS="$(CXXFLAGS)" -DCPPFLAGS="$(CPPFLAGS)" -DLDFLAGS="$(LDFLAGS)" \
 | 
			
		||||
	-DCPP="$(CPP)" -DSHARED="$(SHARED)" -DTOOLKIT_VERSION="$(TOOLKIT_VERSION)" \
 | 
			
		||||
	-DWXUNIV="$(WXUNIV)" -DUNICODE="$(UNICODE)" -DBUILD="$(BUILD)" \
 | 
			
		||||
	-DDEBUG_INFO="$(DEBUG_INFO)" -DDEBUG_FLAG="$(DEBUG_FLAG)" \
 | 
			
		||||
	-DMONOLITHIC="$(MONOLITHIC)" -DUSE_GUI="$(USE_GUI)" \
 | 
			
		||||
	-DUSE_HTML="$(USE_HTML)" -DUSE_WEBVIEW="$(USE_WEBVIEW)" \
 | 
			
		||||
	-DUSE_MEDIA="$(USE_MEDIA)" -DUSE_XRC="$(USE_XRC)" -DUSE_AUI="$(USE_AUI)" \
 | 
			
		||||
	-DUSE_RIBBON="$(USE_RIBBON)" -DUSE_PROPGRID="$(USE_PROPGRID)" \
 | 
			
		||||
	-DUSE_RICHTEXT="$(USE_RICHTEXT)" -DUSE_STC="$(USE_STC)" \
 | 
			
		||||
	-DUSE_OPENGL="$(USE_OPENGL)" -DUSE_QA="$(USE_QA)" \
 | 
			
		||||
	-DUSE_EXCEPTIONS="$(USE_EXCEPTIONS)" -DUSE_RTTI="$(USE_RTTI)" \
 | 
			
		||||
	-DUSE_DPI_AWARE_MANIFEST="$(USE_DPI_AWARE_MANIFEST)" \
 | 
			
		||||
	-DUSE_THREADS="$(USE_THREADS)" -DUSE_CAIRO="$(USE_CAIRO)" \
 | 
			
		||||
	-DOFFICIAL_BUILD="$(OFFICIAL_BUILD)" -DVENDOR="$(VENDOR)" \
 | 
			
		||||
	-DWX_FLAVOUR="$(WX_FLAVOUR)" -DWX_LIB_FLAVOUR="$(WX_LIB_FLAVOUR)" \
 | 
			
		||||
	-DCFG="$(CFG)" -DRUNTIME_LIBS="$(RUNTIME_LIBS)"
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: bombs forty fractal life poem
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist .\*.obj del .\*.obj
 | 
			
		||||
	-if exist .\*.res del .\*.res
 | 
			
		||||
	-if exist .\*.csm del .\*.csm
 | 
			
		||||
	@echo cd bombs >bombs.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>bombs.bat
 | 
			
		||||
	call bombs.bat
 | 
			
		||||
	@del bombs.bat
 | 
			
		||||
	@echo cd forty >forty.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>forty.bat
 | 
			
		||||
	call forty.bat
 | 
			
		||||
	@del forty.bat
 | 
			
		||||
	@echo cd fractal >fractal.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>fractal.bat
 | 
			
		||||
	call fractal.bat
 | 
			
		||||
	@del fractal.bat
 | 
			
		||||
	@echo cd life >life.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>life.bat
 | 
			
		||||
	call life.bat
 | 
			
		||||
	@del life.bat
 | 
			
		||||
	@echo cd poem >poem.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>poem.bat
 | 
			
		||||
	call poem.bat
 | 
			
		||||
	@del poem.bat
 | 
			
		||||
 | 
			
		||||
bombs: 
 | 
			
		||||
	@echo cd bombs >bombs.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>bombs.bat
 | 
			
		||||
	call bombs.bat
 | 
			
		||||
	@del bombs.bat
 | 
			
		||||
 | 
			
		||||
forty: 
 | 
			
		||||
	@echo cd forty >forty.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>forty.bat
 | 
			
		||||
	call forty.bat
 | 
			
		||||
	@del forty.bat
 | 
			
		||||
 | 
			
		||||
fractal: 
 | 
			
		||||
	@echo cd fractal >fractal.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>fractal.bat
 | 
			
		||||
	call fractal.bat
 | 
			
		||||
	@del fractal.bat
 | 
			
		||||
 | 
			
		||||
life: 
 | 
			
		||||
	@echo cd life >life.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>life.bat
 | 
			
		||||
	call life.bat
 | 
			
		||||
	@del life.bat
 | 
			
		||||
 | 
			
		||||
poem: 
 | 
			
		||||
	@echo cd poem >poem.bat
 | 
			
		||||
	@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>poem.bat
 | 
			
		||||
	call poem.bat
 | 
			
		||||
	@del poem.bat
 | 
			
		||||
 | 
			
		||||
@@ -1,247 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
WXPOEM_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
WXPOEM_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\wxpoem_wxpoem.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_HTML_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\wxpoem.exe data
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\wxpoem.exe del $(OBJS)\wxpoem.exe
 | 
			
		||||
	-if exist $(OBJS)\wxpoem.tds del $(OBJS)\wxpoem.tds
 | 
			
		||||
	-if exist $(OBJS)\wxpoem.ilc del $(OBJS)\wxpoem.ilc
 | 
			
		||||
	-if exist $(OBJS)\wxpoem.ild del $(OBJS)\wxpoem.ild
 | 
			
		||||
	-if exist $(OBJS)\wxpoem.ilf del $(OBJS)\wxpoem.ilf
 | 
			
		||||
	-if exist $(OBJS)\wxpoem.ils del $(OBJS)\wxpoem.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\wxpoem.exe: $(WXPOEM_OBJECTS)  $(OBJS)\wxpoem_wxpoem.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(WXPOEM_OBJECTS),$@,, $(__WXLIB_HTML_p)  $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\wxpoem_wxpoem.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
data: 
 | 
			
		||||
	if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
	for %f in (wxpoem.txt wxpoem.dat wxpoem.idx) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
 | 
			
		||||
 | 
			
		||||
$(OBJS)\wxpoem_wxpoem.obj: .\wxpoem.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(WXPOEM_CXXFLAGS) .\wxpoem.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\wxpoem_wxpoem.res: .\wxpoem.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\wxpoem.rc
 | 
			
		||||
 | 
			
		||||
@@ -16,10 +16,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all "standard" wxWidgets headers)
 | 
			
		||||
 
 | 
			
		||||
@@ -27,7 +27,6 @@ Here is the list of files that need to be updated:
 | 
			
		||||
	include/wx/osx/config_xcode.h
 | 
			
		||||
	samples/docview/Info.plist
 | 
			
		||||
	samples/minimal/Info_cocoa.plist
 | 
			
		||||
	samples/minimal/borland_ide.cpp              [not-micro]
 | 
			
		||||
 | 
			
		||||
Do not forget to rebake everything after updating version.bkl!
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -120,7 +120,7 @@ compiler used.
 | 
			
		||||
 | 
			
		||||
@beginDefList
 | 
			
		||||
@itemdef{__BORLANDC__, Borland C++. The value of the macro corresponds
 | 
			
		||||
                        to the compiler version: 500 is 5.0.}
 | 
			
		||||
                        to the compiler version: 500 is 5.0 (not used any more).}
 | 
			
		||||
@itemdef{__DIGITALMARS__, Digital Mars (not used any more).}
 | 
			
		||||
@itemdef{__GNUG__, Gnu C++ on any platform, see also wxCHECK_GCC_VERSION}
 | 
			
		||||
@itemdef{__GNUWIN32__, Gnu-Win32 compiler, see also wxCHECK_W32API_VERSION}
 | 
			
		||||
 
 | 
			
		||||
@@ -28,10 +28,6 @@ following section before any other includes:
 | 
			
		||||
// For compilers that support precompilation, includes "wx.h".
 | 
			
		||||
#include <wx/wxprec.h>
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#   pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
    // Include your minimal set of headers here, or wx.h
 | 
			
		||||
#   include <wx/wx.h>
 | 
			
		||||
@@ -44,8 +40,8 @@ The file @c "wx/wxprec.h" includes @c "wx/wx.h". Although this incantation may
 | 
			
		||||
seem quirky, it is in fact the end result of a lot of experimentation, and
 | 
			
		||||
several Windows compilers to use precompilation which is largely automatic for
 | 
			
		||||
compilers with necessary support. Currently it is used for Visual C++
 | 
			
		||||
(including embedded Visual C++), Borland C++ and newer versions of GCC. Some
 | 
			
		||||
compilers might need extra work from the application developer to set the build
 | 
			
		||||
(including embedded Visual C++) and newer versions of GCC. Some compilers
 | 
			
		||||
might need extra work from the application developer to set the build
 | 
			
		||||
environment up as necessary for the support.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@@ -110,9 +106,8 @@ and this must not be changed.
 | 
			
		||||
On Microsoft Windows, wxWidgets has a different set of makefiles for each
 | 
			
		||||
compiler, because each compiler's @c 'make' tool is slightly different. Popular
 | 
			
		||||
Windows compilers that we cater for, and the corresponding makefile extensions,
 | 
			
		||||
include: Microsoft Visual C++ (.vc), Borland C++ (.bcc) and MinGW/Cygwin
 | 
			
		||||
(.gcc). Makefiles are provided for the wxWidgets library itself, samples,
 | 
			
		||||
demos, and utilities.
 | 
			
		||||
include: Microsoft Visual C++ (.vc) and MinGW/Cygwin (.gcc). Makefiles are
 | 
			
		||||
provided for the wxWidgets library itself, samples, demos, and utilities.
 | 
			
		||||
 | 
			
		||||
On Linux and macOS, you use the @c 'configure' command to generate the
 | 
			
		||||
necessary makefiles. You should also use this method when building with
 | 
			
		||||
@@ -259,7 +254,7 @@ its own run-time type information system, implemented using macros.
 | 
			
		||||
 | 
			
		||||
@subsection page_multiplatform_cpp_precompiledheaders Precompiled Headers
 | 
			
		||||
 | 
			
		||||
Some compilers, such as Borland C++ and Microsoft C++, support precompiled
 | 
			
		||||
Some compilers, such as Microsoft C++, support precompiled
 | 
			
		||||
headers. This can save a great deal of compiling time. The recommended approach
 | 
			
		||||
is to precompile @c "wx.h", using this precompiled header for compiling both
 | 
			
		||||
wxWidgets itself and any wxWidgets applications. For Windows compilers, two
 | 
			
		||||
 
 | 
			
		||||
@@ -94,9 +94,9 @@ primary supported compiler is GNU g++.
 | 
			
		||||
supports 32 or 64 bit Intel Macs running macOS 10.10 or later. The port can be
 | 
			
		||||
built either with g++ or clang.
 | 
			
		||||
 | 
			
		||||
Other platforms (e.g. iOS - with a minimum requirement of iOS 13), compilers (Borland C++
 | 
			
		||||
under Windows, Sun CC, HP-UX aCC, IBM xlC or SGI mipsPro under Unix) and ports (
 | 
			
		||||
wxQT, wxGTK1, wxX11, wxDFB...) are also supported but to a lesser extent.
 | 
			
		||||
Other platforms (e.g. iOS - with a minimum requirement of iOS 13), compilers
 | 
			
		||||
(Sun CC, HP-UX aCC, IBM xlC or SGI mipsPro under Unix) and ports (wxQT, wxGTK1,
 | 
			
		||||
wxX11, wxDFB...) are also supported but to a lesser extent.
 | 
			
		||||
Please see the @subpage page_port "platform details page" for more information.
 | 
			
		||||
 | 
			
		||||
There are no CPU speed requirements but the faster (and more) CPU(s) you have,
 | 
			
		||||
 
 | 
			
		||||
@@ -96,8 +96,8 @@ and candy of newer interfaces like GTK.
 | 
			
		||||
wxMSW is a port of wxWidgets for the Windows platforms (Windows XP and later
 | 
			
		||||
are supported). wxMSW provides native look and feel for each Windows version.
 | 
			
		||||
This port can be compiled with several compilers including Microsoft Studio
 | 
			
		||||
VC++ 2003 or later, Borland 5.5, MinGW32, Cygwin as well as cross-compilation
 | 
			
		||||
with a Linux-hosted MinGW32 tool chain.
 | 
			
		||||
VC++ 2003 or later, MinGW32, Cygwin as well as cross-compilation with a
 | 
			
		||||
Linux-hosted MinGW32 tool chain.
 | 
			
		||||
 | 
			
		||||
@subpage plat_msw_install "Build and Install Instructions"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -262,75 +262,6 @@ NOTE: The makefile.gcc makefiles are for compilation under MinGW using
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Borland C++ Compilation                {#msw_build_borland}
 | 
			
		||||
----------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
WARNING: Borland instructions are out of date, please send us your
 | 
			
		||||
         corrections if you are using it with wxWidgets 3.0.
 | 
			
		||||
 | 
			
		||||
The minimum version required is 5.5 (last version supported by BC++ 5.0 was
 | 
			
		||||
2.4.2), which can be downloaded for free from:
 | 
			
		||||
http://www.borland.com/products/downloads/download_cbuilder.html
 | 
			
		||||
 | 
			
		||||
We have found that the free Turbo Explorer and commercial BDS work fine; the
 | 
			
		||||
debugger is very good. To avoid linker errors you will need to add
 | 
			
		||||
-DSHARED=1 to the makefile line for the library
 | 
			
		||||
 | 
			
		||||
The version 5.6 included in Borland C++ Builder 2006 works as well after the
 | 
			
		||||
following small change: please remove the test for `__WINDOWS__` from line 88
 | 
			
		||||
of the file `BCCDIR\include\stl\_threads.h`.
 | 
			
		||||
 | 
			
		||||
Compiling using the makefiles:
 | 
			
		||||
 | 
			
		||||
1. Change directory to build\msw. Type 'make -f makefile.bcc' to
 | 
			
		||||
   make the wxWidgets core library. Ignore the compiler warnings.
 | 
			
		||||
   This produces a couple of libraries in the `lib\bcc_lib` directory.
 | 
			
		||||
 | 
			
		||||
2. Change directory to a sample or demo such as samples\minimal, and type
 | 
			
		||||
   `make -f makefile.bcc`. This produces a windows exe file - by default
 | 
			
		||||
   in the `bcc_mswd` subdirectory.
 | 
			
		||||
 | 
			
		||||
Note (1): the wxWidgets makefiles assume dword structure alignment. Please
 | 
			
		||||
make sure that your own project or makefile settings use the
 | 
			
		||||
same alignment, or you could experience mysterious crashes. To
 | 
			
		||||
change the alignment, change CPPFLAGS in build\msw\config.bcc.
 | 
			
		||||
 | 
			
		||||
Note (2): If you wish debug messages to be sent to the console in
 | 
			
		||||
debug mode, edit makefile.bcc and change /aa to /Tpe in link commands.
 | 
			
		||||
 | 
			
		||||
Using the Debugger and IDE in BDS or Turbo Explorer
 | 
			
		||||
---------------------------------------------------
 | 
			
		||||
 | 
			
		||||
Double-click / open \%WXWIN\%\samples\minimal\borland.bdsproj. The current version
 | 
			
		||||
is to be used with a dynamic build of wxWidgets-made by running
 | 
			
		||||
make -f Makefile.bcc -DBUILD=debug -DSHARED=1
 | 
			
		||||
in wxWidgets\build\msw. You also need the `wxWidgets\lib\bcc_dll`
 | 
			
		||||
directory in your PATH. The debugger tracks your source and also
 | 
			
		||||
traces into the wxWidgets sources.
 | 
			
		||||
 | 
			
		||||
To use this to debug other samples, copy the `borland_ide.cpp`
 | 
			
		||||
and borland.bdsproj files, then replace all occurrences of
 | 
			
		||||
"minimal" with the name of the new project files
 | 
			
		||||
 | 
			
		||||
Compilation succeeds with CBuilderX personal edition and CBuilder6, but
 | 
			
		||||
you may have to copy make.exe from the 5.5 download to the new bin directory.
 | 
			
		||||
 | 
			
		||||
Compiling using the IDE files for Borland C++ 5.0 and using CBuilder IDE
 | 
			
		||||
(v1-v6): not supported
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
** REMEMBER **
 | 
			
		||||
In all of your wxWidgets applications, your source code should include
 | 
			
		||||
the following preprocessor directive:
 | 
			
		||||
 | 
			
		||||
    #ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
(check the samples -- e.g., \wx2\samples\minimal\minimal.cpp -- for
 | 
			
		||||
more details)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Installing and building wxWidgets using vcpkg         {#msw_install_and_build}
 | 
			
		||||
=============================================
 | 
			
		||||
@@ -448,7 +379,7 @@ The full list of the build settings follows:
 | 
			
		||||
 | 
			
		||||
  Links static version of C and C++ runtime libraries into the executable, so
 | 
			
		||||
  that the program does not depend on DLLs provided with the compiler (e.g.
 | 
			
		||||
  Visual C++'s msvcrt.dll or Borland's cc3250mt.dll).
 | 
			
		||||
  Visual C++'s msvcrt.dll).
 | 
			
		||||
  Caution: Do not use static runtime libraries when building DLL (SHARED=1)!
 | 
			
		||||
 | 
			
		||||
* `DEBUG_FLAG=0`
 | 
			
		||||
 
 | 
			
		||||
@@ -59,14 +59,6 @@ b) Cygwin
 | 
			
		||||
 | 
			
		||||
** the instructions may be out of date as for wxWidgets 2.5.2+ **
 | 
			
		||||
 | 
			
		||||
c) Other compilers
 | 
			
		||||
   Borland:
 | 
			
		||||
   in the wxwindows\src\msw directory run
 | 
			
		||||
   'make -f makefile.b32 WXUSINGUNIV=1' to build the library and then run
 | 
			
		||||
   'make -f makefile.b32 WXUSINGUNIV=1' in the sample directory  which you wish
 | 
			
		||||
   to build using the wxUniversal widgets. Use 'SET WXTHEME=GTK' [or  WIN32 or METAL]
 | 
			
		||||
   to test the existing themes
 | 
			
		||||
 | 
			
		||||
Unfortunately we don't have makefiles for any other compilers yet.
 | 
			
		||||
Please contact us if you would like to help us with creating one for the
 | 
			
		||||
compiler you use.
 | 
			
		||||
 
 | 
			
		||||
@@ -105,11 +105,6 @@ extern WXDLLIMPEXP_DATA_CORE(wxBrushList*)   wxTheBrushList;
 | 
			
		||||
// to compile without warnings which it would otherwise provoke from some
 | 
			
		||||
// compilers as it compares elements of different enums
 | 
			
		||||
 | 
			
		||||
// Unfortunately some compilers have ambiguity issues when enum comparisons are
 | 
			
		||||
// overloaded so we have to disable the overloads in this case, see
 | 
			
		||||
// wxCOMPILER_NO_OVERLOAD_ON_ENUM definition in wx/platform.h for more details.
 | 
			
		||||
#ifndef wxCOMPILER_NO_OVERLOAD_ON_ENUM
 | 
			
		||||
 | 
			
		||||
wxDEPRECATED_MSG("use wxBRUSHSTYLE_XXX constants only")
 | 
			
		||||
inline bool operator==(wxBrushStyle s, wxDeprecatedGUIConstants t)
 | 
			
		||||
{
 | 
			
		||||
@@ -122,6 +117,4 @@ inline bool operator!=(wxBrushStyle s, wxDeprecatedGUIConstants t)
 | 
			
		||||
    return static_cast<int>(s) != static_cast<int>(t);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#endif // wxCOMPILER_NO_OVERLOAD_ON_ENUM
 | 
			
		||||
 | 
			
		||||
#endif // _WX_BRUSH_H_BASE_
 | 
			
		||||
 
 | 
			
		||||
@@ -81,8 +81,6 @@
 | 
			
		||||
    // ABI-compatible with the corresponding version of the MSVC and we want to
 | 
			
		||||
    // allow using it compile the application code using MSVC-built DLLs.
 | 
			
		||||
    #define __WX_BO_COMPILER ",Intel C++"
 | 
			
		||||
#elif defined(__BORLANDC__)
 | 
			
		||||
    #define __WX_BO_COMPILER ",Borland C++"
 | 
			
		||||
#else
 | 
			
		||||
    #define __WX_BO_COMPILER
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -93,9 +93,6 @@
 | 
			
		||||
/* VC++ and BC++ starting with 5.2 have TCHAR support */
 | 
			
		||||
#ifdef __VISUALC__
 | 
			
		||||
    #define wxHAVE_TCHAR_SUPPORT
 | 
			
		||||
#elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x520)
 | 
			
		||||
    #define wxHAVE_TCHAR_SUPPORT
 | 
			
		||||
    #include <ctype.h>
 | 
			
		||||
#elif defined(__MINGW32__)
 | 
			
		||||
    #define wxHAVE_TCHAR_SUPPORT
 | 
			
		||||
    #include <stddef.h>
 | 
			
		||||
@@ -199,11 +196,7 @@
 | 
			
		||||
            Notice that we use an intermediate macro to allow x to be expanded
 | 
			
		||||
            if it's a macro itself.
 | 
			
		||||
         */
 | 
			
		||||
        #ifndef wxCOMPILER_BROKEN_CONCAT_OPER
 | 
			
		||||
            #define wxT(x) wxCONCAT_HELPER(L, x)
 | 
			
		||||
        #else
 | 
			
		||||
            #define wxT(x) wxPREPEND_L(x)
 | 
			
		||||
        #endif
 | 
			
		||||
        #define wxT(x) wxCONCAT_HELPER(L, x)
 | 
			
		||||
    #endif /* ASCII/Unicode */
 | 
			
		||||
#endif /* !defined(wxT) */
 | 
			
		||||
 | 
			
		||||
@@ -223,11 +216,7 @@
 | 
			
		||||
    /*
 | 
			
		||||
        As above with wxT(), wxS() argument is expanded if it's a macro.
 | 
			
		||||
     */
 | 
			
		||||
    #ifndef wxCOMPILER_BROKEN_CONCAT_OPER
 | 
			
		||||
        #define wxS(x) wxCONCAT_HELPER(L, x)
 | 
			
		||||
    #else
 | 
			
		||||
        #define wxS(x) wxPREPEND_L(x)
 | 
			
		||||
    #endif
 | 
			
		||||
    #define wxS(x) wxCONCAT_HELPER(L, x)
 | 
			
		||||
#else /* wxUSE_UNICODE_UTF8 || ANSI */
 | 
			
		||||
    #define wxS(x) x
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -60,8 +60,6 @@
 | 
			
		||||
#   pragma message("Please update wx/compiler.h to recognize this VC++ version")
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
 | 
			
		||||
#   define __BORLANDC__
 | 
			
		||||
#elif defined(__SUNPRO_CC)
 | 
			
		||||
#   ifndef __SUNCC__
 | 
			
		||||
#       define __SUNCC__ __SUNPRO_CC
 | 
			
		||||
 
 | 
			
		||||
@@ -41,16 +41,6 @@
 | 
			
		||||
/* a Unicode-friendly version of wxSTRINGIZE_T */
 | 
			
		||||
#define wxSTRINGIZE_T(x)            wxAPPLY_T(wxSTRINGIZE(x))
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
    Special workarounds for compilers with broken "##" operator. For all the
 | 
			
		||||
    other ones we can just use it directly.
 | 
			
		||||
 */
 | 
			
		||||
#ifdef wxCOMPILER_BROKEN_CONCAT_OPER
 | 
			
		||||
    #define wxPREPEND_L(x)      L ## x
 | 
			
		||||
    #define wxAPPEND_i64(x)     x ## i64
 | 
			
		||||
    #define wxAPPEND_ui64(x)    x ## ui64
 | 
			
		||||
#endif /* wxCOMPILER_BROKEN_CONCAT_OPER */
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
   Helper macros for wxMAKE_UNIQUE_NAME: normally this works by appending the
 | 
			
		||||
   current line number to the given identifier to reduce the probability of the
 | 
			
		||||
 
 | 
			
		||||
@@ -157,11 +157,6 @@
 | 
			
		||||
    #endif /* VC++ 8 */
 | 
			
		||||
#endif /*  __VISUALC__ */
 | 
			
		||||
 | 
			
		||||
/*  suppress some Borland C++ warnings */
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#   pragma warn -inl                /*  Functions containing reserved words and certain constructs are not expanded inline */
 | 
			
		||||
#endif /*  __BORLANDC__ */
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
   g++ gives a warning when a class has private dtor if it has no friends but
 | 
			
		||||
   this is a perfectly valid situation for a ref-counted class which destroys
 | 
			
		||||
@@ -497,7 +492,6 @@ typedef short int WXTYPE;
 | 
			
		||||
    #if defined(__GNUWIN32__)
 | 
			
		||||
        #define wxSTDCALL __attribute__((stdcall))
 | 
			
		||||
    #else
 | 
			
		||||
        /*  both VC++ and Borland understand this */
 | 
			
		||||
        #define wxSTDCALL _stdcall
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
@@ -880,12 +874,8 @@ typedef short int WXTYPE;
 | 
			
		||||
/*  sometimes the value of a variable is *really* not used, to suppress  the */
 | 
			
		||||
/*  resulting warning you may pass it to this function */
 | 
			
		||||
#ifdef __cplusplus
 | 
			
		||||
#   ifdef __BORLANDC__
 | 
			
		||||
#       define wxUnusedVar(identifier) identifier
 | 
			
		||||
#   else
 | 
			
		||||
        template <class T>
 | 
			
		||||
            inline void wxUnusedVar(const T& WXUNUSED(t)) { }
 | 
			
		||||
#   endif
 | 
			
		||||
    template <class T>
 | 
			
		||||
        inline void wxUnusedVar(const T& WXUNUSED(t)) { }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/*  ---------------------------------------------------------------------------- */
 | 
			
		||||
 
 | 
			
		||||
@@ -20,9 +20,9 @@
 | 
			
		||||
#    define WXIMPORT __attribute__ ((visibility("default")))
 | 
			
		||||
#elif defined(__WINDOWS__)
 | 
			
		||||
    /*
 | 
			
		||||
       __declspec works in BC++ 5 and later as well as VC++.
 | 
			
		||||
       __declspec works in as VC++.
 | 
			
		||||
     */
 | 
			
		||||
#    if defined(__VISUALC__) || defined(__BORLANDC__)
 | 
			
		||||
#    if defined(__VISUALC__)
 | 
			
		||||
#        define WXEXPORT __declspec(dllexport)
 | 
			
		||||
#        define WXIMPORT __declspec(dllimport)
 | 
			
		||||
    /*
 | 
			
		||||
 
 | 
			
		||||
@@ -4287,10 +4287,6 @@ typedef void (wxEvtHandler::*wxPressAndTapEventFunction)(wxPressAndTapEvent&);
 | 
			
		||||
        static const wxEventTable        sm_eventTable;                 \
 | 
			
		||||
        static wxEventHashTable          sm_eventHashTable
 | 
			
		||||
 | 
			
		||||
// N.B.: when building DLL with Borland C++ 5.5 compiler, you must initialize
 | 
			
		||||
//       sm_eventTable before using it in GetEventTable() or the compiler gives
 | 
			
		||||
//       E2233 (see http://groups.google.com/groups?selm=397dcc8a%241_2%40dnews)
 | 
			
		||||
 | 
			
		||||
#define wxBEGIN_EVENT_TABLE(theClass, baseClass) \
 | 
			
		||||
    const wxEventTable theClass::sm_eventTable = \
 | 
			
		||||
        { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] }; \
 | 
			
		||||
 
 | 
			
		||||
@@ -32,12 +32,6 @@
 | 
			
		||||
#endif // __WINDOWS__
 | 
			
		||||
#endif // native Win compiler
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
 | 
			
		||||
                    // this (3.1 I believe) and how to test for it.
 | 
			
		||||
                    // If this works for Borland 4.0 as well, then no worries.
 | 
			
		||||
    #include <dir.h>
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#include  <fcntl.h>       // O_RDONLY &c
 | 
			
		||||
 | 
			
		||||
// ----------------------------------------------------------------------------
 | 
			
		||||
@@ -127,8 +121,7 @@ enum wxPosixPermissions
 | 
			
		||||
      ( \
 | 
			
		||||
        defined(__VISUALC__) || \
 | 
			
		||||
        defined(__MINGW64_TOOLCHAIN__) || \
 | 
			
		||||
        (defined(__MINGW32__) && !defined(__WINE__)) || \
 | 
			
		||||
        defined(__BORLANDC__) \
 | 
			
		||||
        (defined(__MINGW32__) && !defined(__WINE__)) \
 | 
			
		||||
      )
 | 
			
		||||
 | 
			
		||||
    // temporary defines just used immediately below
 | 
			
		||||
@@ -183,8 +176,6 @@ enum wxPosixPermissions
 | 
			
		||||
        #endif
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
    // other Windows compilers (Borland) don't have huge file support (or at
 | 
			
		||||
    // least not all functions needed for it by wx) currently
 | 
			
		||||
 | 
			
		||||
    // types
 | 
			
		||||
 | 
			
		||||
@@ -195,33 +186,14 @@ enum wxPosixPermissions
 | 
			
		||||
        typedef off_t wxFileOffset;
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
    // at least Borland 5.5 doesn't like "struct ::stat" so don't use the scope
 | 
			
		||||
    // resolution operator present in wxPOSIX_IDENT for it
 | 
			
		||||
    #ifdef __BORLANDC__
 | 
			
		||||
        #define wxPOSIX_STRUCT(s)    struct s
 | 
			
		||||
    #else
 | 
			
		||||
        #define wxPOSIX_STRUCT(s)    struct wxPOSIX_IDENT(s)
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
    // Borland is special in that it uses _stat with Unicode functions (for
 | 
			
		||||
    // MSVC compatibility?) but stat with ANSI ones
 | 
			
		||||
    #ifdef __BORLANDC__
 | 
			
		||||
        #if wxHAS_HUGE_FILES
 | 
			
		||||
            #define wxStructStat struct stati64
 | 
			
		||||
        #else
 | 
			
		||||
            #if wxUSE_UNICODE
 | 
			
		||||
                #define wxStructStat struct _stat
 | 
			
		||||
            #else
 | 
			
		||||
                #define wxStructStat struct stat
 | 
			
		||||
            #endif
 | 
			
		||||
        #endif
 | 
			
		||||
    #else // !__BORLANDC__
 | 
			
		||||
        #ifdef wxHAS_HUGE_FILES
 | 
			
		||||
            #define wxStructStat struct _stati64
 | 
			
		||||
        #else
 | 
			
		||||
            #define wxStructStat struct _stat
 | 
			
		||||
        #endif
 | 
			
		||||
    #endif // __BORLANDC__/!__BORLANDC__
 | 
			
		||||
    #define wxPOSIX_STRUCT(s) struct wxPOSIX_IDENT(s)
 | 
			
		||||
 | 
			
		||||
    #ifdef wxHAS_HUGE_FILES
 | 
			
		||||
        #define wxStructStat struct _stati64
 | 
			
		||||
    #else
 | 
			
		||||
        #define wxStructStat struct _stat
 | 
			
		||||
    #endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    // functions
 | 
			
		||||
@@ -232,7 +204,7 @@ enum wxPosixPermissions
 | 
			
		||||
    // to avoid using them as they're not present in earlier versions and
 | 
			
		||||
    // always using the native functions spelling is easier than testing for
 | 
			
		||||
    // the versions
 | 
			
		||||
    #if defined(__BORLANDC__) || defined(__MINGW64_TOOLCHAIN__)
 | 
			
		||||
    #if defined(__MINGW64_TOOLCHAIN__)
 | 
			
		||||
        #define wxPOSIX_IDENT(func)    ::func
 | 
			
		||||
    #else // by default assume MSVC-compatible names
 | 
			
		||||
        #define wxPOSIX_IDENT(func)    _ ## func
 | 
			
		||||
@@ -263,15 +235,13 @@ enum wxPosixPermissions
 | 
			
		||||
        #define   wxTell       wxPOSIX_IDENT(tell)
 | 
			
		||||
    #endif // wxHAS_HUGE_FILES/!wxHAS_HUGE_FILES
 | 
			
		||||
 | 
			
		||||
     #if !defined(__BORLANDC__) || (__BORLANDC__ > 0x540)
 | 
			
		||||
         // NB: this one is not POSIX and always has the underscore
 | 
			
		||||
         #define   wxFsync      _commit
 | 
			
		||||
 | 
			
		||||
         // could be already defined by configure (Cygwin)
 | 
			
		||||
         #ifndef HAVE_FSYNC
 | 
			
		||||
             #define HAVE_FSYNC
 | 
			
		||||
         #endif
 | 
			
		||||
    #endif // BORLANDC
 | 
			
		||||
     #define   wxFsync      _commit
 | 
			
		||||
 | 
			
		||||
     // could be already defined by configure (Cygwin)
 | 
			
		||||
     #ifndef HAVE_FSYNC
 | 
			
		||||
         #define HAVE_FSYNC
 | 
			
		||||
     #endif
 | 
			
		||||
 | 
			
		||||
    #define   wxEof        wxPOSIX_IDENT(eof)
 | 
			
		||||
 | 
			
		||||
@@ -297,14 +267,8 @@ enum wxPosixPermissions
 | 
			
		||||
 | 
			
		||||
    // then wide char ones
 | 
			
		||||
    #if wxUSE_UNICODE
 | 
			
		||||
        // special workaround for buggy wopen() in bcc 5.5
 | 
			
		||||
        #if defined(__BORLANDC__) && \
 | 
			
		||||
            (__BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551)
 | 
			
		||||
                WXDLLIMPEXP_BASE int wxCRT_OpenW(const wxChar *pathname,
 | 
			
		||||
                                                 int flags, mode_t mode);
 | 
			
		||||
        #else
 | 
			
		||||
            #define wxCRT_OpenW       _wopen
 | 
			
		||||
        #endif
 | 
			
		||||
 | 
			
		||||
        #define wxCRT_OpenW         _wopen
 | 
			
		||||
 | 
			
		||||
        wxDECL_FOR_STRICT_MINGW32(int, _wopen, (const wchar_t*, int, ...))
 | 
			
		||||
        wxDECL_FOR_STRICT_MINGW32(int, _waccess, (const wchar_t*, int))
 | 
			
		||||
 
 | 
			
		||||
@@ -677,11 +677,6 @@ extern WXDLLIMPEXP_DATA_CORE(wxFontList*)    wxTheFontList;
 | 
			
		||||
// to compile without warnings which it would otherwise provoke from some
 | 
			
		||||
// compilers as it compares elements of different enums
 | 
			
		||||
 | 
			
		||||
// Unfortunately some compilers have ambiguity issues when enum comparisons are
 | 
			
		||||
// overloaded so we have to disable the overloads in this case, see
 | 
			
		||||
// wxCOMPILER_NO_OVERLOAD_ON_ENUM definition in wx/platform.h for more details.
 | 
			
		||||
#ifndef wxCOMPILER_NO_OVERLOAD_ON_ENUM
 | 
			
		||||
 | 
			
		||||
wxDEPRECATED_MSG("use wxFONTFAMILY_XXX constants") \
 | 
			
		||||
inline bool operator==(wxFontFamily s, wxDeprecatedGUIConstants t)
 | 
			
		||||
    { return static_cast<int>(s) == static_cast<int>(t); }
 | 
			
		||||
@@ -701,6 +696,4 @@ wxDEPRECATED_MSG("use wxFONTWEIGHT_XXX constants") \
 | 
			
		||||
inline bool operator!=(wxFontWeight s, wxDeprecatedGUIConstants t)
 | 
			
		||||
    { return static_cast<int>(s) != static_cast<int>(t); }
 | 
			
		||||
 | 
			
		||||
#endif // // wxCOMPILER_NO_OVERLOAD_ON_ENUM
 | 
			
		||||
 | 
			
		||||
#endif // _WX_FONT_H_BASE_
 | 
			
		||||
 
 | 
			
		||||
@@ -321,11 +321,6 @@ public:
 | 
			
		||||
#endif // wxUSE_STREAMS
 | 
			
		||||
 | 
			
		||||
    bool Create( const char* const* xpmData );
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    // needed for Borland 5.5
 | 
			
		||||
    wxImage( char** xpmData ) { Create(const_cast<const char* const*>(xpmData)); }
 | 
			
		||||
    bool Create( char** xpmData ) { return Create(const_cast<const char* const*>(xpmData)); }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
    bool Create( int width, int height, bool clear = true );
 | 
			
		||||
    bool Create( int width, int height, unsigned char* data, bool static_data = false );
 | 
			
		||||
 
 | 
			
		||||
@@ -1408,14 +1408,7 @@ public:
 | 
			
		||||
// functions if their parameters are complicated enough, but by defining them
 | 
			
		||||
// as an empty inline function we ensure that even dumbest compilers optimise
 | 
			
		||||
// them away
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    // but Borland gives "W8019: Code has no effect" for wxLogNop() so we need
 | 
			
		||||
    // to define it differently for it to avoid these warnings (same problem as
 | 
			
		||||
    // with wxUnusedVar())
 | 
			
		||||
    #define wxLogNop() { }
 | 
			
		||||
#else
 | 
			
		||||
    inline void wxLogNop() { }
 | 
			
		||||
#endif
 | 
			
		||||
inline void wxLogNop() { }
 | 
			
		||||
 | 
			
		||||
#if wxUSE_LOG_DEBUG
 | 
			
		||||
    #define wxLogDebug wxDO_LOG_IF_ENABLED(Debug)
 | 
			
		||||
 
 | 
			
		||||
@@ -64,7 +64,7 @@
 | 
			
		||||
    #define wxIsNaN(x) std::isnan(x)
 | 
			
		||||
#else /* C++98 */
 | 
			
		||||
 | 
			
		||||
#if defined(__VISUALC__) || defined(__BORLANDC__)
 | 
			
		||||
#if defined(__VISUALC__)
 | 
			
		||||
    #include <float.h>
 | 
			
		||||
    #define wxFinite(x) _finite(x)
 | 
			
		||||
#elif defined(__MINGW64_TOOLCHAIN__) || defined(__clang__)
 | 
			
		||||
@@ -94,7 +94,7 @@
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#if defined(__VISUALC__)||defined(__BORLAND__)
 | 
			
		||||
#if defined(__VISUALC__)
 | 
			
		||||
    #define wxIsNaN(x) _isnan(x)
 | 
			
		||||
#elif defined(__GNUG__)||defined(__GNUWIN32__)|| \
 | 
			
		||||
      defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \
 | 
			
		||||
 
 | 
			
		||||
@@ -346,15 +346,8 @@ void WXDLLIMPEXP_BASE wxTraceLevel(int level, const wxChar *fmt ...) WX_ATTRIBUT
 | 
			
		||||
 | 
			
		||||
#define WXDEBUG_DUMPDELAYCOUNTER
 | 
			
		||||
 | 
			
		||||
// Borland C++ Builder 6 seems to have troubles with inline functions (see bug
 | 
			
		||||
// 819700)
 | 
			
		||||
#if 0
 | 
			
		||||
    inline void wxTrace(const wxChar *WXUNUSED(fmt)) {}
 | 
			
		||||
    inline void wxTraceLevel(int WXUNUSED(level), const wxChar *WXUNUSED(fmt)) {}
 | 
			
		||||
#else
 | 
			
		||||
    #define wxTrace(fmt)
 | 
			
		||||
    #define wxTraceLevel(l, fmt)
 | 
			
		||||
#endif
 | 
			
		||||
#define wxTrace(fmt)
 | 
			
		||||
#define wxTraceLevel(l, fmt)
 | 
			
		||||
 | 
			
		||||
#define WXTRACE true ? (void)0 : wxTrace
 | 
			
		||||
#define WXTRACELEVEL true ? (void)0 : wxTraceLevel
 | 
			
		||||
 
 | 
			
		||||
@@ -162,8 +162,7 @@
 | 
			
		||||
 * All of the settings below require SEH support (__try/__catch) and can't work
 | 
			
		||||
 * without it.
 | 
			
		||||
 */
 | 
			
		||||
#if !defined(_MSC_VER) && \
 | 
			
		||||
    (!defined(__BORLANDC__) || __BORLANDC__ < 0x0550)
 | 
			
		||||
#if !defined(_MSC_VER)
 | 
			
		||||
#    undef wxUSE_ON_FATAL_EXCEPTION
 | 
			
		||||
#    define wxUSE_ON_FATAL_EXCEPTION 0
 | 
			
		||||
 | 
			
		||||
@@ -215,27 +214,6 @@
 | 
			
		||||
#   endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
   Compiler-specific checks.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/* Borland */
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
 | 
			
		||||
#if __BORLANDC__ < 0x500
 | 
			
		||||
    /* BC++ 4.0 can't compile JPEG library */
 | 
			
		||||
#   undef wxUSE_LIBJPEG
 | 
			
		||||
#   define wxUSE_LIBJPEG 0
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/* wxUSE_DEBUG_NEW_ALWAYS = 1 not compatible with BC++ in DLL mode */
 | 
			
		||||
#if defined(WXMAKINGDLL) || defined(WXUSINGDLL)
 | 
			
		||||
#   undef wxUSE_DEBUG_NEW_ALWAYS
 | 
			
		||||
#   define wxUSE_DEBUG_NEW_ALWAYS 0
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#endif /* __BORLANDC__ */
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
   un/redefine the options which we can't compile (after checking that they're
 | 
			
		||||
   defined
 | 
			
		||||
 
 | 
			
		||||
@@ -47,47 +47,16 @@ extern WXDLLIMPEXP_CORE int
 | 
			
		||||
            wxCmdLineArgType pCmdLine = NULL,
 | 
			
		||||
            int nCmdShow = SW_SHOWNORMAL);
 | 
			
		||||
 | 
			
		||||
#if defined(__BORLANDC__) && wxUSE_UNICODE
 | 
			
		||||
    // Borland C++ has the following nonstandard behaviour: when the -WU
 | 
			
		||||
    // command line flag is used, the linker expects to find wWinMain instead
 | 
			
		||||
    // of WinMain. This flag causes the compiler to define _UNICODE and
 | 
			
		||||
    // UNICODE symbols and there's no way to detect its use, so we have to
 | 
			
		||||
    // define both WinMain and wWinMain so that wxIMPLEMENT_WXWIN_MAIN works
 | 
			
		||||
    // for both code compiled with and without -WU.
 | 
			
		||||
    // See http://sourceforge.net/tracker/?func=detail&atid=309863&aid=1935997&group_id=9863
 | 
			
		||||
    // for more details.
 | 
			
		||||
    #define wxIMPLEMENT_WXWIN_MAIN_BORLAND_NONSTANDARD                      \
 | 
			
		||||
        extern "C" int WINAPI wWinMain(HINSTANCE hInstance,                 \
 | 
			
		||||
                                      HINSTANCE hPrevInstance,              \
 | 
			
		||||
                                      wchar_t * WXUNUSED(lpCmdLine),        \
 | 
			
		||||
                                      int nCmdShow)                         \
 | 
			
		||||
        {                                                                   \
 | 
			
		||||
            wxDISABLE_DEBUG_SUPPORT();                                      \
 | 
			
		||||
                                                                            \
 | 
			
		||||
            /* NB: wxEntry expects lpCmdLine argument to be char*, not */   \
 | 
			
		||||
            /*     wchar_t*, but fortunately it's not used anywhere    */   \
 | 
			
		||||
            /*     and we can simply pass NULL in:                     */   \
 | 
			
		||||
            return wxEntry(hInstance, hPrevInstance, NULL, nCmdShow);       \
 | 
			
		||||
        }
 | 
			
		||||
#else
 | 
			
		||||
    #define wxIMPLEMENT_WXWIN_MAIN_BORLAND_NONSTANDARD
 | 
			
		||||
#endif // defined(__BORLANDC__) && wxUSE_UNICODE
 | 
			
		||||
 | 
			
		||||
#define wxIMPLEMENT_WXWIN_MAIN                                              \
 | 
			
		||||
    extern "C" int WINAPI WinMain(HINSTANCE hInstance,                      \
 | 
			
		||||
                                  HINSTANCE hPrevInstance,                  \
 | 
			
		||||
                                  wxCmdLineArgType WXUNUSED(lpCmdLine),     \
 | 
			
		||||
                                  wxCmdLineArgType lpCmdLine,               \
 | 
			
		||||
                                  int nCmdShow)                             \
 | 
			
		||||
    {                                                                       \
 | 
			
		||||
        wxDISABLE_DEBUG_SUPPORT();                                          \
 | 
			
		||||
                                                                            \
 | 
			
		||||
        /* NB: We pass NULL in place of lpCmdLine to behave the same as  */ \
 | 
			
		||||
        /*     Borland-specific wWinMain() above. If it becomes needed   */ \
 | 
			
		||||
        /*     to pass lpCmdLine to wxEntry() here, you'll have to fix   */ \
 | 
			
		||||
        /*     wWinMain() above too.                                     */ \
 | 
			
		||||
        return wxEntry(hInstance, hPrevInstance, NULL, nCmdShow);           \
 | 
			
		||||
    }                                                                       \
 | 
			
		||||
    wxIMPLEMENT_WXWIN_MAIN_BORLAND_NONSTANDARD
 | 
			
		||||
        return wxEntry(hInstance, hPrevInstance, lpCmdLine, nCmdShow);      \
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
#endif // wxUSE_GUI
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -121,13 +121,12 @@ extern LONG APIENTRY
 | 
			
		||||
 | 
			
		||||
// This one is a macro so that it can be tested with #ifdef, it will be
 | 
			
		||||
// undefined if it cannot be implemented for a given compiler.
 | 
			
		||||
// Vc++, bcc, dmc, ow, mingw akk have _get_osfhandle() and Cygwin has
 | 
			
		||||
// Vc++, dmc, ow, mingw akk have _get_osfhandle() and Cygwin has
 | 
			
		||||
// get_osfhandle. Others are currently unknown, e.g. Salford, Intel, Visual
 | 
			
		||||
// Age.
 | 
			
		||||
#if defined(__CYGWIN__)
 | 
			
		||||
    #define wxGetOSFHandle(fd) ((HANDLE)get_osfhandle(fd))
 | 
			
		||||
#elif defined(__VISUALC__) \
 | 
			
		||||
   || defined(__BORLANDC__) \
 | 
			
		||||
   || defined(__MINGW32__)
 | 
			
		||||
    #define wxGetOSFHandle(fd) ((HANDLE)_get_osfhandle(fd))
 | 
			
		||||
    #define wxOpenOSFHandle(h, flags) (_open_osfhandle(wxPtrToUInt(h), flags))
 | 
			
		||||
 
 | 
			
		||||
@@ -18,14 +18,7 @@
 | 
			
		||||
    WXDLLIMPEXP_BASE unsigned long wxGlobalSEHandler(EXCEPTION_POINTERS *pExcPtrs);
 | 
			
		||||
 | 
			
		||||
    // helper macro for wxSEH_HANDLE
 | 
			
		||||
#if defined(__BORLANDC__)
 | 
			
		||||
    // some compilers don't understand that this code is unreachable and warn
 | 
			
		||||
    // about no value being returned from the function without it, so calm them
 | 
			
		||||
    // down
 | 
			
		||||
    #define wxSEH_DUMMY_RETURN(rc) return rc;
 | 
			
		||||
#else
 | 
			
		||||
    #define wxSEH_DUMMY_RETURN(rc)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
    // macros which allow to avoid many #if wxUSE_ON_FATAL_EXCEPTION in the code
 | 
			
		||||
    // which uses them
 | 
			
		||||
 
 | 
			
		||||
@@ -117,11 +117,6 @@ extern WXDLLIMPEXP_DATA_CORE(wxPenList*)   wxThePenList;
 | 
			
		||||
// to compile without warnings which it would otherwise provoke from some
 | 
			
		||||
// compilers as it compares elements of different enums
 | 
			
		||||
 | 
			
		||||
// Unfortunately some compilers have ambiguity issues when enum comparisons are
 | 
			
		||||
// overloaded so we have to disable the overloads in this case, see
 | 
			
		||||
// wxCOMPILER_NO_OVERLOAD_ON_ENUM definition in wx/platform.h for more details.
 | 
			
		||||
#ifndef wxCOMPILER_NO_OVERLOAD_ON_ENUM
 | 
			
		||||
 | 
			
		||||
wxDEPRECATED_MSG("use wxPENSTYLE_XXX constants")
 | 
			
		||||
inline bool operator==(wxPenStyle s, wxDeprecatedGUIConstants t)
 | 
			
		||||
{
 | 
			
		||||
@@ -134,6 +129,4 @@ inline bool operator!=(wxPenStyle s, wxDeprecatedGUIConstants t)
 | 
			
		||||
    return static_cast<int>(s) != static_cast<int>(t);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#endif // wxCOMPILER_NO_OVERLOAD_ON_ENUM
 | 
			
		||||
 | 
			
		||||
#endif // _WX_PEN_H_BASE_
 | 
			
		||||
 
 | 
			
		||||
@@ -82,7 +82,6 @@
 | 
			
		||||
    define it ourselves if any of the following macros is defined:
 | 
			
		||||
 | 
			
		||||
    - MSVC _WIN32 (notice that this is also defined under Win64)
 | 
			
		||||
    - Borland __WIN32__
 | 
			
		||||
    - Our __WXMSW__ which selects Windows as platform automatically
 | 
			
		||||
 */
 | 
			
		||||
#if defined(_WIN32) || defined(__WIN32__) || defined(__WXMSW__)
 | 
			
		||||
@@ -224,42 +223,6 @@
 | 
			
		||||
#endif /* wxUSE_UNICODE */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
   test for old versions of Borland C, normally need at least 5.82, Turbo
 | 
			
		||||
   explorer, available for free at http://www.turboexplorer.com/downloads
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
    Older versions of Borland C have some compiler bugs that need
 | 
			
		||||
    workarounds. Mostly pertains to the free command line compiler 5.5.1.
 | 
			
		||||
*/
 | 
			
		||||
#if defined(__BORLANDC__) && (__BORLANDC__ <= 0x551)
 | 
			
		||||
    /*
 | 
			
		||||
        The Borland free compiler is unable to handle overloaded enum
 | 
			
		||||
        comparisons under certain conditions e.g. when any class has a
 | 
			
		||||
        conversion ctor for an integral type and there's an overload to
 | 
			
		||||
        compare between an integral type and that class type.
 | 
			
		||||
    */
 | 
			
		||||
#   define wxCOMPILER_NO_OVERLOAD_ON_ENUM
 | 
			
		||||
 | 
			
		||||
    /*
 | 
			
		||||
        This is needed to overcome bugs in 5.5.1 STL, linking errors will
 | 
			
		||||
        result if it is not defined.
 | 
			
		||||
     */
 | 
			
		||||
#   define _RWSTD_COMPILE_INSTANTIATE
 | 
			
		||||
 | 
			
		||||
    /*
 | 
			
		||||
        Preprocessor in older Borland compilers have major problems
 | 
			
		||||
        concatenating with ##. Specifically, if the string operands being
 | 
			
		||||
        concatenated have special meaning (e.g. L"str", 123i64 etc)
 | 
			
		||||
        then ## will not concatenate the operands correctly.
 | 
			
		||||
 | 
			
		||||
        As a workaround, define wxPREPEND* and wxAPPEND* without using
 | 
			
		||||
        wxCONCAT_HELPER.
 | 
			
		||||
    */
 | 
			
		||||
#   define wxCOMPILER_BROKEN_CONCAT_OPER
 | 
			
		||||
#endif /* __BORLANDC__ */
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
   OS: then test for generic Unix defines, then for particular flavours and
 | 
			
		||||
@@ -369,7 +332,7 @@
 | 
			
		||||
#   include "wx/msw/libraries.h"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if defined(__BORLANDC__) || (defined(__GNUC__) && __GNUC__ < 3)
 | 
			
		||||
#if (defined(__GNUC__) && __GNUC__ < 3)
 | 
			
		||||
#define wxNEEDS_CHARPP
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -23,8 +23,7 @@
 | 
			
		||||
#include <string.h>
 | 
			
		||||
 | 
			
		||||
// prefer snprintf over sprintf
 | 
			
		||||
#if defined(__VISUALC__) || \
 | 
			
		||||
        (defined(__BORLANDC__) && __BORLANDC__ >= 0x540)
 | 
			
		||||
#if defined(__VISUALC__)
 | 
			
		||||
    #define system_sprintf(buff, max, flags, data)      \
 | 
			
		||||
        ::_snprintf(buff, max, flags, data)
 | 
			
		||||
#elif defined(HAVE_SNPRINTF)
 | 
			
		||||
@@ -252,7 +251,7 @@ bool wxPrintfConvSpec<CharType>::Parse(const CharType *format)
 | 
			
		||||
            case wxT('.'):
 | 
			
		||||
                // don't use CHECK_PREC here to avoid warning about the value
 | 
			
		||||
                // assigned to prec_dot inside it being never used (because
 | 
			
		||||
                // overwritten just below) from Borland in release build
 | 
			
		||||
                // overwritten just below)
 | 
			
		||||
                if (in_prec && !prec_dot)
 | 
			
		||||
                    m_szFlags[flagofs++] = '.';
 | 
			
		||||
                in_prec = true;
 | 
			
		||||
 
 | 
			
		||||
@@ -46,13 +46,8 @@ public:
 | 
			
		||||
 | 
			
		||||
    // test for pointer validity: defining conversion to unspecified_bool_type
 | 
			
		||||
    // and not more obvious bool to avoid implicit conversions to integer types
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    // this compiler is too dumb to use unspecified_bool_type operator in tests
 | 
			
		||||
    // of the form "if ( !ptr )"
 | 
			
		||||
    typedef bool unspecified_bool_type;
 | 
			
		||||
#else
 | 
			
		||||
    typedef T *(wxScopedPtr<T>::*unspecified_bool_type)() const;
 | 
			
		||||
#endif // __BORLANDC__
 | 
			
		||||
 | 
			
		||||
    operator unspecified_bool_type() const
 | 
			
		||||
    {
 | 
			
		||||
        return m_ptr ? &wxScopedPtr<T>::get : NULL;
 | 
			
		||||
 
 | 
			
		||||
@@ -1085,11 +1085,10 @@ public:
 | 
			
		||||
      reverse_iterator_impl operator--(int)
 | 
			
		||||
        { reverse_iterator_impl tmp = *this; ++m_cur; return tmp; }
 | 
			
		||||
 | 
			
		||||
      // NB: explicit <T> in the functions below is to keep BCC 5.5 happy
 | 
			
		||||
      reverse_iterator_impl operator+(ptrdiff_t n) const
 | 
			
		||||
        { return reverse_iterator_impl<T>(m_cur - n); }
 | 
			
		||||
        { return reverse_iterator_impl(m_cur - n); }
 | 
			
		||||
      reverse_iterator_impl operator-(ptrdiff_t n) const
 | 
			
		||||
        { return reverse_iterator_impl<T>(m_cur + n); }
 | 
			
		||||
        { return reverse_iterator_impl(m_cur + n); }
 | 
			
		||||
      reverse_iterator_impl operator+=(ptrdiff_t n)
 | 
			
		||||
        { m_cur -= n; return *this; }
 | 
			
		||||
      reverse_iterator_impl operator-=(ptrdiff_t n)
 | 
			
		||||
 
 | 
			
		||||
@@ -247,10 +247,6 @@ typedef wxUint32 wxDword;
 | 
			
		||||
    #define wxLongLong_t __int64
 | 
			
		||||
    #define wxLongLongSuffix i64
 | 
			
		||||
    #define wxLongLongFmtSpec "I64"
 | 
			
		||||
#elif defined(__BORLANDC__) && defined(__WIN32__) && (__BORLANDC__ >= 0x520)
 | 
			
		||||
    #define wxLongLong_t __int64
 | 
			
		||||
    #define wxLongLongSuffix i64
 | 
			
		||||
    #define wxLongLongFmtSpec "L"
 | 
			
		||||
#elif defined(__MINGW32__) && \
 | 
			
		||||
    (defined(__USE_MINGW_ANSI_STDIO) && (__USE_MINGW_ANSI_STDIO != 1))
 | 
			
		||||
    #define wxLongLong_t long long
 | 
			
		||||
@@ -277,17 +273,8 @@ typedef wxUint32 wxDword;
 | 
			
		||||
        wxLL() and wxULL() macros allow to define 64 bit constants in a
 | 
			
		||||
        portable way.
 | 
			
		||||
     */
 | 
			
		||||
    #ifndef wxCOMPILER_BROKEN_CONCAT_OPER
 | 
			
		||||
        #define wxLL(x) wxCONCAT(x, wxLongLongSuffix)
 | 
			
		||||
        #define wxULL(x) wxCONCAT(x, wxCONCAT(u, wxLongLongSuffix))
 | 
			
		||||
    #else
 | 
			
		||||
        /*
 | 
			
		||||
            Currently only Borland compiler has broken concatenation operator
 | 
			
		||||
            and this compiler is known to use [u]i64 suffix.
 | 
			
		||||
         */
 | 
			
		||||
        #define wxLL(x) wxAPPEND_i64(x)
 | 
			
		||||
        #define wxULL(x) wxAPPEND_ui64(x)
 | 
			
		||||
    #endif
 | 
			
		||||
    #define wxLL(x) wxCONCAT(x, wxLongLongSuffix)
 | 
			
		||||
    #define wxULL(x) wxCONCAT(x, wxCONCAT(u, wxLongLongSuffix))
 | 
			
		||||
 | 
			
		||||
    typedef wxLongLong_t wxInt64;
 | 
			
		||||
    typedef wxULongLong_t wxUint64;
 | 
			
		||||
 
 | 
			
		||||
@@ -163,9 +163,8 @@ private:
 | 
			
		||||
    // This cryptic expression means "typedef Ops to wxVectorMemOpsMovable if
 | 
			
		||||
    // type T is movable type, otherwise to wxVectorMemOpsGeneric".
 | 
			
		||||
    //
 | 
			
		||||
    // Note that bcc needs the extra parentheses for non-type template
 | 
			
		||||
    // arguments to compile this expression.
 | 
			
		||||
    typedef typename wxIf< (wxIsMovable<T>::value),
 | 
			
		||||
 | 
			
		||||
    typedef typename wxIf< wxIsMovable<T>::value,
 | 
			
		||||
                           wxPrivate::wxVectorMemOpsMovable<T>,
 | 
			
		||||
                           wxPrivate::wxVectorMemOpsGeneric<T> >::value
 | 
			
		||||
            Ops;
 | 
			
		||||
 
 | 
			
		||||
@@ -231,11 +231,7 @@ extern unsigned long android_wcstoul(const wchar_t *nptr, wchar_t **endptr, int
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/* define wxCRT_StricmpA/W and wxCRT_StrnicmpA/W for various compilers */
 | 
			
		||||
 | 
			
		||||
#if defined(__BORLANDC__)
 | 
			
		||||
    #define wxCRT_StricmpA stricmp
 | 
			
		||||
    #define wxCRT_StrnicmpA strnicmp
 | 
			
		||||
#elif defined(__VISUALC__) || defined(__MINGW32__)
 | 
			
		||||
#if defined(__VISUALC__) || defined(__MINGW32__)
 | 
			
		||||
    /*
 | 
			
		||||
        Due to MinGW 5.3 bug (https://sourceforge.net/p/mingw/bugs/2322/),
 | 
			
		||||
        _stricmp() and _strnicmp() are not declared in its standard headers
 | 
			
		||||
 
 | 
			
		||||
@@ -132,8 +132,7 @@
 | 
			
		||||
       is a wrapper around it as explained below
 | 
			
		||||
     */
 | 
			
		||||
 | 
			
		||||
    #if defined(__VISUALC__) || \
 | 
			
		||||
            (defined(__BORLANDC__) && __BORLANDC__ >= 0x540)
 | 
			
		||||
    #if defined(__VISUALC__)
 | 
			
		||||
        #define wxCRT_VsnprintfA    _vsnprintf
 | 
			
		||||
        #define wxCRT_VsnprintfW    _vsnwprintf
 | 
			
		||||
    #else
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
 | 
			
		||||
// check if to use precompiled headers: do it for most Windows compilers unless
 | 
			
		||||
// explicitly disabled by defining NOPCH
 | 
			
		||||
#if defined(__VISUALC__) || defined(__BORLANDC__)
 | 
			
		||||
#if defined(__VISUALC__)
 | 
			
		||||
    // If user did not request NOCPH and we're not building using configure
 | 
			
		||||
    // then assume user wants precompiled headers.
 | 
			
		||||
    #if !defined(NOPCH) && !defined(__WX_SETUP_H__)
 | 
			
		||||
 
 | 
			
		||||
@@ -39,11 +39,6 @@ public:
 | 
			
		||||
    // Read directly from XPM data (as passed to wxBitmap ctor):
 | 
			
		||||
    wxImage ReadData(const char* const* xpm_data);
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    // needed for Borland 5.5
 | 
			
		||||
    wxImage ReadData(char** xpm_data)
 | 
			
		||||
        { return ReadData(const_cast<const char* const*>(xpm_data)); }
 | 
			
		||||
#endif
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#endif // wxUSE_IMAGE && wxUSE_XPM
 | 
			
		||||
 
 | 
			
		||||
@@ -1181,7 +1181,7 @@ wxAppDerivedClass& wxGetApp();
 | 
			
		||||
    Notice that this function is only available if @c wxUSE_ON_FATAL_EXCEPTION
 | 
			
		||||
    is 1 and under Windows platform this requires a compiler with support for
 | 
			
		||||
    SEH (structured exception handling) which currently means only Microsoft
 | 
			
		||||
    Visual C++ or a recent Borland C++ version.
 | 
			
		||||
    Visual C++.
 | 
			
		||||
 | 
			
		||||
    @header{wx/app.h}
 | 
			
		||||
*/
 | 
			
		||||
 
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all "standard" wxWidgets headers)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
ACCESSTEST_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
ACCESSTEST_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\accesstest_accesstest.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\accesstest.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\accesstest.exe del $(OBJS)\accesstest.exe
 | 
			
		||||
	-if exist $(OBJS)\accesstest.tds del $(OBJS)\accesstest.tds
 | 
			
		||||
	-if exist $(OBJS)\accesstest.ilc del $(OBJS)\accesstest.ilc
 | 
			
		||||
	-if exist $(OBJS)\accesstest.ild del $(OBJS)\accesstest.ild
 | 
			
		||||
	-if exist $(OBJS)\accesstest.ilf del $(OBJS)\accesstest.ilf
 | 
			
		||||
	-if exist $(OBJS)\accesstest.ils del $(OBJS)\accesstest.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\accesstest.exe: $(ACCESSTEST_OBJECTS)  $(OBJS)\accesstest_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(ACCESSTEST_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\accesstest_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\accesstest_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\accesstest_accesstest.obj: .\accesstest.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(ACCESSTEST_CXXFLAGS) .\accesstest.cpp
 | 
			
		||||
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
    #include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,243 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
ANITEST_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
ANITEST_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\anitest_anitest.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\anitest.exe catalog
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\anitest.exe del $(OBJS)\anitest.exe
 | 
			
		||||
	-if exist $(OBJS)\anitest.tds del $(OBJS)\anitest.tds
 | 
			
		||||
	-if exist $(OBJS)\anitest.ilc del $(OBJS)\anitest.ilc
 | 
			
		||||
	-if exist $(OBJS)\anitest.ild del $(OBJS)\anitest.ild
 | 
			
		||||
	-if exist $(OBJS)\anitest.ilf del $(OBJS)\anitest.ilf
 | 
			
		||||
	-if exist $(OBJS)\anitest.ils del $(OBJS)\anitest.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\anitest.exe: $(ANITEST_OBJECTS)  $(OBJS)\anitest_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(ANITEST_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\anitest_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
catalog: 
 | 
			
		||||
	if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
	for %f in (throbber.gif hourglass.ani) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
 | 
			
		||||
 | 
			
		||||
$(OBJS)\anitest_anitest.obj: .\anitest.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(ANITEST_CXXFLAGS) .\anitest.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\anitest_sample.res: .\..\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\sample.rc
 | 
			
		||||
 | 
			
		||||
@@ -1,202 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
ARCHIVE_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -DwxUSE_GUI=0 $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
ARCHIVE_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\archive_archive.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\archive.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\archive.exe del $(OBJS)\archive.exe
 | 
			
		||||
	-if exist $(OBJS)\archive.tds del $(OBJS)\archive.tds
 | 
			
		||||
	-if exist $(OBJS)\archive.ilc del $(OBJS)\archive.ilc
 | 
			
		||||
	-if exist $(OBJS)\archive.ild del $(OBJS)\archive.ild
 | 
			
		||||
	-if exist $(OBJS)\archive.ilf del $(OBJS)\archive.ilf
 | 
			
		||||
	-if exist $(OBJS)\archive.ils del $(OBJS)\archive.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\archive.exe: $(ARCHIVE_OBJECTS)
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0x32.obj $(ARCHIVE_OBJECTS),$@,, $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,,
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\archive_archive.obj: .\archive.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(ARCHIVE_CXXFLAGS) .\archive.cpp
 | 
			
		||||
 | 
			
		||||
@@ -11,9 +11,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
    #include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -11,9 +11,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,243 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
ARTTEST_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
ARTTEST_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\arttest_arttest.obj \
 | 
			
		||||
	$(OBJS)\arttest_artbrows.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\arttest.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\arttest.exe del $(OBJS)\arttest.exe
 | 
			
		||||
	-if exist $(OBJS)\arttest.tds del $(OBJS)\arttest.tds
 | 
			
		||||
	-if exist $(OBJS)\arttest.ilc del $(OBJS)\arttest.ilc
 | 
			
		||||
	-if exist $(OBJS)\arttest.ild del $(OBJS)\arttest.ild
 | 
			
		||||
	-if exist $(OBJS)\arttest.ilf del $(OBJS)\arttest.ilf
 | 
			
		||||
	-if exist $(OBJS)\arttest.ils del $(OBJS)\arttest.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\arttest.exe: $(ARTTEST_OBJECTS)  $(OBJS)\arttest_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(ARTTEST_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\arttest_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\arttest_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\arttest_arttest.obj: .\arttest.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(ARTTEST_CXXFLAGS) .\arttest.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\arttest_artbrows.obj: .\artbrows.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(ARTTEST_CXXFLAGS) .\artbrows.cpp
 | 
			
		||||
 | 
			
		||||
@@ -11,9 +11,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#include "wx/app.h"
 | 
			
		||||
#include "wx/grid.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,251 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
AUIDEMO_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
AUIDEMO_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\auidemo_auidemo.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_AUI_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_HTML_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_XML_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\auidemo.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\auidemo.exe del $(OBJS)\auidemo.exe
 | 
			
		||||
	-if exist $(OBJS)\auidemo.tds del $(OBJS)\auidemo.tds
 | 
			
		||||
	-if exist $(OBJS)\auidemo.ilc del $(OBJS)\auidemo.ilc
 | 
			
		||||
	-if exist $(OBJS)\auidemo.ild del $(OBJS)\auidemo.ild
 | 
			
		||||
	-if exist $(OBJS)\auidemo.ilf del $(OBJS)\auidemo.ilf
 | 
			
		||||
	-if exist $(OBJS)\auidemo.ils del $(OBJS)\auidemo.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\auidemo.exe: $(AUIDEMO_OBJECTS)  $(OBJS)\auidemo_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(AUIDEMO_OBJECTS),$@,, $(__WXLIB_AUI_p)  $(__WXLIB_HTML_p)  $(__WXLIB_CORE_p)  $(__WXLIB_XML_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\auidemo_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\auidemo_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\auidemo_auidemo.obj: .\auidemo.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(AUIDEMO_CXXFLAGS) .\auidemo.cpp
 | 
			
		||||
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
 
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
CALENDAR_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
CALENDAR_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\calendar_calendar.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\calendar.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\calendar.exe del $(OBJS)\calendar.exe
 | 
			
		||||
	-if exist $(OBJS)\calendar.tds del $(OBJS)\calendar.tds
 | 
			
		||||
	-if exist $(OBJS)\calendar.ilc del $(OBJS)\calendar.ilc
 | 
			
		||||
	-if exist $(OBJS)\calendar.ild del $(OBJS)\calendar.ild
 | 
			
		||||
	-if exist $(OBJS)\calendar.ilf del $(OBJS)\calendar.ilf
 | 
			
		||||
	-if exist $(OBJS)\calendar.ils del $(OBJS)\calendar.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\calendar.exe: $(CALENDAR_OBJECTS)  $(OBJS)\calendar_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(CALENDAR_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\calendar_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\calendar_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\calendar_calendar.obj: .\calendar.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(CALENDAR_CXXFLAGS) .\calendar.cpp
 | 
			
		||||
 | 
			
		||||
@@ -11,9 +11,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all <standard< wxWidgets headers
 | 
			
		||||
 
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
CARET_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
CARET_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\caret_caret.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\caret.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\caret.exe del $(OBJS)\caret.exe
 | 
			
		||||
	-if exist $(OBJS)\caret.tds del $(OBJS)\caret.tds
 | 
			
		||||
	-if exist $(OBJS)\caret.ilc del $(OBJS)\caret.ilc
 | 
			
		||||
	-if exist $(OBJS)\caret.ild del $(OBJS)\caret.ild
 | 
			
		||||
	-if exist $(OBJS)\caret.ilf del $(OBJS)\caret.ilf
 | 
			
		||||
	-if exist $(OBJS)\caret.ils del $(OBJS)\caret.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\caret.exe: $(CARET_OBJECTS)  $(OBJS)\caret_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(CARET_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\caret_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\caret_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\caret_caret.obj: .\caret.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(CARET_CXXFLAGS) .\caret.cpp
 | 
			
		||||
 | 
			
		||||
@@ -9,9 +9,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all "standard" wxWidgets headers)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
CLIPBOARD_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
CLIPBOARD_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\clipboard_clipboard.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\clipboard.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\clipboard.exe del $(OBJS)\clipboard.exe
 | 
			
		||||
	-if exist $(OBJS)\clipboard.tds del $(OBJS)\clipboard.tds
 | 
			
		||||
	-if exist $(OBJS)\clipboard.ilc del $(OBJS)\clipboard.ilc
 | 
			
		||||
	-if exist $(OBJS)\clipboard.ild del $(OBJS)\clipboard.ild
 | 
			
		||||
	-if exist $(OBJS)\clipboard.ilf del $(OBJS)\clipboard.ilf
 | 
			
		||||
	-if exist $(OBJS)\clipboard.ils del $(OBJS)\clipboard.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\clipboard.exe: $(CLIPBOARD_OBJECTS)  $(OBJS)\clipboard_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(CLIPBOARD_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\clipboard_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\clipboard_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\clipboard_clipboard.obj: .\clipboard.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(CLIPBOARD_CXXFLAGS) .\clipboard.cpp
 | 
			
		||||
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
    #include "wx/log.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
COLLPANE_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
COLLPANE_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\collpane_collpane.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\collpane.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\collpane.exe del $(OBJS)\collpane.exe
 | 
			
		||||
	-if exist $(OBJS)\collpane.tds del $(OBJS)\collpane.tds
 | 
			
		||||
	-if exist $(OBJS)\collpane.ilc del $(OBJS)\collpane.ilc
 | 
			
		||||
	-if exist $(OBJS)\collpane.ild del $(OBJS)\collpane.ild
 | 
			
		||||
	-if exist $(OBJS)\collpane.ilf del $(OBJS)\collpane.ilf
 | 
			
		||||
	-if exist $(OBJS)\collpane.ils del $(OBJS)\collpane.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\collpane.exe: $(COLLPANE_OBJECTS)  $(OBJS)\collpane_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(COLLPANE_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\collpane_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\collpane_collpane.obj: .\collpane.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(COLLPANE_CXXFLAGS) .\collpane.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\collpane_sample.res: .\..\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\sample.rc
 | 
			
		||||
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all "standard" wxWidgets headers)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,243 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
COMBO_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
COMBO_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\combo_combo.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\combo.exe data
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\combo.exe del $(OBJS)\combo.exe
 | 
			
		||||
	-if exist $(OBJS)\combo.tds del $(OBJS)\combo.tds
 | 
			
		||||
	-if exist $(OBJS)\combo.ilc del $(OBJS)\combo.ilc
 | 
			
		||||
	-if exist $(OBJS)\combo.ild del $(OBJS)\combo.ild
 | 
			
		||||
	-if exist $(OBJS)\combo.ilf del $(OBJS)\combo.ilf
 | 
			
		||||
	-if exist $(OBJS)\combo.ils del $(OBJS)\combo.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\combo.exe: $(COMBO_OBJECTS)  $(OBJS)\combo_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(COMBO_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\combo_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
data: 
 | 
			
		||||
	if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
	for %f in (dropbuth.png dropbutn.png dropbutp.png) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
 | 
			
		||||
 | 
			
		||||
$(OBJS)\combo_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\combo_combo.obj: .\combo.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(COMBO_CXXFLAGS) .\combo.cpp
 | 
			
		||||
 | 
			
		||||
@@ -17,9 +17,6 @@
 | 
			
		||||
// ----------------------------------------------------------------------------
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef  WX_PRECOMP
 | 
			
		||||
  #include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
CONFTEST_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
CONFTEST_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\conftest_conftest.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\conftest.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\conftest.exe del $(OBJS)\conftest.exe
 | 
			
		||||
	-if exist $(OBJS)\conftest.tds del $(OBJS)\conftest.tds
 | 
			
		||||
	-if exist $(OBJS)\conftest.ilc del $(OBJS)\conftest.ilc
 | 
			
		||||
	-if exist $(OBJS)\conftest.ild del $(OBJS)\conftest.ild
 | 
			
		||||
	-if exist $(OBJS)\conftest.ilf del $(OBJS)\conftest.ilf
 | 
			
		||||
	-if exist $(OBJS)\conftest.ils del $(OBJS)\conftest.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\conftest.exe: $(CONFTEST_OBJECTS)  $(OBJS)\conftest_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(CONFTEST_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\conftest_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\conftest_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\conftest_conftest.obj: .\conftest.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(CONFTEST_CXXFLAGS) .\conftest.cpp
 | 
			
		||||
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all "standard" wxWidgets headers)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,200 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
CONSOLE_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -DwxUSE_GUI=0 $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
CONSOLE_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\console_console.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_NET_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\console.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\console.exe del $(OBJS)\console.exe
 | 
			
		||||
	-if exist $(OBJS)\console.tds del $(OBJS)\console.tds
 | 
			
		||||
	-if exist $(OBJS)\console.ilc del $(OBJS)\console.ilc
 | 
			
		||||
	-if exist $(OBJS)\console.ild del $(OBJS)\console.ild
 | 
			
		||||
	-if exist $(OBJS)\console.ilf del $(OBJS)\console.ilf
 | 
			
		||||
	-if exist $(OBJS)\console.ils del $(OBJS)\console.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\console.exe: $(CONSOLE_OBJECTS)
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME) -ap $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0x32.obj $(CONSOLE_OBJECTS),$@,, $(__WXLIB_NET_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,,
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\console_console.obj: .\console.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(CONSOLE_CXXFLAGS) .\console.cpp
 | 
			
		||||
 | 
			
		||||
@@ -15,9 +15,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
    #include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,243 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
DATAVIEW_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
DATAVIEW_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\dataview_dataview.obj \
 | 
			
		||||
	$(OBJS)\dataview_mymodels.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\dataview.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\dataview.exe del $(OBJS)\dataview.exe
 | 
			
		||||
	-if exist $(OBJS)\dataview.tds del $(OBJS)\dataview.tds
 | 
			
		||||
	-if exist $(OBJS)\dataview.ilc del $(OBJS)\dataview.ilc
 | 
			
		||||
	-if exist $(OBJS)\dataview.ild del $(OBJS)\dataview.ild
 | 
			
		||||
	-if exist $(OBJS)\dataview.ilf del $(OBJS)\dataview.ilf
 | 
			
		||||
	-if exist $(OBJS)\dataview.ils del $(OBJS)\dataview.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dataview.exe: $(DATAVIEW_OBJECTS)  $(OBJS)\dataview_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(DATAVIEW_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\dataview_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dataview_dataview.obj: .\dataview.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DATAVIEW_CXXFLAGS) .\dataview.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dataview_mymodels.obj: .\mymodels.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DATAVIEW_CXXFLAGS) .\mymodels.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dataview_sample.res: .\..\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\sample.rc
 | 
			
		||||
 | 
			
		||||
@@ -12,9 +12,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
    #include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,247 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
DEBUGRPT_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
DEBUGRPT_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\debugrpt_debugrpt.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_QA_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_XML_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\debugrpt.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\debugrpt.exe del $(OBJS)\debugrpt.exe
 | 
			
		||||
	-if exist $(OBJS)\debugrpt.tds del $(OBJS)\debugrpt.tds
 | 
			
		||||
	-if exist $(OBJS)\debugrpt.ilc del $(OBJS)\debugrpt.ilc
 | 
			
		||||
	-if exist $(OBJS)\debugrpt.ild del $(OBJS)\debugrpt.ild
 | 
			
		||||
	-if exist $(OBJS)\debugrpt.ilf del $(OBJS)\debugrpt.ilf
 | 
			
		||||
	-if exist $(OBJS)\debugrpt.ils del $(OBJS)\debugrpt.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\debugrpt.exe: $(DEBUGRPT_OBJECTS)  $(OBJS)\debugrpt_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(DEBUGRPT_OBJECTS),$@,, $(__WXLIB_QA_p)  $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_XML_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\debugrpt_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\debugrpt_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\debugrpt_debugrpt.obj: .\debugrpt.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DEBUGRPT_CXXFLAGS) .\debugrpt.cpp
 | 
			
		||||
 | 
			
		||||
@@ -12,9 +12,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
#pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
#include "wx/wx.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,263 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
DIALOGS_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
DIALOGS_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\dialogs_dialogs.obj \
 | 
			
		||||
	$(____GENERIC_DIALOGS_IN_NATIVE_BUILDS_FILENAMES_OBJECTS)
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0" && "$(WXUNIV)" == "0"
 | 
			
		||||
____GENERIC_DIALOGS_IN_NATIVE_BUILDS_FILENAMES_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\dialogs_colrdlgg.obj \
 | 
			
		||||
	$(OBJS)\dialogs_dirdlgg.obj \
 | 
			
		||||
	$(OBJS)\dialogs_filedlgg.obj \
 | 
			
		||||
	$(OBJS)\dialogs_fontdlgg.obj
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\dialogs.exe data
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\dialogs.exe del $(OBJS)\dialogs.exe
 | 
			
		||||
	-if exist $(OBJS)\dialogs.tds del $(OBJS)\dialogs.tds
 | 
			
		||||
	-if exist $(OBJS)\dialogs.ilc del $(OBJS)\dialogs.ilc
 | 
			
		||||
	-if exist $(OBJS)\dialogs.ild del $(OBJS)\dialogs.ild
 | 
			
		||||
	-if exist $(OBJS)\dialogs.ilf del $(OBJS)\dialogs.ilf
 | 
			
		||||
	-if exist $(OBJS)\dialogs.ils del $(OBJS)\dialogs.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dialogs.exe: $(DIALOGS_OBJECTS)  $(OBJS)\dialogs_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(DIALOGS_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\dialogs_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
data: 
 | 
			
		||||
	if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
	for %f in (tips.txt) do if not exist $(OBJS)\%f copy .\%f $(OBJS)
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dialogs_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dialogs_dialogs.obj: .\dialogs.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DIALOGS_CXXFLAGS) .\dialogs.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dialogs_colrdlgg.obj: .\..\..\src\generic\colrdlgg.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DIALOGS_CXXFLAGS) .\..\..\src\generic\colrdlgg.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dialogs_dirdlgg.obj: .\..\..\src\generic\dirdlgg.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DIALOGS_CXXFLAGS) .\..\..\src\generic\dirdlgg.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dialogs_filedlgg.obj: .\..\..\src\generic\filedlgg.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DIALOGS_CXXFLAGS) .\..\..\src\generic\filedlgg.cpp
 | 
			
		||||
 | 
			
		||||
$(OBJS)\dialogs_fontdlgg.obj: .\..\..\src\generic\fontdlgg.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DIALOGS_CXXFLAGS) .\..\..\src\generic\fontdlgg.cpp
 | 
			
		||||
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
NETTEST_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
NETTEST_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\nettest_nettest.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\nettest.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\nettest.exe del $(OBJS)\nettest.exe
 | 
			
		||||
	-if exist $(OBJS)\nettest.tds del $(OBJS)\nettest.tds
 | 
			
		||||
	-if exist $(OBJS)\nettest.ilc del $(OBJS)\nettest.ilc
 | 
			
		||||
	-if exist $(OBJS)\nettest.ild del $(OBJS)\nettest.ild
 | 
			
		||||
	-if exist $(OBJS)\nettest.ilf del $(OBJS)\nettest.ilf
 | 
			
		||||
	-if exist $(OBJS)\nettest.ils del $(OBJS)\nettest.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\nettest.exe: $(NETTEST_OBJECTS)  $(OBJS)\nettest_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(NETTEST_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\nettest_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\nettest_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\nettest_nettest.obj: .\nettest.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(NETTEST_CXXFLAGS) .\nettest.cpp
 | 
			
		||||
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// For compilers that support precompilation, includes "wx/wx.h".
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers (this file is usually all you
 | 
			
		||||
// need because it includes almost all "standard" wxWidgets headers
 | 
			
		||||
 
 | 
			
		||||
@@ -19,9 +19,6 @@
 | 
			
		||||
// for compilers that support precompilation, includes "wx/wx.h"
 | 
			
		||||
#include "wx/wxprec.h"
 | 
			
		||||
 | 
			
		||||
#ifdef __BORLANDC__
 | 
			
		||||
    #pragma hdrstop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// for all others, include the necessary headers explicitly
 | 
			
		||||
#ifndef WX_PRECOMP
 | 
			
		||||
 
 | 
			
		||||
@@ -1,239 +0,0 @@
 | 
			
		||||
# =========================================================================
 | 
			
		||||
#     This makefile was generated by
 | 
			
		||||
#     Bakefile 0.2.12 (http://www.bakefile.org)
 | 
			
		||||
#     Do not modify, all changes will be overwritten!
 | 
			
		||||
# =========================================================================
 | 
			
		||||
 | 
			
		||||
.autodepend
 | 
			
		||||
 | 
			
		||||
!ifndef BCCDIR
 | 
			
		||||
!ifndef MAKEDIR
 | 
			
		||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
 | 
			
		||||
!endif
 | 
			
		||||
BCCDIR = $(MAKEDIR)\..
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
!include ../../build/msw/config.bcc
 | 
			
		||||
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
# Do not modify the rest of this file!
 | 
			
		||||
# -------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Variables: ###
 | 
			
		||||
 | 
			
		||||
WX_RELEASE_NODOT = 31
 | 
			
		||||
COMPILER_PREFIX = bcc
 | 
			
		||||
OBJS = \
 | 
			
		||||
	$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
 | 
			
		||||
LIBDIRNAME = \
 | 
			
		||||
	.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(LIBTYPE_SUFFIX)$(CFG)
 | 
			
		||||
SETUPHDIR = \
 | 
			
		||||
	$(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
 | 
			
		||||
DISPLAY_CXXFLAGS = $(__RUNTIME_LIBS_7) -I$(BCCDIR)\include $(__DEBUGINFO) \
 | 
			
		||||
	$(__OPTIMIZEFLAG_2) $(__THREADSFLAG_6) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
 | 
			
		||||
	$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
 | 
			
		||||
	$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
 | 
			
		||||
	-I$(SETUPHDIR) -I.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_p) -I. \
 | 
			
		||||
	$(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(CPPFLAGS) $(CXXFLAGS)
 | 
			
		||||
DISPLAY_OBJECTS =  \
 | 
			
		||||
	$(OBJS)\display_display.obj
 | 
			
		||||
 | 
			
		||||
### Conditionally set variables: ###
 | 
			
		||||
 | 
			
		||||
!if "$(USE_GUI)" == "0"
 | 
			
		||||
PORTNAME = base
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
PORTNAME = msw$(TOOLKIT_VERSION)
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(OFFICIAL_BUILD)" == "1"
 | 
			
		||||
COMPILER_VERSION = ERROR-COMPILER-VERSION-MUST-BE-SET-FOR-OFFICIAL-BUILD
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
WXDEBUGFLAG = d
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
WXUNICODEFLAG = u
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
WXUNIVNAME = univ
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
WXDLLFLAG = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "0"
 | 
			
		||||
LIBTYPE_SUFFIX = lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
LIBTYPE_SUFFIX = dll
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
EXTRALIBS_FOR_BASE = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
EXTRALIBS_FOR_BASE =   
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -Od
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__OPTIMIZEFLAG_2 = -O2
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_5 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_5 = mt
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREADSFLAG_6 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "1"
 | 
			
		||||
__THREADSFLAG_6 = -tWM
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_7 = -tWR
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_7 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "dynamic"
 | 
			
		||||
__RUNTIME_LIBS_8 = i
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(RUNTIME_LIBS)" == "static"
 | 
			
		||||
__RUNTIME_LIBS_8 = 
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(WXUNIV)" == "1"
 | 
			
		||||
__WXUNIV_DEFINE_p_1 = -d__WXUNIVERSAL__
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_FLAG)" == "0"
 | 
			
		||||
__DEBUG_DEFINE_p_1 = -dwxDEBUG_LEVEL=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p = -DNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release"
 | 
			
		||||
__NDEBUG_DEFINE_p_1 = -dNDEBUG
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_EXCEPTIONS)" == "0"
 | 
			
		||||
__EXCEPTIONS_DEFINE_p_1 = -dwxNO_EXCEPTIONS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p = -DwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_RTTI)" == "0"
 | 
			
		||||
__RTTI_DEFINE_p_1 = -dwxNO_RTTI
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p = -DwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_THREADS)" == "0"
 | 
			
		||||
__THREAD_DEFINE_p_1 = -dwxNO_THREADS
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p = -DwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p = -D_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "0"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -dwxUSE_UNICODE=0
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(UNICODE)" == "1"
 | 
			
		||||
__UNICODE_DEFINE_p_1 = -d_UNICODE
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_p = -I$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_INCLUDEDIR_FILENAMES_1_p = -i$(CAIRO_ROOT)\include\cairo
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p = -DWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(SHARED)" == "1"
 | 
			
		||||
__DLLFLAG_p_1 = -dWXUSINGDLL
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_CORE_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "0"
 | 
			
		||||
__WXLIB_BASE_p = \
 | 
			
		||||
	wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1"
 | 
			
		||||
__WXLIB_MONO_p = \
 | 
			
		||||
	wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(MONOLITHIC)" == "1" && "$(USE_STC)" == "1"
 | 
			
		||||
__LIB_SCINTILLA_IF_MONO_p = wxscintilla$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_TIFF_p = wxtiff$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_JPEG_p = wxjpeg$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_GUI)" == "1"
 | 
			
		||||
__LIB_PNG_p = wxpng$(WXDEBUGFLAG).lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
__CAIRO_LIB_p = cairo.lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(USE_CAIRO)" == "1"
 | 
			
		||||
____CAIRO_LIBDIR_FILENAMES_p = -L$(CAIRO_ROOT)\lib
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "debug" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(BUILD)" == "release" && "$(DEBUG_INFO)" == "default"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "0"
 | 
			
		||||
__DEBUGINFO = -v-
 | 
			
		||||
!endif
 | 
			
		||||
!if "$(DEBUG_INFO)" == "1"
 | 
			
		||||
__DEBUGINFO = -v
 | 
			
		||||
!endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)
 | 
			
		||||
$(OBJS):
 | 
			
		||||
	-if not exist $(OBJS) mkdir $(OBJS)
 | 
			
		||||
 | 
			
		||||
### Targets: ###
 | 
			
		||||
 | 
			
		||||
all: $(OBJS)\display.exe
 | 
			
		||||
 | 
			
		||||
clean: 
 | 
			
		||||
	-if exist $(OBJS)\*.obj del $(OBJS)\*.obj
 | 
			
		||||
	-if exist $(OBJS)\*.res del $(OBJS)\*.res
 | 
			
		||||
	-if exist $(OBJS)\*.csm del $(OBJS)\*.csm
 | 
			
		||||
	-if exist $(OBJS)\display.exe del $(OBJS)\display.exe
 | 
			
		||||
	-if exist $(OBJS)\display.tds del $(OBJS)\display.tds
 | 
			
		||||
	-if exist $(OBJS)\display.ilc del $(OBJS)\display.ilc
 | 
			
		||||
	-if exist $(OBJS)\display.ild del $(OBJS)\display.ild
 | 
			
		||||
	-if exist $(OBJS)\display.ilf del $(OBJS)\display.ilf
 | 
			
		||||
	-if exist $(OBJS)\display.ils del $(OBJS)\display.ils
 | 
			
		||||
 | 
			
		||||
$(OBJS)\display.exe: $(DISPLAY_OBJECTS)  $(OBJS)\display_sample.res
 | 
			
		||||
	ilink32 -Tpe -q  -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO)  -L$(LIBDIRNAME)  -aa $(____CAIRO_LIBDIR_FILENAMES_p) $(LDFLAGS) @&&|
 | 
			
		||||
	c0w32.obj $(DISPLAY_OBJECTS),$@,, $(__WXLIB_CORE_p)  $(__WXLIB_BASE_p)  $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p)   wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_5)$(__RUNTIME_LIBS_8).lib,, $(OBJS)\display_sample.res
 | 
			
		||||
|
 | 
			
		||||
 | 
			
		||||
$(OBJS)\display_sample.res: .\..\..\samples\sample.rc
 | 
			
		||||
	brcc32 -32 -r -fo$@ -i$(BCCDIR)\include    -d__WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) -i$(SETUPHDIR) -i.\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) -i. $(__DLLFLAG_p_1) -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -i.\..\..\samples -i$(BCCDIR)\include\windows\sdk -dNOPCH .\..\..\samples\sample.rc
 | 
			
		||||
 | 
			
		||||
$(OBJS)\display_display.obj: .\display.cpp
 | 
			
		||||
	$(CXX) -q -c -P -o$@ $(DISPLAY_CXXFLAGS) .\display.cpp
 | 
			
		||||
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user