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

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

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 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
OLDNEW
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698