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

Side by Side Diff: third_party/sqlite/src/Makefile.in

Issue 1700483002: [sqlite] iOS running recover virtual table. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@zzsql_recover_handle_review2
Patch Set: Manually find sql/test/data for now. Created 4 years, 10 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/sqlite.gyp ('k') | third_party/sqlite/src/main.mk » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/make 1 #!/usr/make
2 # 2 #
3 # Makefile for SQLITE 3 # Makefile for SQLITE
4 # 4 #
5 # This makefile is suppose to be configured automatically using the 5 # This makefile is suppose to be configured automatically using the
6 # autoconf. But if that does not work for you, you can configure 6 # autoconf. But if that does not work for you, you can configure
7 # the makefile manually. Just set the parameters below to values that 7 # the makefile manually. Just set the parameters below to values that
8 # work well for your system. 8 # work well for your system.
9 # 9 #
10 # If the configure script does not work out-of-the-box, you might 10 # If the configure script does not work out-of-the-box, you might
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 $(TOP)/src/pager.h \ 253 $(TOP)/src/pager.h \
254 $(TOP)/src/parse.y \ 254 $(TOP)/src/parse.y \
255 $(TOP)/src/pcache.c \ 255 $(TOP)/src/pcache.c \
256 $(TOP)/src/pcache.h \ 256 $(TOP)/src/pcache.h \
257 $(TOP)/src/pcache1.c \ 257 $(TOP)/src/pcache1.c \
258 $(TOP)/src/pragma.c \ 258 $(TOP)/src/pragma.c \
259 $(TOP)/src/pragma.h \ 259 $(TOP)/src/pragma.h \
260 $(TOP)/src/prepare.c \ 260 $(TOP)/src/prepare.c \
261 $(TOP)/src/printf.c \ 261 $(TOP)/src/printf.c \
262 $(TOP)/src/random.c \ 262 $(TOP)/src/random.c \
263 $(TOP)/src/recover.c \ 263 $(TOP)/../ext/recover.c \
264 $(TOP)/src/resolve.c \ 264 $(TOP)/src/resolve.c \
265 $(TOP)/src/rowset.c \ 265 $(TOP)/src/rowset.c \
266 $(TOP)/src/select.c \ 266 $(TOP)/src/select.c \
267 $(TOP)/src/status.c \ 267 $(TOP)/src/status.c \
268 $(TOP)/src/shell.c \ 268 $(TOP)/src/shell.c \
269 $(TOP)/src/sqlite.h.in \ 269 $(TOP)/src/sqlite.h.in \
270 $(TOP)/src/sqlite3ext.h \ 270 $(TOP)/src/sqlite3ext.h \
271 $(TOP)/src/sqliteInt.h \ 271 $(TOP)/src/sqliteInt.h \
272 $(TOP)/src/sqliteLimit.h \ 272 $(TOP)/src/sqliteLimit.h \
273 $(TOP)/src/table.c \ 273 $(TOP)/src/table.c \
(...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 $(REAL_LIBOBJ): $(LIBOBJ) 1227 $(REAL_LIBOBJ): $(LIBOBJ)
1228 1228
1229 sqlite3.def: $(REAL_LIBOBJ) 1229 sqlite3.def: $(REAL_LIBOBJ)
1230 echo 'EXPORTS' >sqlite3.def 1230 echo 'EXPORTS' >sqlite3.def
1231 nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \ 1231 nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \
1232 | sed 's/^.* _//' >>sqlite3.def 1232 | sed 's/^.* _//' >>sqlite3.def
1233 1233
1234 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def 1234 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def
1235 $(TCC) -shared -o $@ sqlite3.def \ 1235 $(TCC) -shared -o $@ sqlite3.def \
1236 -Wl,"--strip-all" $(REAL_LIBOBJ) 1236 -Wl,"--strip-all" $(REAL_LIBOBJ)
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite.gyp ('k') | third_party/sqlite/src/main.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698