annotate src/xxd/Make_mvc.mak @ 9268:a00e32b5bb39
v7.4.1917
commit https://github.com/vim/vim/commit/012270936c3c7df3bba45ad2b48938c23a2fd43a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 11 14:47:40 2016 +0200
patch 7.4.1917
Problem: History lines read from viminfo in different encoding than when
writing are not converted.
Solution: Convert the history lines.
author |
Christian Brabandt <cb@256bit.org> |
date |
Sat, 11 Jun 2016 15:00:06 +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
|