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.

60 lines
808 B

  1. ################ ROOT definitions ################
  2. !IFNDEF ROOT
  3. !ERROR ROOT environment variable not defined.
  4. !ENDIF
  5. !IFNDEF MSVCROOT
  6. !ERROR MSVCROOT environment variable not defined.
  7. !ENDIF
  8. ################ PATH definitions ################
  9. !IF [set PATH=;]
  10. !ENDIF
  11. !IF [set INCLUDE=;]
  12. !ENDIF
  13. !IF [set LIB=;]
  14. !ENDIF
  15. PATH=$(MSVCROOT)\bin;$(ROOT)\dev\tools\common
  16. INCLUDE=$(ROOT)\dev\inc;$(MSVCROOT)\include;$(MSVCROOT)\mfc\include;$(ROOT)\dev\inc16
  17. LIB=$(ROOT)\dev\lib;$(MSVCROOT)\lib;$(MSVCROOT)\mfc\lib
  18. DSTDIR=winrel
  19. !ifndef BUILD
  20. BUILD=debug
  21. !endif
  22. default: $(BUILD)
  23. all: debug retail
  24. forcebld.tgt:
  25. @rem bitme
  26. debug retail: forcebld.tgt
  27. debug:
  28. md debug
  29. cd debug
  30. $(MAKE) -f ..\fontreg.mk DEBUG=1
  31. cd ..
  32. retail:
  33. md retail
  34. cd retail
  35. $(MAKE) -f ..\fontreg.mk
  36. cd ..