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

!if "$(NTMAKEENV)" != ""
#
# we're in NT... note that you should use 'BUILD' to make the acm in NT
#
# We set up the debug configuration for ACM, then use makefile.def. We
# are second-guessing makefile.def here: what we are trying to do is define
# DEBUG whenever DBG is defined by makefile.def.
#
!if "$(NTDEBUG)" == "retail"
ACM_DEBUG_DEFS=
!else
!if "$(NTDEBUG)" == ""
ACM_DEBUG_DEFS=-DRDEBUG
!else
ACM_DEBUG_DEFS=-DDEBUG
!endif
!endif
!INCLUDE $(NTMAKEENV)\makefile.def
!endif