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

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

Issue 2623083002: [sql] Move time-machine support from third_party/sqlite to sql/ (Closed)
Patch Set: scoped-ref in test, too, iwyu pass to remove leftover-from-prototype includes. Created 3 years, 11 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
« no previous file with comments | « third_party/sqlite/src/ext/fts3/fts3_porter.c ('k') | third_party/sqlite/src/src/pager.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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 721
722 # Rules to build the 'testfixture' application. 722 # Rules to build the 'testfixture' application.
723 # 723 #
724 TESTFIXTURE_FLAGS = -DSQLITE_TEST=1 -DSQLITE_CRASH_TEST=1 724 TESTFIXTURE_FLAGS = -DSQLITE_TEST=1 -DSQLITE_CRASH_TEST=1
725 TESTFIXTURE_FLAGS += -DSQLITE_SERVER=1 -DSQLITE_PRIVATE="" -DSQLITE_CORE 725 TESTFIXTURE_FLAGS += -DSQLITE_SERVER=1 -DSQLITE_PRIVATE="" -DSQLITE_CORE
726 TESTFIXTURE_FLAGS += -DDEFAULT_ENABLE_RECOVER=1 726 TESTFIXTURE_FLAGS += -DDEFAULT_ENABLE_RECOVER=1
727 727
728 testfixture$(EXE): $(TESTSRC2) libsqlite3.a $(TESTSRC) $(TOP)/src/tclsqlite.c 728 testfixture$(EXE): $(TESTSRC2) libsqlite3.a $(TESTSRC) $(TOP)/src/tclsqlite.c
729 $(TCCX) $(TCL_FLAGS) -DTCLSH=1 $(TESTFIXTURE_FLAGS) \ 729 $(TCCX) $(TCL_FLAGS) -DTCLSH=1 $(TESTFIXTURE_FLAGS) \
730 $(TESTSRC) $(TESTSRC2) $(TOP)/src/tclsqlite.c \ 730 $(TESTSRC) $(TESTSRC2) $(TOP)/src/tclsqlite.c \
731 » » -o testfixture$(EXE) $(LIBTCL) libsqlite3.a $(THREADLIB) $(TLIBS ) 731 » » -o testfixture$(EXE) $(LIBTCL) libsqlite3.a $(THREADLIB)
732 732
733 amalgamation-testfixture$(EXE): sqlite3.c $(TESTSRC) $(TOP)/src/tclsqlite.c 733 amalgamation-testfixture$(EXE): sqlite3.c $(TESTSRC) $(TOP)/src/tclsqlite.c
734 $(TCCX) $(TCL_FLAGS) -DTCLSH=1 $(TESTFIXTURE_FLAGS) \ 734 $(TCCX) $(TCL_FLAGS) -DTCLSH=1 $(TESTFIXTURE_FLAGS) \
735 $(TESTSRC) $(TOP)/src/tclsqlite.c sqlite3.c \ 735 $(TESTSRC) $(TOP)/src/tclsqlite.c sqlite3.c \
736 -o testfixture$(EXE) $(LIBTCL) $(THREADLIB) 736 -o testfixture$(EXE) $(LIBTCL) $(THREADLIB)
737 737
738 fts3-testfixture$(EXE): sqlite3.c fts3amal.c $(TESTSRC) $(TOP)/src/tclsqlite.c 738 fts3-testfixture$(EXE): sqlite3.c fts3amal.c $(TESTSRC) $(TOP)/src/tclsqlite.c
739 $(TCCX) $(TCL_FLAGS) -DTCLSH=1 $(TESTFIXTURE_FLAGS) \ 739 $(TCCX) $(TCL_FLAGS) -DTCLSH=1 $(TESTFIXTURE_FLAGS) \
740 -DSQLITE_ENABLE_FTS3=1 \ 740 -DSQLITE_ENABLE_FTS3=1 \
741 $(TESTSRC) $(TOP)/src/tclsqlite.c sqlite3.c fts3amal.c \ 741 $(TESTSRC) $(TOP)/src/tclsqlite.c sqlite3.c fts3amal.c \
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 rm -f sqlite3.c sqlite3-*.c fts?amal.c tclsqlite3.c 898 rm -f sqlite3.c sqlite3-*.c fts?amal.c tclsqlite3.c
899 rm -f sqlite3rc.h 899 rm -f sqlite3rc.h
900 rm -f shell.c sqlite3ext.h 900 rm -f shell.c sqlite3ext.h
901 rm -f sqlite3_analyzer sqlite3_analyzer.exe sqlite3_analyzer.c 901 rm -f sqlite3_analyzer sqlite3_analyzer.exe sqlite3_analyzer.c
902 rm -f sqlite-*-output.vsix 902 rm -f sqlite-*-output.vsix
903 rm -f mptester mptester.exe 903 rm -f mptester mptester.exe
904 rm -f fuzzershell fuzzershell.exe 904 rm -f fuzzershell fuzzershell.exe
905 rm -f fuzzcheck fuzzcheck.exe 905 rm -f fuzzcheck fuzzcheck.exe
906 rm -f sqldiff sqldiff.exe 906 rm -f sqldiff sqldiff.exe
907 rm -f fts5.* fts5parse.* 907 rm -f fts5.* fts5parse.*
OLDNEW
« no previous file with comments | « third_party/sqlite/src/ext/fts3/fts3_porter.c ('k') | third_party/sqlite/src/src/pager.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698