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

Side by Side Diff: third_party/sqlite/src/autoconf/tea/win/makefile.vc

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 # makefile.vc -- -*- Makefile -*- 1 # makefile.vc -- -*- Makefile -*-
2 # 2 #
3 # Microsoft Visual C++ makefile for use with nmake.exe v1.62+ (VC++ 5.0+) 3 # Microsoft Visual C++ makefile for use with nmake.exe v1.62+ (VC++ 5.0+)
4 # 4 #
5 # This makefile is based upon the Tcl 8.4 Makefile.vc and modified to 5 # This makefile is based upon the Tcl 8.4 Makefile.vc and modified to
6 # make it suitable as a general package makefile. Look for the word EDIT 6 # make it suitable as a general package makefile. Look for the word EDIT
7 # which marks sections that may need modification. As a minumum you will 7 # which marks sections that may need modification. As a minumum you will
8 # need to change the PROJECT, DOTVERSION and DLLOBJS variables to values 8 # need to change the PROJECT, DOTVERSION and DLLOBJS variables to values
9 # relevant to your package. 9 # relevant to your package.
10 # 10 #
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 clean: 405 clean:
406 @if exist $(TMP_DIR)\nul $(RMDIR) $(TMP_DIR) 406 @if exist $(TMP_DIR)\nul $(RMDIR) $(TMP_DIR)
407 @if exist $(WINDIR)\version.vc del $(WINDIR)\version.vc 407 @if exist $(WINDIR)\version.vc del $(WINDIR)\version.vc
408 408
409 realclean: clean 409 realclean: clean
410 @if exist $(OUT_DIR)\nul $(RMDIR) $(OUT_DIR) 410 @if exist $(OUT_DIR)\nul $(RMDIR) $(OUT_DIR)
411 411
412 distclean: realclean 412 distclean: realclean
413 @if exist $(WINDIR)\nmakehlp.exe del $(WINDIR)\nmakehlp.exe 413 @if exist $(WINDIR)\nmakehlp.exe del $(WINDIR)\nmakehlp.exe
414 @if exist $(WINDIR)\nmakehlp.obj del $(WINDIR)\nmakehlp.obj 414 @if exist $(WINDIR)\nmakehlp.obj del $(WINDIR)\nmakehlp.obj
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698