Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 \ | |
| 264 $(TOP)/src/recover_varint.c \ | |
|
Scott Hess - ex-Googler
2016/03/02 01:17:37
This change removes the recover code from the amal
| |
| 265 $(TOP)/src/resolve.c \ | 263 $(TOP)/src/resolve.c \ |
| 266 $(TOP)/src/rowset.c \ | 264 $(TOP)/src/rowset.c \ |
| 267 $(TOP)/src/select.c \ | 265 $(TOP)/src/select.c \ |
| 268 $(TOP)/src/status.c \ | 266 $(TOP)/src/status.c \ |
| 269 $(TOP)/src/shell.c \ | 267 $(TOP)/src/shell.c \ |
| 270 $(TOP)/src/sqlite.h.in \ | 268 $(TOP)/src/sqlite.h.in \ |
| 271 $(TOP)/src/sqlite3ext.h \ | 269 $(TOP)/src/sqlite3ext.h \ |
| 272 $(TOP)/src/sqliteInt.h \ | 270 $(TOP)/src/sqliteInt.h \ |
| 273 $(TOP)/src/sqliteLimit.h \ | 271 $(TOP)/src/sqliteLimit.h \ |
| 274 $(TOP)/src/table.c \ | 272 $(TOP)/src/table.c \ |
| (...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1228 $(REAL_LIBOBJ): $(LIBOBJ) | 1226 $(REAL_LIBOBJ): $(LIBOBJ) |
| 1229 | 1227 |
| 1230 sqlite3.def: $(REAL_LIBOBJ) | 1228 sqlite3.def: $(REAL_LIBOBJ) |
| 1231 echo 'EXPORTS' >sqlite3.def | 1229 echo 'EXPORTS' >sqlite3.def |
| 1232 nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \ | 1230 nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \ |
| 1233 | sed 's/^.* _//' >>sqlite3.def | 1231 | sed 's/^.* _//' >>sqlite3.def |
| 1234 | 1232 |
| 1235 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def | 1233 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def |
| 1236 $(TCC) -shared -o $@ sqlite3.def \ | 1234 $(TCC) -shared -o $@ sqlite3.def \ |
| 1237 -Wl,"--strip-all" $(REAL_LIBOBJ) | 1235 -Wl,"--strip-all" $(REAL_LIBOBJ) |
| OLD | NEW |