Leaked source code of windows server 2003
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.

30 lines
908 B

  1. #
  2. # This file defines settings that specific to DirectPlay Xbox builds
  3. #
  4. #
  5. # CRT Defines
  6. #
  7. # Note about CRT defines. When linking with MSVCRT you must have both _MT and _DLL specified.
  8. # Using the build environment's USE_MSVCRT=1 would do this for us, but because we define our
  9. # own operator new this will cause a link error because the build environment will not properly
  10. # pull in msvcrt.lib last as of 5/11/2001. Therefore, we do it all manually specifying _DLL, _MT,
  11. # and msvcrt.lib and USE_NOLIBS=1 ourselves. This also means that we must manually add msvcprt.lib
  12. # where STL is used.
  13. #
  14. C_DEFINES=$(C_DEFINES) /D_MT /D_DLL
  15. USE_NOLIBS=1
  16. DLLENTRY=_DllMainCRTStartup
  17. #
  18. # Xbox build identifiers
  19. #
  20. PLAT_DIR = xbox
  21. ALT_PROJECT_TARGET = xbox
  22. CHICAGO_PRODUCT=1
  23. #C_DEFINES=$(C_DEFINES) /UWINNT /D_XBOX
  24. C_DEFINES=$(C_DEFINES) /UWINNT /D_XBOX /DXBOX_ON_DESKTOP