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