[llvm-commits] CVS: llvm/Makefile.common
Chris Lattner
lattner at cs.uiuc.edu
Thu Jan 16 16:45:01 PST 2003
Changes in directory llvm:
Makefile.common updated: 1.72 -> 1.73
---
Log message:
Simplify and correct rules for building lex/yacc files. Make sure to delete
output upon make clean
---
Diffs of the changes:
Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.72 llvm/Makefile.common:1.73
--- llvm/Makefile.common:1.72 Thu Jan 16 15:06:18 2003
+++ llvm/Makefile.common Thu Jan 16 16:44:19 2003
@@ -451,6 +451,15 @@
$(BUILD_ROOT)/Debug/%.o: %.c $(BUILD_ROOT)/Debug/.dir
$(VERB) $(CompileCG) $< -o $@
+#
+# Rules for building lex/yacc files
+#
+LEX_FILES = $(filter %.l, $(Source))
+LEX_OUTPUT = $(LEX_FILES:%.l=%.cpp)
+YACC_FILES = $(filter %.y, $(Source))
+YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
+.PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT)
+
# Create a .cpp source file from a flex input file... this uses sed to cut down
# on the warnings emited by GCC...
%.cpp: %.l
@@ -459,13 +468,13 @@
# Rule for building the bison parsers...
%.cpp %.h : %.y
- $(VERB) $(BISON) -v -d -p $(<:%Parser.y=%) $(basename $@).y
- $(VERB) mv -f $(basename $@).tab.c $(basename $@).cpp
- $(VERB) mv -f $(basename $@).tab.h $(basename $@).h
+ $(VERB) $(BISON) -v -d -p $(<:%Parser.y=%) $*.y
+ $(VERB) mv -f $*.tab.c $*.cpp
+ $(VERB) mv -f $*.tab.h $*.h
# To create the directories...
%/.dir:
- $(VERB) mkdir -p $(@D)
+ $(VERB) mkdir -p $*
@date > $@
# To create postscript files from dot files...
@@ -476,6 +485,7 @@
clean::
$(VERB) rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Profile $(BUILD_ROOT)/Depend
$(VERB) rm -f core core.[0-9][0-9]* *.o *.d *.so *~ *.flc
+ $(VERB) rm -f $(LEX_OUTPUT) $(YACC_OUTPUT)
# If dependancies were generated for the file that included this file,
# include the dependancies now...
More information about the llvm-commits
mailing list