Mercurial > vim
view src/xxd/Make_mvc.mak @ 14915:f508bb2fb808 v8.1.0469
patch 8.1.0469: too often indexing in qf_lists[]
commit https://github.com/vim/vim/commit/108e7b422b7b59153dd5af1fb75e83fa36ff3db4
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Oct 11 17:39:12 2018 +0200
patch 8.1.0469: too often indexing in qf_lists[]
Problem: Too often indexing in qf_lists[].
Solution: Use a qf_list_T pointer. (Yegappan Lakshmanan)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 11 Oct 2018 17:45:07 +0200 |
parents | 590424e87b65 |
children | c9134a3ff7be |
line wrap: on
line source
# The most simplistic Makefile for Win32 using Microsoft Visual C++ # (NT and Windows 95) SUBSYSTEM = console !if "$(SUBSYSTEM_VER)" != "" SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER) !endif xxd: xxd.exe xxd.exe: xxd.c cl /nologo -DWIN32 xxd.c -link -subsystem:$(SUBSYSTEM) # This was for an older compiler # cl /nologo -DWIN32 xxd.c /link setargv.obj clean: - if exist xxd.obj del xxd.obj - if exist xxd.exe del xxd.exe