summaryrefslogtreecommitdiffstats
path: root/Source/Makefile.borland
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-11-29 14:22:21 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-11-29 14:22:21 (GMT)
commit765934fea96ccc9125bba090ad50a1569a595c77 (patch)
treeb04b00eef2cf4c2851dc8e9a162cbfbe87e08b3e /Source/Makefile.borland
parent15805d260e099e356acab9378c9c3e847348c4ab (diff)
downloadCMake-765934fea96ccc9125bba090ad50a1569a595c77.zip
CMake-765934fea96ccc9125bba090ad50a1569a595c77.tar.gz
CMake-765934fea96ccc9125bba090ad50a1569a595c77.tar.bz2
add bootstrap makefile for borland compiler
Diffstat (limited to 'Source/Makefile.borland')
-rw-r--r--Source/Makefile.borland42
1 files changed, 42 insertions, 0 deletions
diff --git a/Source/Makefile.borland b/Source/Makefile.borland
new file mode 100644
index 0000000..4c8b8a0
--- /dev/null
+++ b/Source/Makefile.borland
@@ -0,0 +1,42 @@
+# bootstrap makefile for borland
+# to build make sure borland make and bcc32 are in your path and
+# bcc32 works from the command line (i.e. bcc32.cfg and ilink32.cfg are
+# in place and working.)
+# then just run make -f Makefile.borland
+#
+
+# Rule to build cxx file(s)
+.cxx.obj:
+ bcc32 -Pcxx -c -DCMAKE_ROOT_DIR='"."' {$< }
+
+
+OBJS = \
+cmake.obj \
+cmakemain.obj \
+cmMakeDepend.obj \
+cmMakefile.obj \
+cmMakefileGenerator.obj \
+cmRegularExpression.obj \
+cmSourceFile.obj \
+cmSystemTools.obj \
+cmDirectory.obj \
+cmUnixMakefileGenerator.obj \
+cmMSProjectGenerator.obj \
+cmDSPWriter.obj \
+cmDSWWriter.obj \
+cmNMakeMakefileGenerator.obj \
+cmBorlandMakefileGenerator2.obj \
+cmBorlandMakefileGenerator.obj \
+cmCommands.obj \
+cmTarget.obj \
+cmCustomCommand.obj \
+cmCacheManager.obj \
+cmCableClassSet.obj \
+cmListFileCache.obj \
+cmSourceGroup.obj
+
+cmake: ${OBJS}
+ bcc32 -ecmake ${OBJS}
+
+
+