Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: third_party/sqlite/src/main.mk

Issue 6835006: Convert to SQLite amalgamation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/sqlite/src/ext/fts2/fts2_tokenizer.c ('k') | third_party/sqlite/src/src/main.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ############################################################################### 1 ###############################################################################
2 # The following macros should be defined before this script is 2 # The following macros should be defined before this script is
3 # invoked: 3 # invoked:
4 # 4 #
5 # TOP The toplevel directory of the source tree. This is the 5 # TOP The toplevel directory of the source tree. This is the
6 # directory that contains this "Makefile.in" and the 6 # directory that contains this "Makefile.in" and the
7 # "configure.in" script. 7 # "configure.in" script.
8 # 8 #
9 # BCC C Compiler and options for use in building executables that 9 # BCC C Compiler and options for use in building executables that
10 # will run on the platform that is doing the build. 10 # will run on the platform that is doing the build.
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 494
495 fulltest: testfixture$(EXE) sqlite3$(EXE) 495 fulltest: testfixture$(EXE) sqlite3$(EXE)
496 ./testfixture$(EXE) $(TOP)/test/all.test 496 ./testfixture$(EXE) $(TOP)/test/all.test
497 497
498 soaktest: testfixture$(EXE) sqlite3$(EXE) 498 soaktest: testfixture$(EXE) sqlite3$(EXE)
499 ./testfixture$(EXE) $(TOP)/test/all.test -soak 1 499 ./testfixture$(EXE) $(TOP)/test/all.test -soak 1
500 500
501 test: testfixture$(EXE) sqlite3$(EXE) 501 test: testfixture$(EXE) sqlite3$(EXE)
502 ./testfixture$(EXE) $(TOP)/test/veryquick.test 502 ./testfixture$(EXE) $(TOP)/test/veryquick.test
503 503
504 ftstest: testfixture$(EXE) sqlite3$(EXE)
505 ./testfixture$(EXE) $(TOP)/test/fts.test
506
507 fts2test: testfixture$(EXE) sqlite3$(EXE) 504 fts2test: testfixture$(EXE) sqlite3$(EXE)
508 ./testfixture$(EXE) $(TOP)/test/fts2.test 505 ./testfixture$(EXE) $(TOP)/test/fts2.test
509 506
510 sqlite3_analyzer$(EXE): $(TOP)/src/tclsqlite.c sqlite3.c $(TESTSRC) \ 507 sqlite3_analyzer$(EXE): $(TOP)/src/tclsqlite.c sqlite3.c $(TESTSRC) \
511 $(TOP)/tool/spaceanal.tcl 508 $(TOP)/tool/spaceanal.tcl
512 sed \ 509 sed \
513 -e '/^#/d' \ 510 -e '/^#/d' \
514 -e 's,\\,\\\\,g' \ 511 -e 's,\\,\\\\,g' \
515 -e 's,",\\",g' \ 512 -e 's,",\\",g' \
516 -e 's,^,",' \ 513 -e 's,^,",' \
(...skipping 21 matching lines...) Expand all
538 mv sqlite3.h /usr/include 535 mv sqlite3.h /usr/include
539 536
540 clean: 537 clean:
541 rm -f *.o sqlite3 libsqlite3.a sqlite3.h opcodes.* 538 rm -f *.o sqlite3 libsqlite3.a sqlite3.h opcodes.*
542 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h 539 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h
543 rm -f $(PUBLISH) 540 rm -f $(PUBLISH)
544 rm -f *.da *.bb *.bbg gmon.out 541 rm -f *.da *.bb *.bbg gmon.out
545 rm -rf tsrc target_source 542 rm -rf tsrc target_source
546 rm -f testloadext.dll libtestloadext.so 543 rm -f testloadext.dll libtestloadext.so
547 rm -f sqlite3.c fts?amal.c tclsqlite3.c 544 rm -f sqlite3.c fts?amal.c tclsqlite3.c
OLDNEW
« no previous file with comments | « third_party/sqlite/src/ext/fts2/fts2_tokenizer.c ('k') | third_party/sqlite/src/src/main.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698