| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 $(TOP)/src/pager.c \ | 244 $(TOP)/src/pager.c \ |
| 245 $(TOP)/src/pager.h \ | 245 $(TOP)/src/pager.h \ |
| 246 $(TOP)/src/parse.y \ | 246 $(TOP)/src/parse.y \ |
| 247 $(TOP)/src/pcache.c \ | 247 $(TOP)/src/pcache.c \ |
| 248 $(TOP)/src/pcache.h \ | 248 $(TOP)/src/pcache.h \ |
| 249 $(TOP)/src/pcache1.c \ | 249 $(TOP)/src/pcache1.c \ |
| 250 $(TOP)/src/pragma.c \ | 250 $(TOP)/src/pragma.c \ |
| 251 $(TOP)/src/prepare.c \ | 251 $(TOP)/src/prepare.c \ |
| 252 $(TOP)/src/printf.c \ | 252 $(TOP)/src/printf.c \ |
| 253 $(TOP)/src/random.c \ | 253 $(TOP)/src/random.c \ |
| 254 $(TOP)/src/recover.c \ | |
| 255 $(TOP)/src/resolve.c \ | 254 $(TOP)/src/resolve.c \ |
| 256 $(TOP)/src/rowset.c \ | 255 $(TOP)/src/rowset.c \ |
| 257 $(TOP)/src/select.c \ | 256 $(TOP)/src/select.c \ |
| 258 $(TOP)/src/status.c \ | 257 $(TOP)/src/status.c \ |
| 259 $(TOP)/src/shell.c \ | 258 $(TOP)/src/shell.c \ |
| 260 $(TOP)/src/sqlite.h.in \ | 259 $(TOP)/src/sqlite.h.in \ |
| 261 $(TOP)/src/sqlite3ext.h \ | 260 $(TOP)/src/sqlite3ext.h \ |
| 262 $(TOP)/src/sqliteInt.h \ | 261 $(TOP)/src/sqliteInt.h \ |
| 263 $(TOP)/src/sqliteLimit.h \ | 262 $(TOP)/src/sqliteLimit.h \ |
| 264 $(TOP)/src/table.c \ | 263 $(TOP)/src/table.c \ |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 $(REAL_LIBOBJ): $(LIBOBJ) | 937 $(REAL_LIBOBJ): $(LIBOBJ) |
| 939 | 938 |
| 940 sqlite3.def: $(REAL_LIBOBJ) | 939 sqlite3.def: $(REAL_LIBOBJ) |
| 941 echo 'EXPORTS' >sqlite3.def | 940 echo 'EXPORTS' >sqlite3.def |
| 942 nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \ | 941 nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \ |
| 943 | sed 's/^.* _//' >>sqlite3.def | 942 | sed 's/^.* _//' >>sqlite3.def |
| 944 | 943 |
| 945 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def | 944 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def |
| 946 $(TCC) -shared -o $@ sqlite3.def \ | 945 $(TCC) -shared -o $@ sqlite3.def \ |
| 947 -Wl,"--strip-all" $(REAL_LIBOBJ) | 946 -Wl,"--strip-all" $(REAL_LIBOBJ) |
| OLD | NEW |