Source code of Windows XP (NT5)
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

  1. ALL: TraceLog.exe
  2. CLEAN:
  3. del TraceLog.exe
  4. del TraceLog.res
  5. del TraceLog.obj
  6. TraceLog.exe: TraceLog.obj TraceLog.res
  7. link.exe advapi32.lib shell32.lib /out:TraceLog.exe TraceLog.obj TraceLog.res
  8. TraceLog.res: TraceLog.rc
  9. rc.exe /l 0x409 /fo TraceLog.res TraceLog.rc
  10. TraceLog.obj: TraceLog.c
  11. cl.exe /c /FoTraceLog.obj TraceLog.c