annotate src/xxd/Make_mvc.mak @ 4267:22adc26aaa9f
v7.3.884
updated for version 7.3.884
Problem: Compiler warning for variable shadowing another. (John Little)
Solution: Rename the variable. (Christian Brabandt)
author |
Bram Moolenaar <bram@vim.org> |
date |
Sat, 06 Apr 2013 14:30:40 +0200 |
parents |
0f9f4761ad9c |
children |
590424e87b65 |
rev |
line source |
7
|
1 # The most simplistic Makefile for Win32 using Microsoft Visual C++
|
|
2 # (NT and Windows 95)
|
|
3
|
|
4 xxd: xxd.exe
|
|
5
|
|
6 xxd.exe: xxd.c
|
714
|
7 cl /nologo -DWIN32 xxd.c
|
|
8
|
|
9 # This was for an older compiler
|
|
10 # cl /nologo -DWIN32 xxd.c /link setargv.obj
|
7
|
11
|
|
12 clean:
|
|
13 - if exist xxd.obj del xxd.obj
|
|
14 - if exist xxd.exe del xxd.exe
|