[llvm-commits] [test-suite] r49039 - /test-suite/trunk/MultiSource/Applications/sqlite3/Makefile
Evan Cheng
evan.cheng at apple.com
Tue Apr 1 10:49:48 PDT 2008
Author: evancheng
Date: Tue Apr 1 12:49:48 2008
New Revision: 49039
URL: http://llvm.org/viewvc/llvm-project?rev=49039&view=rev
Log:
Unbreak sqlite when objdir == srcdir. This hopefully allow objdir != srcdir to work as well.
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=49039&r1=49038&r2=49039&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/sqlite3/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/sqlite3/Makefile Tue Apr 1 12:49:48 2008
@@ -1,5 +1,4 @@
LEVEL = ../../../
-#RUN_OPTIONS =
Source = sqlite3.c shell.c
@@ -17,10 +16,10 @@
# the input files are generated from a tcl script
# it needs to be generated before sqlite is run
-$(SourceDir)/sqlite3.c: test15.sql
+sqlite3.c: $(PROJ_SRC_DIR)/test15.sql
-test15.sql: $(SourceDir)/speedtest.tcl
- $(TCLSH) $<
+$(PROJ_SRC_DIR)/test15.sql: $(PROJ_SRC_DIR)/speedtest.tcl
+ $(TCLSH) $(PROJ_SRC_DIR)/speedtest.tcl
clean::
rm -f test*.sql
More information about the llvm-commits
mailing list