| OLD | NEW |
| 1 # | 1 # |
| 2 # nmake Makefile for SQLite | 2 # nmake Makefile for SQLite |
| 3 # | 3 # |
| 4 ############################################################################### | 4 ############################################################################### |
| 5 ############################## START OF OPTIONS ############################### | 5 ############################## START OF OPTIONS ############################### |
| 6 ############################################################################### | 6 ############################################################################### |
| 7 | 7 |
| 8 # The toplevel directory of the source tree. This is the directory | 8 # The toplevel directory of the source tree. This is the directory |
| 9 # that contains this "Makefile.msc". | 9 # that contains this "Makefile.msc". |
| 10 # | 10 # |
| (...skipping 1492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 dll: sqlite3.dll | 1503 dll: sqlite3.dll |
| 1504 | 1504 |
| 1505 sqlite3.def: libsqlite3.lib | 1505 sqlite3.def: libsqlite3.lib |
| 1506 echo EXPORTS > sqlite3.def | 1506 echo EXPORTS > sqlite3.def |
| 1507 dumpbin /all libsqlite3.lib \ | 1507 dumpbin /all libsqlite3.lib \ |
| 1508 | $(NAWK) "/ 1 _?sqlite3_/ { sub(/^.* _?/,\"\");print }" \ | 1508 | $(NAWK) "/ 1 _?sqlite3_/ { sub(/^.* _?/,\"\");print }" \ |
| 1509 | sort >> sqlite3.def | 1509 | sort >> sqlite3.def |
| 1510 | 1510 |
| 1511 sqlite3.dll: $(LIBOBJ) $(LIBRESOBJS) sqlite3.def | 1511 sqlite3.dll: $(LIBOBJ) $(LIBRESOBJS) sqlite3.def |
| 1512 $(LD) $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) /DLL /DEF:sqlite3.def /OUT:
$@ $(LIBOBJ) $(LIBRESOBJS) $(LTLIBS) $(TLIBS) | 1512 $(LD) $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) /DLL /DEF:sqlite3.def /OUT:
$@ $(LIBOBJ) $(LIBRESOBJS) $(LTLIBS) $(TLIBS) |
| OLD | NEW |