[llvm-commits] CVS: llvm-test/MultiSource/Applications/d/Makefile

Chris Lattner lattner at cs.uiuc.edu
Thu Oct 20 23:28:05 PDT 2005



Changes in directory llvm-test/MultiSource/Applications/d:

Makefile updated: 1.4 -> 1.5
---
Log message:

The variable is Source, not Sources.  Also, don't include grammar.g.c: it's
not part of the program, it's a file generated by running the test program.
This stops the infernal "makedparser rebuilds every time you run tests" issue.


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

 Makefile |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm-test/MultiSource/Applications/d/Makefile
diff -u llvm-test/MultiSource/Applications/d/Makefile:1.4 llvm-test/MultiSource/Applications/d/Makefile:1.5
--- llvm-test/MultiSource/Applications/d/Makefile:1.4	Sat Jan 15 21:16:09 2005
+++ llvm-test/MultiSource/Applications/d/Makefile	Fri Oct 21 01:27:53 2005
@@ -1,6 +1,6 @@
 LEVEL = ../../..
 PROG = make_dparser
-Sources=make_dparser.c write_ctables.c gram.c lex.c lr.c arg.c parse.c scan.c symtab.c util.c grammar.g.c
+Source=make_dparser.c write_ctables.c gram.c lex.c lr.c arg.c parse.c scan.c symtab.c util.c
 CPPFLAGS =  -DD_BUILD_VERSION=5725
 RUN_OPTIONS="-v $(PROJ_SRC_DIR)/grammar.g"
 include ../../Makefile.multisrc






More information about the llvm-commits mailing list