Skip to content
Snippets Groups Projects
Commit 3d813204 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

Instead of exiting with error lets set BCCDIR self.

parent 308db9d7
No related branches found
No related tags found
No related merge requests found
......@@ -4,16 +4,12 @@
#
# 'lib' directory
#
# 'BCCDIR' has to be set up to point to the base directory
# of the compiler, i.e. SET BCCDIR = c:\Borland\BCC55
# where c:\Borland\BCC55 is the compiler is installed
#
# Written by Jaepil Kim, pit@paradise.net.nz
############################################################
# Check if BCCDIR is set.
!if !$d(BCCDIR)
!error BCCDIR isn't defined
# Check if BCCDIR is set and guess if not set.
!ifndef BCCDIR
BCCDIR = $(MAKEDIR)/..
!endif
# Edit the path below to point to the base of your Zlib sources.
......
......@@ -4,16 +4,12 @@
#
# 'src' directory
#
# 'BCCDIR' has to be set up to point to the base directory
# of the compiler, i.e. SET BCCDIR = c:\Borland\BCC55
# where c:\Borland\BCC55 is the compiler is installed
#
# Written by Jaepil Kim, pit@paradise.net.nz
############################################################
# Check if BCCDIR is set.
!if !$d(BCCDIR)
!error BCCDIR isn't defined
# Check if BCCDIR is set and guess if not set.
!ifndef 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