mirror of
https://github.com/quantum5/winscap.git
synced 2025-04-24 13:41:58 -04:00
16 lines
212 B
Makefile
16 lines
212 B
Makefile
|
CC = cl /nologo
|
||
|
CFLAGS = /W4 /EHsc
|
||
|
LD = link /nologo
|
||
|
LDFLAGS = /opt:ref
|
||
|
|
||
|
all: winscap.exe
|
||
|
|
||
|
winscap.exe: winscap.obj
|
||
|
$(LD) $(LDFLAGS) $** /out:$@
|
||
|
|
||
|
.cpp.obj::
|
||
|
$(CC) $(CFLAGS) /c $<
|
||
|
|
||
|
clean:
|
||
|
del winscap.exe *.obj
|