diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-05-16 14:19:30 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-05-16 14:19:30 +0000 |
commit | 0e1c193bc1291c2d336ca1aa1859a4f5574a369f (patch) | |
tree | 4506307f1ab0b4b592e5058bbe13ef434b4dc179 /include/makeinclude/platform_linux_borland.GNU | |
parent | d7e36389a2daee91dd34cf198a5c7b4e2e4ab9be (diff) | |
download | ATCD-0e1c193bc1291c2d336ca1aa1859a4f5574a369f.tar.gz |
ChangeLogTag: Mon May 16 14:05:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'include/makeinclude/platform_linux_borland.GNU')
-rw-r--r-- | include/makeinclude/platform_linux_borland.GNU | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/include/makeinclude/platform_linux_borland.GNU b/include/makeinclude/platform_linux_borland.GNU index 2ff56d195b0..9fb27e6b89b 100644 --- a/include/makeinclude/platform_linux_borland.GNU +++ b/include/makeinclude/platform_linux_borland.GNU @@ -7,19 +7,10 @@ ifndef BCB BCB = /usr/local/kylix3 endif -ifndef exceptions - exceptions = 1 -endif -ifeq (,$(debug)) - debug = 1 -endif -ifeq (,$(optimize)) - optimize = 1 -endif - -ifeq (,$(threads)) - threads = 1 -endif +exceptions ?= 1 +debug ?= 1 +optimize ?= 1 +threads ?= 1 PLATFORM_TCL_CPPFLAGS=-I/usr/include/tcl8.4 PLATFORM_TCL_LIBS=-ltcl8.4 @@ -112,9 +103,9 @@ CCFLAGS += $(CFLAGS) BORLDFLAGS = -c -L$(LIBPATH):$(ACELIBPATH) -x -Gn -v BORINITEXEOBJ = borinit.o BORINITSHAREDOBJ = borinitso.o -BORSHAREDOBJ += libborcrtl.so libborstl.so libborunwind.so libc.so libm.so libdl.so +BORSHAREDOBJ += libborcrtl.so libborstl.so libborunwind.so libc.so libm.so libdl.so BOREXELIBS += crt1.o -LIBS += $(BORSHAREDOBJ) +LIBS += $(BORSHAREDOBJ) PRELINK= SOFLAGS= -Tpd $(BORLDFLAGS) |