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

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

Issue 9110047: The complete work-in-progress SQLite recover virtual table. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « third_party/sqlite/src/interior.pl ('k') | third_party/sqlite/src/my.init » ('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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 callback.o complete.o ctime.o date.o delete.o expr.o fault.o fkey.o \ 55 callback.o complete.o ctime.o date.o delete.o expr.o fault.o fkey.o \
56 fts3.o fts3_aux.o fts3_expr.o fts3_hash.o fts3_icu.o fts3_porter.o \ 56 fts3.o fts3_aux.o fts3_expr.o fts3_hash.o fts3_icu.o fts3_porter.o \
57 fts3_snippet.o fts3_tokenizer.o fts3_tokenizer1.o fts3_write.o \ 57 fts3_snippet.o fts3_tokenizer.o fts3_tokenizer1.o fts3_write.o \
58 func.o global.o hash.o \ 58 func.o global.o hash.o \
59 icu.o insert.o journal.o legacy.o loadext.o \ 59 icu.o insert.o journal.o legacy.o loadext.o \
60 main.o malloc.o mem0.o mem1.o mem2.o mem3.o mem5.o \ 60 main.o malloc.o mem0.o mem1.o mem2.o mem3.o mem5.o \
61 memjournal.o \ 61 memjournal.o \
62 mutex.o mutex_noop.o mutex_os2.o mutex_unix.o mutex_w32.o \ 62 mutex.o mutex_noop.o mutex_os2.o mutex_unix.o mutex_w32.o \
63 notify.o opcodes.o os.o os_os2.o os_unix.o os_win.o \ 63 notify.o opcodes.o os.o os_os2.o os_unix.o os_win.o \
64 pager.o parse.o pcache.o pcache1.o pragma.o prepare.o printf.o \ 64 pager.o parse.o pcache.o pcache1.o pragma.o prepare.o printf.o \
65 random.o resolve.o rowset.o rtree.o select.o status.o \ 65 random.o recover.o resolve.o rowset.o rtree.o select.o status.o \
66 table.o tokenize.o trigger.o \ 66 table.o tokenize.o trigger.o \
67 update.o util.o vacuum.o \ 67 update.o util.o vacuum.o \
68 vdbe.o vdbeapi.o vdbeaux.o vdbeblob.o vdbemem.o vdbetrace.o \ 68 vdbe.o vdbeapi.o vdbeaux.o vdbeblob.o vdbemem.o vdbetrace.o \
69 wal.o walker.o where.o utf.o vtab.o 69 wal.o walker.o where.o utf.o vtab.o
70 70
71 71
72 LIBOBJ += fts2.o \ 72 xLIBOBJ += fts2.o \
73 fts2_hash.o \ 73 fts2_hash.o \
74 fts2_icu.o \ 74 fts2_icu.o \
75 fts2_porter.o \ 75 fts2_porter.o \
76 fts2_tokenizer.o \ 76 fts2_tokenizer.o \
77 fts2_tokenizer1.o 77 fts2_tokenizer1.o
78 78
79 # All of the source code files. 79 # All of the source code files.
80 # 80 #
81 SRC = \ 81 SRC = \
82 $(TOP)/src/alter.c \ 82 $(TOP)/src/alter.c \
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 $(TOP)/src/pager.c \ 131 $(TOP)/src/pager.c \
132 $(TOP)/src/pager.h \ 132 $(TOP)/src/pager.h \
133 $(TOP)/src/parse.y \ 133 $(TOP)/src/parse.y \
134 $(TOP)/src/pcache.c \ 134 $(TOP)/src/pcache.c \
135 $(TOP)/src/pcache.h \ 135 $(TOP)/src/pcache.h \
136 $(TOP)/src/pcache1.c \ 136 $(TOP)/src/pcache1.c \
137 $(TOP)/src/pragma.c \ 137 $(TOP)/src/pragma.c \
138 $(TOP)/src/prepare.c \ 138 $(TOP)/src/prepare.c \
139 $(TOP)/src/printf.c \ 139 $(TOP)/src/printf.c \
140 $(TOP)/src/random.c \ 140 $(TOP)/src/random.c \
141 $(TOP)/src/recover.c \
141 $(TOP)/src/resolve.c \ 142 $(TOP)/src/resolve.c \
142 $(TOP)/src/rowset.c \ 143 $(TOP)/src/rowset.c \
143 $(TOP)/src/select.c \ 144 $(TOP)/src/select.c \
144 $(TOP)/src/status.c \ 145 $(TOP)/src/status.c \
145 $(TOP)/src/shell.c \ 146 $(TOP)/src/shell.c \
146 $(TOP)/src/sqlite.h.in \ 147 $(TOP)/src/sqlite.h.in \
147 $(TOP)/src/sqlite3ext.h \ 148 $(TOP)/src/sqlite3ext.h \
148 $(TOP)/src/sqliteInt.h \ 149 $(TOP)/src/sqliteInt.h \
149 $(TOP)/src/sqliteLimit.h \ 150 $(TOP)/src/sqliteLimit.h \
150 $(TOP)/src/table.c \ 151 $(TOP)/src/table.c \
(...skipping 21 matching lines...) Expand all
172 # Source code for extensions 173 # Source code for extensions
173 # 174 #
174 SRC += \ 175 SRC += \
175 $(TOP)/ext/fts1/fts1.c \ 176 $(TOP)/ext/fts1/fts1.c \
176 $(TOP)/ext/fts1/fts1.h \ 177 $(TOP)/ext/fts1/fts1.h \
177 $(TOP)/ext/fts1/fts1_hash.c \ 178 $(TOP)/ext/fts1/fts1_hash.c \
178 $(TOP)/ext/fts1/fts1_hash.h \ 179 $(TOP)/ext/fts1/fts1_hash.h \
179 $(TOP)/ext/fts1/fts1_porter.c \ 180 $(TOP)/ext/fts1/fts1_porter.c \
180 $(TOP)/ext/fts1/fts1_tokenizer.h \ 181 $(TOP)/ext/fts1/fts1_tokenizer.h \
181 $(TOP)/ext/fts1/fts1_tokenizer1.c 182 $(TOP)/ext/fts1/fts1_tokenizer1.c
182 SRC += \ 183 xSRC += \
183 $(TOP)/ext/fts2/fts2.c \ 184 $(TOP)/ext/fts2/fts2.c \
184 $(TOP)/ext/fts2/fts2.h \ 185 $(TOP)/ext/fts2/fts2.h \
185 $(TOP)/ext/fts2/fts2_hash.c \ 186 $(TOP)/ext/fts2/fts2_hash.c \
186 $(TOP)/ext/fts2/fts2_hash.h \ 187 $(TOP)/ext/fts2/fts2_hash.h \
187 $(TOP)/ext/fts2/fts2_icu.c \ 188 $(TOP)/ext/fts2/fts2_icu.c \
188 $(TOP)/ext/fts2/fts2_porter.c \ 189 $(TOP)/ext/fts2/fts2_porter.c \
189 $(TOP)/ext/fts2/fts2_tokenizer.h \ 190 $(TOP)/ext/fts2/fts2_tokenizer.h \
190 $(TOP)/ext/fts2/fts2_tokenizer.c \ 191 $(TOP)/ext/fts2/fts2_tokenizer.c \
191 $(TOP)/ext/fts2/fts2_tokenizer1.c 192 $(TOP)/ext/fts2/fts2_tokenizer1.c
192 SRC += \ 193 xSRC += \
193 $(TOP)/ext/fts3/fts3.c \ 194 $(TOP)/ext/fts3/fts3.c \
194 $(TOP)/ext/fts3/fts3.h \ 195 $(TOP)/ext/fts3/fts3.h \
195 $(TOP)/ext/fts3/fts3Int.h \ 196 $(TOP)/ext/fts3/fts3Int.h \
196 $(TOP)/ext/fts3/fts3_aux.c \ 197 $(TOP)/ext/fts3/fts3_aux.c \
197 $(TOP)/ext/fts3/fts3_expr.c \ 198 $(TOP)/ext/fts3/fts3_expr.c \
198 $(TOP)/ext/fts3/fts3_hash.c \ 199 $(TOP)/ext/fts3/fts3_hash.c \
199 $(TOP)/ext/fts3/fts3_hash.h \ 200 $(TOP)/ext/fts3/fts3_hash.h \
200 $(TOP)/ext/fts3/fts3_icu.c \ 201 $(TOP)/ext/fts3/fts3_icu.c \
201 $(TOP)/ext/fts3/fts3_porter.c \ 202 $(TOP)/ext/fts3/fts3_porter.c \
202 $(TOP)/ext/fts3/fts3_snippet.c \ 203 $(TOP)/ext/fts3/fts3_snippet.c \
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 $(TOP)/src/test_server.c \ 261 $(TOP)/src/test_server.c \
261 $(TOP)/src/test_stat.c \ 262 $(TOP)/src/test_stat.c \
262 $(TOP)/src/test_superlock.c \ 263 $(TOP)/src/test_superlock.c \
263 $(TOP)/src/test_syscall.c \ 264 $(TOP)/src/test_syscall.c \
264 $(TOP)/src/test_tclvar.c \ 265 $(TOP)/src/test_tclvar.c \
265 $(TOP)/src/test_thread.c \ 266 $(TOP)/src/test_thread.c \
266 $(TOP)/src/test_vfs.c \ 267 $(TOP)/src/test_vfs.c \
267 $(TOP)/src/test_wholenumber.c \ 268 $(TOP)/src/test_wholenumber.c \
268 $(TOP)/src/test_wsd.c 269 $(TOP)/src/test_wsd.c
269 270
270 TESTSRC += \ 271 xTESTSRC += \
271 $(TOP)/ext/fts2/fts2.c \ 272 $(TOP)/ext/fts2/fts2.c \
272 $(TOP)/ext/fts2/fts2.h \ 273 $(TOP)/ext/fts2/fts2.h \
273 $(TOP)/ext/fts2/fts2_hash.c \ 274 $(TOP)/ext/fts2/fts2_hash.c \
274 $(TOP)/ext/fts2/fts2_hash.h \ 275 $(TOP)/ext/fts2/fts2_hash.h \
275 $(TOP)/ext/fts2/fts2_icu.c \ 276 $(TOP)/ext/fts2/fts2_icu.c \
276 $(TOP)/ext/fts2/fts2_porter.c \ 277 $(TOP)/ext/fts2/fts2_porter.c \
277 $(TOP)/ext/fts2/fts2_tokenizer.h \ 278 $(TOP)/ext/fts2/fts2_tokenizer.h \
278 $(TOP)/ext/fts2/fts2_tokenizer.c \ 279 $(TOP)/ext/fts2/fts2_tokenizer.c \
279 $(TOP)/ext/fts2/fts2_tokenizer1.c 280 $(TOP)/ext/fts2/fts2_tokenizer1.c
280 281
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 $(TOP)/src/sqliteLimit.h \ 342 $(TOP)/src/sqliteLimit.h \
342 $(TOP)/src/vdbe.h \ 343 $(TOP)/src/vdbe.h \
343 $(TOP)/src/vdbeInt.h 344 $(TOP)/src/vdbeInt.h
344 345
345 # Header files used by extensions 346 # Header files used by extensions
346 # 347 #
347 EXTHDR += \ 348 EXTHDR += \
348 $(TOP)/ext/fts1/fts1.h \ 349 $(TOP)/ext/fts1/fts1.h \
349 $(TOP)/ext/fts1/fts1_hash.h \ 350 $(TOP)/ext/fts1/fts1_hash.h \
350 $(TOP)/ext/fts1/fts1_tokenizer.h 351 $(TOP)/ext/fts1/fts1_tokenizer.h
351 EXTHDR += \ 352 xEXTHDR += \
352 $(TOP)/ext/fts2/fts2.h \ 353 $(TOP)/ext/fts2/fts2.h \
353 $(TOP)/ext/fts2/fts2_hash.h \ 354 $(TOP)/ext/fts2/fts2_hash.h \
354 $(TOP)/ext/fts2/fts2_tokenizer.h 355 $(TOP)/ext/fts2/fts2_tokenizer.h
355 EXTHDR += \ 356 xEXTHDR += \
356 $(TOP)/ext/fts3/fts3.h \ 357 $(TOP)/ext/fts3/fts3.h \
357 $(TOP)/ext/fts3/fts3Int.h \ 358 $(TOP)/ext/fts3/fts3Int.h \
358 $(TOP)/ext/fts3/fts3_hash.h \ 359 $(TOP)/ext/fts3/fts3_hash.h \
359 $(TOP)/ext/fts3/fts3_tokenizer.h 360 $(TOP)/ext/fts3/fts3_tokenizer.h
360 EXTHDR += \ 361 EXTHDR += \
361 $(TOP)/ext/rtree/rtree.h 362 $(TOP)/ext/rtree/rtree.h
362 EXTHDR += \ 363 EXTHDR += \
363 $(TOP)/ext/icu/sqliteicu.h 364 $(TOP)/ext/icu/sqliteicu.h
364 365
365 # This is the default Makefile target. The objects listed here 366 # This is the default Makefile target. The objects listed here
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 mv sqlite3.h /usr/include 598 mv sqlite3.h /usr/include
598 599
599 clean: 600 clean:
600 rm -f *.o sqlite3 libsqlite3.a sqlite3.h opcodes.* 601 rm -f *.o sqlite3 libsqlite3.a sqlite3.h opcodes.*
601 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h 602 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h
602 rm -f $(PUBLISH) 603 rm -f $(PUBLISH)
603 rm -f *.da *.bb *.bbg gmon.out 604 rm -f *.da *.bb *.bbg gmon.out
604 rm -rf tsrc target_source 605 rm -rf tsrc target_source
605 rm -f testloadext.dll libtestloadext.so 606 rm -f testloadext.dll libtestloadext.so
606 rm -f sqlite3.c fts?amal.c tclsqlite3.c 607 rm -f sqlite3.c fts?amal.c tclsqlite3.c
OLDNEW
« no previous file with comments | « third_party/sqlite/src/interior.pl ('k') | third_party/sqlite/src/my.init » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698