view src/tee/Make_mvc.mak @ 26222:24f74e6e3130 v8.2.3642

patch 8.2.3642: list of distributed files is outdated Commit: https://github.com/vim/vim/commit/73448a27a8e13b9b26759abeb092fd13a0e93238 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 22 12:06:06 2021 +0000 patch 8.2.3642: list of distributed files is outdated Problem: List of distributed files is outdated. Solution: Rename term.h to termdefs.h.
author Bram Moolenaar <Bram@vim.org>
date Mon, 22 Nov 2021 13:15:03 +0100
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