view src/tee/Make_mvc.mak @ 11359:0fc4e555506d

Added tag v8.0.0564 for changeset a6b9cdcde548e8c2344b8301a442591591b8e6eb
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Apr 2017 14:45:06 +0200
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