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.

46 lines
777 B

  1. !ifndef DXGROOT
  2. DXGROOT = $(DXROOT)\dxg
  3. !endif
  4. !ifndef D3D8ROOT
  5. D3D8ROOT = $(DXGROOT)\d3d8
  6. !endif
  7. !ifndef DDROOT
  8. DDROOT = $(DXGROOT)\dd
  9. !endif
  10. !ifndef D3DREFROOT
  11. D3DREFROOT = $(DXGROOT)\ref8
  12. !endif
  13. #@@BEGIN_MSINTERNAL
  14. BUILD_MSREF = 1
  15. #@@END_MSINTERNAL
  16. C_DEFINES = $(C_DEFINES) \
  17. -DD3D \
  18. -DMSBUILD \
  19. -DIS_32 \
  20. -DWIN32 \
  21. -DDIRECT3D_VERSION=0x800
  22. 386_STDCALL = 0
  23. !if "$(BUILD_MSREF)" != ""
  24. C_DEFINES = $(C_DEFINES) -DBUILD_MSREF
  25. INCLUDES = \
  26. $(DXGROOT)\inc; \
  27. $(D3DREFROOT)\inc; \
  28. $(D3D8ROOT)\inc; \
  29. $(DDK_INC_PATH); \
  30. $(INCLUDES)
  31. !else
  32. INCLUDES = \
  33. ..\..\inc; \
  34. $(INCLUDES)
  35. !endif