Bram Moolenaar | 24db729 | 2016-01-03 16:56:10 +0100 | [diff] [blame] | 1 | # A very (if not the most) simplistic Makefile for MSVC |
2 | |||||
3 | CC=cl | ||||
Bram Moolenaar | bc07309 | 2016-02-02 18:50:45 +0100 | [diff] [blame] | 4 | CFLAGS=/O2 /nologo |
Bram Moolenaar | 24db729 | 2016-01-03 16:56:10 +0100 | [diff] [blame] | 5 | |
6 | tee.exe: tee.obj | ||||
7 | $(CC) $(CFLAGS) /Fo$@ $** | ||||
8 | |||||
9 | tee.obj: tee.c | ||||
10 | $(CC) $(CFLAGS) /c $** | ||||
11 | |||||
12 | clean: | ||||
13 | - del tee.obj | ||||
14 | - del tee.exe |