[llvm-commits] CVS: llvm/test/Programs/MultiSource/Makefile.multisrc
Brian Gaeke
gaeke at cs.uiuc.edu
Tue Jan 13 15:58:02 PST 2004
Changes in directory llvm/test/Programs/MultiSource:
Makefile.multisrc updated: 1.38 -> 1.39
---
Log message:
Use LLVMAS instead of LAS.
---
Diffs of the changes: (+2 -4)
Index: llvm/test/Programs/MultiSource/Makefile.multisrc
diff -u llvm/test/Programs/MultiSource/Makefile.multisrc:1.38 llvm/test/Programs/MultiSource/Makefile.multisrc:1.39
--- llvm/test/Programs/MultiSource/Makefile.multisrc:1.38 Tue Oct 21 14:54:00 2003
+++ llvm/test/Programs/MultiSource/Makefile.multisrc Tue Jan 13 15:56:51 2004
@@ -45,9 +45,8 @@
# Raw bytecode files are files created by simply linking the output of the GCC
# frontend without running gccas.
#
-Output/%.rbc: Output/%.ll $(LAS)
- $(LAS) -f $< -o - | $(LOPT) -f -q -funcresolve -o $@
-
+Output/%.rbc: Output/%.ll $(LLVMAS)
+ $(LLVMAS) -f $< -o - | $(LOPT) -f -q -funcresolve -o $@
ifndef USE_PRECOMPILED_BYTECODE
@@ -65,4 +64,3 @@
Output/%.native: $(NObjects)
$(CC) -o $@ $(NObjects) $(LDFLAGS) $(CFLAGS)
-
More information about the llvm-commits
mailing list