Mercurial > vim
view src/xxd/Make_mvc.mak @ 29160:0579ef51744c
Added tag v8.2.5099 for changeset 25480d36bff5d200e2489df71aa67a45d900c85d
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 15 Jun 2022 19:00:03 +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