Skip to content
Snippets Groups Projects
Commit 5f7d3481 authored by Yang Tse's avatar Yang Tse
Browse files

build: BCC - recover lost functionality from commit 3d813204

Borland's $(MAKEDIR) expands to the path where make.exe is located,
use this feature to define BCCDIR when user has not defined BCCDIR.
parent 42f5e8a0
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,10 @@
# Written by Jaepil Kim, pit@paradise.net.nz
############################################################
# Check if BCCDIR is set.
!if !$d(BCCDIR)
!error BCCDIR not defined
# Borland's $(MAKEDIR) expands to the path where make.exe is located,
# use this feature to define BCCDIR when user has not defined BCCDIR.
!if "$(BCCDIR)" == ""
BCCDIR = $(MAKEDIR)\..
!endif
# Edit the path below to point to the base of your Zlib sources.
......
......@@ -10,9 +10,10 @@
# Written by Jaepil Kim, pit@paradise.net.nz
############################################################
# Check if BCCDIR is set.
!if !$d(BCCDIR)
!error BCCDIR not defined
# Borland's $(MAKEDIR) expands to the path where make.exe is located,
# use this feature to define BCCDIR when user has not defined BCCDIR.
!if "$(BCCDIR)" == ""
BCCDIR = $(MAKEDIR)\..
!endif
# Edit the path below to point to the base of your Zlib sources.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment