annotate src/xxd/Make_mvc.mak @ 7734:616769d423fc
v7.4.1165
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 24 15:36:03 2016 +0100
patch 7.4.1165
Problem: When defining DYNAMIC_ICONV_DLL in the makefile, the build fails.
Solution: Add #ifdef's. (Taro Muraoka) Try the newer version first.
author |
Christian Brabandt <cb@256bit.org> |
date |
Sun, 24 Jan 2016 15:45:04 +0100 |
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
|