[llvm-commits] CVS: llvm/test/Programs/MultiSource/Burg/Makefile

John Criswell criswell at cs.uiuc.edu
Thu Sep 11 15:13:04 PDT 2003


Changes in directory llvm/test/Programs/MultiSource/Burg:

Makefile updated: 1.7 -> 1.8

---
Log message:

Allow VPATH to figure out where the prereqs and targets are located.



---
Diffs of the changes:

Index: llvm/test/Programs/MultiSource/Burg/Makefile
diff -u llvm/test/Programs/MultiSource/Burg/Makefile:1.7 llvm/test/Programs/MultiSource/Burg/Makefile:1.8
--- llvm/test/Programs/MultiSource/Burg/Makefile:1.7	Sat Sep  6 10:13:12 2003
+++ llvm/test/Programs/MultiSource/Burg/Makefile	Thu Sep 11 15:11:59 2003
@@ -22,13 +22,13 @@
 #	seems to work.  Ideally, these yacc rules should be in a master rule
 #	file for the test suite, separate from the LLVM build rules.
 # 
-y.tab.h:: $(SourceDir)/gram.y
+y.tab.h:: gram.y
 	yacc -d $<
 
-y.tab.c: $(SourceDir)/gram.y
+y.tab.c: gram.y
 	yacc -d $<
 
-$(SourceDir)/lex.c: y.tab.h
+lex.c: y.tab.h
 
 src:
 	echo Sources = $(Source)





More information about the llvm-commits mailing list