blob: 7fe22df37200c450a503fcd0643278c274133a77 [file] [log] [blame]
Bram Moolenaar24db7292016-01-03 16:56:10 +01001# A very (if not the most) simplistic Makefile for MSVC
2
3CC=cl
Bram Moolenaarbc073092016-02-02 18:50:45 +01004CFLAGS=/O2 /nologo
Bram Moolenaar24db7292016-01-03 16:56:10 +01005
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