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.
 
 
 
 
 
 

11 lines
315 B

#
# Instrument with ICECAP on free builds (if we have a valid pointer to
# the ICEPICK tool).
#
!IF "$(ICEPICK_CMD)" != ""
!IF $(FREEBUILD)
POST_BUILD_CMD=$(ICEPICK_CMD) $@ $(ICEPICK_OPTIONS) -OUTPUT:.\$(@B).xyz && copy $(@B).xyz $@ && copy $(@B).pdb $(@R).pdb && del $(@B).xyz $(@B).pdb
!ENDIF
!ENDIF