diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 16:48:13 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 16:48:13 +0000 |
commit | 4b04c8512575bf8cc27146de7d795c9848bcfffb (patch) | |
tree | ac620b3c8d01682772e81cf15d079246ea8f7f8d /llvm/utils/Burg | |
parent | 033d215ccb2b223b74cd8ad085a985f8c35dab27 (diff) | |
download | bcm5719-llvm-4b04c8512575bf8cc27146de7d795c9848bcfffb.tar.gz bcm5719-llvm-4b04c8512575bf8cc27146de7d795c9848bcfffb.zip |
Fix the dependency of lex.o on gram.tab.h
llvm-svn: 17320
Diffstat (limited to 'llvm/utils/Burg')
-rw-r--r-- | llvm/utils/Burg/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/Burg/Makefile b/llvm/utils/Burg/Makefile index bada1d63d36..f6eeb94d1ce 100644 --- a/llvm/utils/Burg/Makefile +++ b/llvm/utils/Burg/Makefile @@ -17,7 +17,7 @@ include $(LEVEL)/Makefile.common gram.tab.c gram.tab.h: gram.yc $(VERB) $(BISON) -o gram.tab.c -d $< -$(SourceDir)/lex.c: 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 |