Define HOME if not alread defined.

This commit is contained in:
Janet B. Anderson
2002-02-15 15:33:59 +00:00
parent a06a26bf2d
commit 717384dbdb
4 changed files with 8 additions and 8 deletions

View File

@@ -2,9 +2,6 @@
# This file is maintained by the EPICS community.
# Sites may override these definitions in CONFIG_SITE.Borland
# Use std path variables from ms
HOME = $(HOMEDRIVE)$(HOMEPATH)
BORLAND_LIB = $(BORLAND)\\lib
BORLAND_INC = $(BORLAND)\\include
BORLAND_BIN = $(BORLAND)\\bin

View File

@@ -3,9 +3,6 @@
# This file is maintained by the EPICS community.
# Sites may override these definitions in CONFIG_SITE.WIN32
# Use std path variables from ms
HOME = $(HOMEDRIVE)$(HOMEPATH)
#
# You currently get Visual C++ even if you ask for GNU.
#

View File

@@ -14,6 +14,9 @@ ECHO=echo
WIND_HOST_TYPE = x86-win32
# Use std path variables from ms
# Does not work if using cygwin make
# because HOME is always defined
ifndef HOME
HOME = $(HOMEDRIVE)$(HOMEPATH)
endif

View File

@@ -13,6 +13,9 @@ ECHO=echo
WIND_HOST_TYPE = x86-win32
# Use std path variables from ms
# Does not work if using cygwin make
# because HOME is always defined
ifndef HOME
HOME = $(HOMEDRIVE)$(HOMEPATH)
endif