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.

63 lines
1.8 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1992, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. !ifdef NTMAKEENV
  9. ###########################################################################
  10. # Common make file definitions for the COMTOOLS project to build using
  11. # build.exe for daytona
  12. ###########################################################################
  13. CHICAGO_PRODUCT=1
  14. ###########################################################################
  15. #
  16. # Common project definitions
  17. #
  18. ###########################################################################
  19. USE_LIBCMT=1
  20. ###########################################################################
  21. #
  22. # Common C_DEFINES definitions for daytona build
  23. #
  24. ###########################################################################
  25. C_DEFINES= \
  26. $(C_DEFINES) \
  27. -DFLAT \
  28. !if "$(NON_TASK_ALLOC)" == "TRUE"
  29. -DNON_TASK_ALLOCATOR \
  30. !endif
  31. -DINC_OLE2
  32. ###########################################################################
  33. #
  34. # Prevent build from warning about conditionally included headers
  35. #
  36. ###########################################################################
  37. CONDITIONAL_INCLUDES= \
  38. macport.h \
  39. types16.h \
  40. dsys.h
  41. ###########################################################################
  42. # Set warning level to 4 and disable some warnings
  43. ###########################################################################
  44. MSC_WARNING_LEVEL=/W4
  45. COMPILER_WARNINGS=/FI$(CTCOMTOOLS)\h\diswarn.h
  46. ###########################################################################
  47. # END OF CHICAGO BUILD ENVIRONMENT SETTINGS
  48. ###########################################################################
  49. !endif