[llvm-commits] CVS: llvm/Makefile.rules
Chris Lattner
lattner at cs.uiuc.edu
Tue Jun 1 14:10:01 PDT 2004
Changes in directory llvm:
Makefile.rules updated: 1.184 -> 1.185
---
Log message:
Make tool names end with .exe on windows. This isn't needed to run the
tools, but is required for rules that depend on the executables, e.g.:
a: b $(LLVMAS)
---
Diffs of the changes: (+4 -4)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.184 llvm/Makefile.rules:1.185
--- llvm/Makefile.rules:1.184 Fri May 21 18:21:11 2004
+++ llvm/Makefile.rules Tue Jun 1 14:05:53 2004
@@ -244,10 +244,10 @@
#--------------------------------------------------------------------------
# Utilities used while building the LLVM tree, which live in the utils dir
#
-BURG := $(LLVMTOOLCURRENT)/burg
+BURG := $(LLVMTOOLCURRENT)/burg$(EXEEXT)
RunBurg := $(BURG) $(BURG_OPTS)
-TBLGEN := $(LLVMTOOLCURRENT)/tblgen
-LGCCLDPROG := $(LLVMTOOLCURRENT)/gccld
+TBLGEN := $(LLVMTOOLCURRENT)/tblgen$(EXEEXT)
+LGCCLDPROG := $(LLVMTOOLCURRENT)/gccld$(EXEEXT)
#--------------------------------------------------------------------------
# The LLVM GCC front-end in C and C++ flavors
@@ -259,7 +259,7 @@
# Some of the compiled LLVM tools which are used for compilation of runtime
# libraries.
#
-LLVMAS := $(LLVMTOOLCURRENT)/llvm-as
+LLVMAS := $(LLVMTOOLCURRENT)/llvm-as$(EXEEXT)
###########################################################################
More information about the llvm-commits
mailing list