view src/tee/Make_mvc.mak @ 11019:05daa23e1ecf

Added tag v8.0.0398 for changeset 654fc5636b37b27891150fd94a4208456e1b96aa
author Christian Brabandt <cb@256bit.org>
date Wed, 01 Mar 2017 22:30:04 +0100
parents a98b93736894
children 590424e87b65
line wrap: on
line source

# A very (if not the most) simplistic Makefile for MSVC

CC=cl
CFLAGS=/O2 /nologo

tee.exe: tee.obj
	$(CC) $(CFLAGS) /Fo$@ $**

tee.obj: tee.c
	$(CC) $(CFLAGS) /c $**

clean:
	- del tee.obj
	- del tee.exe