Mercurial > vim
view src/tee/Make_mvc.mak @ 20498:55a373a243c0 v8.2.0803
patch 8.2.0803: libvterm code lags behind the upstream version
Commit: https://github.com/vim/vim/commit/83a52533b23c88f90be0dea01bc5e32ddadc1d6a
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed May 20 19:30:19 2020 +0200
patch 8.2.0803: libvterm code lags behind the upstream version
Problem: Libvterm code lags behind the upstream version.
Solution: Include revisions 764 - 767
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 20 May 2020 19:45:04 +0200 |
parents | 590424e87b65 |
children |
line wrap: on
line source
# A very (if not the most) simplistic Makefile for MSVC SUBSYSTEM = console !if "$(SUBSYSTEM_VER)" != "" SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER) !endif CC=cl CFLAGS=/O2 /nologo tee.exe: tee.obj $(CC) $(CFLAGS) /Fo$@ $** /link /subsystem:$(SUBSYSTEM) tee.obj: tee.c $(CC) $(CFLAGS) /c $** clean: - del tee.obj - del tee.exe