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.

11 lines
304 B

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