summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-09-11 15:15:53 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-09-11 15:15:53 +0000
commitb2f76bf93e62eaf6956f423e68624e9318a91c07 (patch)
treedfa4ba6ad6d21532bcc8dd82e373964f1b1ab71a /Makefile.rules
parentd1a85a744cc1001c2b7fc37cf37aca266964f519 (diff)
downloadllvm-b2f76bf93e62eaf6956f423e68624e9318a91c07.tar.gz
llvm-b2f76bf93e62eaf6956f423e68624e9318a91c07.tar.bz2
llvm-b2f76bf93e62eaf6956f423e68624e9318a91c07.tar.xz
Removed the aposthrophes endings and the elipses suffixes from build output.
This makes the output more consistent, and I just find aposthrophes annoying. :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index a6ef003ac9..7aed7dc67d 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -696,7 +696,7 @@ YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
# 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 @@ YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
%.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