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.

49 lines
732 B

  1. all: fontreg.exe fontreg.sym
  2. #------------------- Abbreviations and Inference Rules ----------------------
  3. CC = cl -c -O1 -W3 -D"WIN32" -D"_X86_" -YX -Gf -Zl
  4. !ifdef DEBUG
  5. CC = $(CC) -DDEBUG
  6. !endif
  7. !ifdef LIST
  8. CC = $(CC) -Fc
  9. !endif
  10. {..}.c.obj:
  11. $(CC) ..\$*.c
  12. {..}.rc.res:
  13. rc -r -fo$*.res ..\$*.rc
  14. #----------------------------- Dependencies ---------------------------------
  15. fontreg.obj: ..\fontreg.c ..\fontreg.mk ..\ttf.h
  16. fontreg.res: ..\fontreg.rc
  17. fontreg.exe: fontreg.obj fontreg.res ..\fontreg.mk
  18. link @<<
  19. -subsystem:windows
  20. -map:fontreg.map
  21. -entry:WinMain
  22. fontreg.obj
  23. kernel32.lib gdi32.lib user32.lib advapi32.lib
  24. fontreg.res
  25. <<
  26. fontreg.sym: fontreg.exe
  27. mapsym fontreg.map