blob: a957f944acd217ef117e363834f1f7612ea4a7f1 [file] [log] [blame]
Bram Moolenaar24db7292016-01-03 16:56:10 +01001# A very (if not the most) simplistic Makefile for MSVC
2
3CC=cl
4CFLAGS=/O2
5
6tee.exe: tee.obj
7 $(CC) $(CFLAGS) /Fo$@ $**
8
9tee.obj: tee.c
10 $(CC) $(CFLAGS) /c $**
11
12clean:
13 - del tee.obj
14 - del tee.exe