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.

13 lines
351 B

  1. #
  2. # exsup.obj must have sxgen run on it to add .sxdata info
  3. #
  4. !if "$(TARGET_CPU)"=="i386"
  5. $(OBJDIR)\exsup.obj : i386\exsup.asm
  6. $(AS) $(AFLAGS) $(A_INCLUDES) -Fo$(OBJDIR)\exsup.tmp \
  7. $(MAKEDIR)\i386\exsup.asm
  8. $(SXGEN) /in:$(OBJDIR)\exsup.tmp /out:$(OBJDIR)\exsup.obj __unwind_handler
  9. -del $(OBJDIR)\exsup.tmp
  10. !endif
  11. #<eof>