summaryrefslogtreecommitdiffstats
path: root/src/tee/Make_mvc.mak
blob: a957f944acd217ef117e363834f1f7612ea4a7f1 (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

tee.exe: tee.obj
	$(CC) $(CFLAGS) /Fo$@ $**

tee.obj: tee.c
	$(CC) $(CFLAGS) /c $**

clean:
	- del tee.obj
	- del tee.exe