diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-30 09:19:36 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-30 09:19:36 +0000 |
| commit | f88808ae4325474a5eaf22293cc12bee38a6b033 (patch) | |
| tree | 3297f24c42bc89562a34fc86d54f62923992d930 /llvm/utils/Burg | |
| parent | c76fef1248cfed0f0232a66c8fe7ef4815a09845 (diff) | |
| download | bcm5719-llvm-f88808ae4325474a5eaf22293cc12bee38a6b033.tar.gz bcm5719-llvm-f88808ae4325474a5eaf22293cc12bee38a6b033.zip | |
Internalize variable names to prevent recursive assignment. Cleanup docs.
llvm-svn: 17359
Diffstat (limited to 'llvm/utils/Burg')
| -rw-r--r-- | llvm/utils/Burg/Makefile | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/llvm/utils/Burg/Makefile b/llvm/utils/Burg/Makefile index f6eeb94d1ce..97750b2a582 100644 --- a/llvm/utils/Burg/Makefile +++ b/llvm/utils/Burg/Makefile @@ -8,31 +8,34 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = burg -BUILT_SOURCES = gram.tab.c +BUILT_SOURCES = gram.tab.c gram.tab.h EXTRA_DIST = gram.yc gram.tab.c gram.tab.h sample.gr include $(LEVEL)/Makefile.common gram.tab.c gram.tab.h: gram.yc - $(VERB) $(BISON) -o gram.tab.c -d $< + $(Verb) $(BISON) -o gram.tab.c -d $< -$(OBJDIR)/lex.o : gram.tab.h +$(ObjDir)/lex.o : gram.tab.h clean:: - $(VERB) $(RM) -rf gram.tab.h gram.tab.c core* *.aux *.log *.dvi sample sample.c tmp - -#$(BUILD_OBJ_DIR)/Release/lex.o $(BUILD_OBJ_DIR)/Profile/lex.o $(BUILD_OBJ_DIR)/Debug/lex.o: gram.tab.h + $(Verb) $(RM) -rf gram.tab.h gram.tab.c core* *.aux *.log *.dvi sample sample.c tmp doc.dvi: doc.tex - $(VERB) latex doc; latex doc - - -test:: $(TOOLEXENAME_G) sample.gr - $(TOOLEXENAME_G) -I <sample.gr >sample.c && $(CC) $(CFLAGS) -o sample sample.c && ./sample - $(TOOLEXENAME_G) -I sample.gr >tmp && cmp tmp sample.c - $(TOOLEXENAME_G) -I <sample.gr -o tmp && cmp tmp sample.c - $(TOOLEXENAME_G) -I sample.gr -o tmp && cmp tmp sample.c - $(TOOLEXENAME_G) -I -O0 <sample.gr >tmp && cmp tmp sample.c - $(TOOLEXENAME_G) -I -= <sample.gr >tmp && cmp tmp sample.c + $(Verb) latex doc; latex doc + +check:: $(ToolBuildPath) $(BUILD_SRC_DIR)/sample.gr + $(ToolBuildPath) -I <$(BUILD_SRC_DIR)/sample.gr >sample.c \ + && $(CC) $(CFLAGS) -o sample sample.c && ./sample + $(ToolBuildPath) -I $(BUILD_SRC_DIR)/sample.gr >tmp \ + && cmp tmp sample.c + $(ToolBuildPath) -I <$(BUILD_SRC_DIR)/sample.gr -o tmp \ + && cmp tmp sample.c + $(ToolBuildPath) -I $(BUILD_SRC_DIR)/sample.gr -o tmp \ + && cmp tmp sample.c + $(ToolBuildPath) -I -O0 <$(BUILD_SRC_DIR)/sample.gr >tmp \ + && cmp tmp sample.c + $(ToolBuildPath) -I -= <$(BUILD_SRC_DIR)/sample.gr >tmp \ + && cmp tmp sample.c $(RM) -f tmp sample.c |

