Mercurial > vim
view src/xxd/Make_mvc.mak @ 14698:d2cfca5b178e v8.1.0361
patch 8.1.0361: remote user not used for completion
commit https://github.com/vim/vim/commit/6b0b83f768cf536b34ce4d3f2de6bf62324229aa
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Sep 10 19:03:05 2018 +0200
patch 8.1.0361: remote user not used for completion
Problem: Remote user not used for completion. (Stucki)
Solution: Use $USER too. (Dominique Pelle, closes https://github.com/vim/vim/issues/3407)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 10 Sep 2018 19:15:05 +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