Mercurial > vim
view src/xxd/Make_mvc.mak @ 34378:4d02bc6ddd97
runtime(doc): Add a place holder section for version 9.2 (#14060)
Commit: https://github.com/vim/vim/commit/15935e7f54f0e00782a55ebc39a68e4cd94c2571
Author: Yegappan Lakshmanan <4298407+yegappan@users.noreply.github.com>
Date: Tue Feb 20 10:48:22 2024 -0800
runtime(doc): Add a place holder section for version 9.2 (https://github.com/vim/vim/issues/14060)
Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 20 Feb 2024 20:00:08 +0100 |
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