Internalize variable names to prevent recursive assignment. Cleanup docs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17359 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2004-10-30 09:19:36 +00:00
parent f1bd4b4215
commit cc2d1e25f3
9 changed files with 555 additions and 474 deletions

View File

@@ -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
$(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
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