Subversion Repositories DevTools

Rev

Rev 289 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 289 Rev 295
Line 19... Line 19...
19
#
19
#
20
#   NOTE: Borland does not like paths this spaces
20
#   NOTE: Borland does not like paths this spaces
21
#         Use Short Filenames.
21
#         Use Short Filenames.
22
#         The following guess may not be correct
22
#         The following guess may not be correct
23
#
23
#
24
DELPHI7       ?= c:\PROGRA~1\Borland\Delphi7
24
DELPHI7       ?= c:/PROGRA~1/Borland/Delphi7
-
 
25
WINDIR        ?= c:/WINDOWS
25
export DELPHI7
26
export DELPHI7
26
 
27
 
27
ifndef GBE_NOTOOLSTEST
28
ifndef GBE_NOTOOLSTEST
28
    ifneq (,$(findstring $(space),$(DELPHI7)))
29
    ifneq (,$(findstring $(space),$(DELPHI7)))
29
        $(error ERROR The path to the Borland Compiler contains spaces. This will not work)
30
        $(error ERROR The path to the Borland Compiler contains spaces. This will not work)
Line 43... Line 44...
43
#   Setup PATH
44
#   Setup PATH
44
#   Ensure that we can find the compiler and tools
45
#   Ensure that we can find the compiler and tools
45
#
46
#
46
DELPHI7_PATH := $(DELPHI7)\BIN
47
DELPHI7_PATH := $(DELPHI7)\BIN
47
 
48
 
-
 
49
#
-
 
50
#   Following paths are only required for building
-
 
51
#   .DLL's with .LIB export libraries
-
 
52
#
-
 
53
BCB_IMPDEF_PATH := c:/BCB6/CBuilder6/Bin
-
 
54
MS_LINK_PATH := c:/Program Files/Microsoft Visual Studio/VC98/Bin
-
 
55
DELPHI7_PATH := $(DELPHI7_PATH);$(BCB_IMPDEF_PATH)
-
 
56
DELPHI7_PATH := $(DELPHI7_PATH);$(MS_LINK_PATH)
-
 
57
DELPHI7_PATH := $(DELPHI7_PATH);c:/Program Files/Microsoft Visual Studio/Common/MSDev98/Bin
-
 
58
 
-
 
59
 
48
ifeq "$(findstring $(DELPHI7_PATH),$(PATH))" ""
60
ifeq "$(findstring $(DELPHI7_PATH),$(PATH))" ""
49
PATH    := $(DELPHI7_PATH);$(PATH)
61
PATH    := $(DELPHI7_PATH);$(PATH)
50
endif
62
endif
51
Path    := $(PATH)
63
Path    := $(PATH)
52
export PATH
64
export PATH