[llvm-commits] CVS: llvm/Makefile.rules
John Criswell
criswell at cs.uiuc.edu
Thu Sep 11 10:17:02 PDT 2003
Changes in directory llvm:
Makefile.rules updated: 1.134 -> 1.135
---
Log message:
Removed the aposthrophes endings and the elipses suffixes from build output.
This makes the output more consistent, and I just find aposthrophes annoying.
:)
---
Diffs of the changes:
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.134 llvm/Makefile.rules:1.135
--- llvm/Makefile.rules:1.134 Wed Sep 10 14:37:51 2003
+++ llvm/Makefile.rules Thu Sep 11 10:15:53 2003
@@ -696,7 +696,7 @@
# FIXME. (f.e. char Buffer[10000] )
#
%.cpp: %.l
- @echo Flex\'ing $<...
+ @echo Flexing $<
$(VERB) $(FLEX) -t $< | \
$(SED) '/^find_rule/d' | \
$(SED) 's/void yyunput/inline void yyunput/' | \
@@ -711,7 +711,7 @@
%.c: %.y # Cancel built-in rules for yacc
%.h: %.y # Cancel built-in rules for yacc
%.cpp %.h : %.y
- @echo Bison\'ing $<...
+ @echo Bisoning $<
$(VERB) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
$(VERB) cmp -s $*.tab.c $*.cpp > /dev/null || ${MV} -f $*.tab.c $*.cpp
$(VERB) cmp -s $*.tab.h $*.h > /dev/null || ${MV} -f $*.tab.h $*.h
More information about the llvm-commits
mailing list