[llvm-commits] CVS: llvm/utils/Burg/Makefile

Reid Spencer reid at x10sys.com
Thu Oct 28 09:48:24 PDT 2004



Changes in directory llvm/utils/Burg:

Makefile updated: 1.28 -> 1.29
---
Log message:

Fix the dependency of lex.o on gram.tab.h


---
Diffs of the changes:  (+1 -1)

Index: llvm/utils/Burg/Makefile
diff -u llvm/utils/Burg/Makefile:1.28 llvm/utils/Burg/Makefile:1.29
--- llvm/utils/Burg/Makefile:1.28	Mon Oct 25 22:12:11 2004
+++ llvm/utils/Burg/Makefile	Thu Oct 28 11:48:13 2004
@@ -17,7 +17,7 @@
 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






More information about the llvm-commits mailing list