Windows NT 4.0 source code leak
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.

23 lines
495 B

4 years ago
  1. !if "$(NTMAKEENV)" != ""
  2. #
  3. # we're in NT... note that you should use 'BUILD' to make the acm in NT
  4. #
  5. # We set up the debug configuration for ACM, then use makefile.def. We
  6. # are second-guessing makefile.def here: what we are trying to do is define
  7. # DEBUG whenever DBG is defined by makefile.def.
  8. #
  9. !if "$(NTDEBUG)" == "retail"
  10. ACM_DEBUG_DEFS=
  11. !else
  12. !if "$(NTDEBUG)" == ""
  13. ACM_DEBUG_DEFS=-DRDEBUG
  14. !else
  15. ACM_DEBUG_DEFS=-DDEBUG
  16. !endif
  17. !endif
  18. !INCLUDE $(NTMAKEENV)\makefile.def
  19. !endif