forked from hubei/open-watcom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setvars.sh
40 lines (29 loc) · 1.29 KB
/
setvars.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#set +v
# *****************************************************************
# setvars - Linux version
# *****************************************************************
# NOTE: Do not use this script directly, but copy it and
# modify it as necessary for your own use!!
REM Setup environment variables for Git
# root of source tree
export OWROOT=`cd \`dirname -- $0\` && pwd`
# Change this to point to an existing Watcom compiler (if applicable)
export WATCOM=$OWROOT/rel2
# Change this to the PATH required by GhostScript for PDF creation on used host OS (optional)
export GHOSTSCRIPTPATH=/usr/bin
# Set this variable to 1 to get debug build
export DEBUG_BUILD=0
# Set this variable to 1 to get default windowing support in clib
export DEFAULT_WINDOWING=0
# Set this variable to 0 to suppress documentation build
export DOC_BUILD=0 # Documentation building uses DOS programs.
# Documentation related variables - none likely to work in Linux
# set appropriate variables to point to Windows help compilers which you have installed
# export WIN95HC=hcrtf
# export HHC=hhc
# Subdirectory to be used for bootstrapping
export OBJDIR=bootstrp
# Subdirectory to be used for building prerequisite utilities
export PREOBJDIR=prebuild
# Invoke the script for the common environment
. $OWROOT/cmnvars.sh