blob: 7fe22df37200c450a503fcd0643278c274133a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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
|