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 \ | 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 Loading... |
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) |
OLD | NEW |