[llvm-commits] [test-suite] r48975 - /test-suite/trunk/MultiSource/Applications/sqlite3/Makefile
Evan Cheng
evan.cheng at apple.com
Mon Mar 31 00:24:05 PDT 2008
Author: evancheng
Date: Mon Mar 31 02:24:04 2008
New Revision: 48975
URL: http://llvm.org/viewvc/llvm-project?rev=48975&view=rev
Log:
Support building with objdir != srcdir. Patch by Julien Lerough.
Modified:
test-suite/trunk/MultiSource/Applications/sqlite3/Makefile
Modified: test-suite/trunk/MultiSource/Applications/sqlite3/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/sqlite3/Makefile?rev=48975&r1=48974&r2=48975&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/sqlite3/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/sqlite3/Makefile Mon Mar 31 02:24:04 2008
@@ -17,10 +17,10 @@
# the input files are generated from a tcl script
# it needs to be generated before sqlite is run
-sqlite3.c: test15.sql
+$(SourceDir)/sqlite3.c: test15.sql
-test15.sql: speedtest.tcl
- $(TCLSH) speedtest.tcl
+test15.sql: $(SourceDir)/speedtest.tcl
+ $(TCLSH) $<
clean::
rm -f test*.sql
More information about the llvm-commits
mailing list