blob: a957f944acd217ef117e363834f1f7612ea4a7f1 [file] [log] [blame]
# A very (if not the most) simplistic Makefile for MSVC
CC=cl
CFLAGS=/O2
tee.exe: tee.obj
$(CC) $(CFLAGS) /Fo$@ $**
tee.obj: tee.c
$(CC) $(CFLAGS) /c $**
clean:
- del tee.obj
- del tee.exe