mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
ALL: TraceLog.exe
|
|
|
|
CLEAN:
|
|
del TraceLog.exe
|
|
del TraceLog.res
|
|
del TraceLog.obj
|
|
|
|
TraceLog.exe: TraceLog.obj TraceLog.res
|
|
link.exe advapi32.lib shell32.lib /out:TraceLog.exe TraceLog.obj TraceLog.res
|
|
|
|
TraceLog.res: TraceLog.rc
|
|
rc.exe /l 0x409 /fo TraceLog.res TraceLog.rc
|
|
|
|
TraceLog.obj: TraceLog.c
|
|
cl.exe /c /FoTraceLog.obj TraceLog.c
|