summaryrefslogtreecommitdiffstats
path: root/Source/cmBorlandMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-12-20 22:00:52 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-12-20 22:00:52 (GMT)
commit5291b7d0259ad7fbd5a463d940aadf0ea78a4de0 (patch)
tree3271f1523b8fea9aadcff2f3b07be763faf28322 /Source/cmBorlandMakefileGenerator.cxx
parent450b229c48b0674e3382dd21001544b78e0e8c43 (diff)
downloadCMake-5291b7d0259ad7fbd5a463d940aadf0ea78a4de0.zip
CMake-5291b7d0259ad7fbd5a463d940aadf0ea78a4de0.tar.gz
CMake-5291b7d0259ad7fbd5a463d940aadf0ea78a4de0.tar.bz2
ENH: fix for win98 check for directory existence
Diffstat (limited to 'Source/cmBorlandMakefileGenerator.cxx')
-rw-r--r--Source/cmBorlandMakefileGenerator.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmBorlandMakefileGenerator.cxx b/Source/cmBorlandMakefileGenerator.cxx
index d82ea61..ce70055 100644
--- a/Source/cmBorlandMakefileGenerator.cxx
+++ b/Source/cmBorlandMakefileGenerator.cxx
@@ -100,6 +100,11 @@ void cmBorlandMakefileGenerator::OutputMakeVariables(std::ostream& fout)
"CMAKE_SHLIB_SUFFIX = @CMAKE_SHLIB_SUFFIX@\n"
"CMAKE_LINKER_FLAGS = @CMAKE_LINKER_FLAGS@ @LINKER_BUILD_FLAGS@\n"
"CMAKE_CXX_FLAGS = -P @CMAKE_CXX_FLAGS@ @BUILD_FLAGS@\n"
+ "!IF \"$(OS)\" == \"Windows_NT\"\n"
+ "NULL=\n"
+ "!ELSE \n"
+ "NULL=nul\n"
+ "!ENDIF \n"
"RM = del\n";
std::string buildType = "CMAKE_CXX_FLAGS_";
buildType += m_Makefile->GetDefinition("CMAKE_BUILD_TYPE");