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.

20 lines
508 B

  1. makedir:
  2. !if "$(OBJ)" != ""
  3. @-if not exist $(OBJ) md $(OBJ)
  4. !endif
  5. !if "$(OBJINTL)" != ""
  6. @-if not exist $(OBJINTL) md $(OBJINTL)
  7. !endif
  8. clean: cleanup all
  9. cleanup:
  10. -del *.bin *.sys *.obj *.sym *.map *.exe *.exc *.exs *.cl* *.ctl *.com 2>nul
  11. !if "$(OBJ)" != ""
  12. if exist $(OBJ)\*.obj del $(OBJ)\*.obj
  13. !endif
  14. !if "$(OBJINTL)" != ""
  15. if exist $(OBJINTL)\*.obj del $(OBJINTL)\*.obj
  16. if exist $(OBJINTL)\*.cl* del $(OBJINTL)\*.cl*
  17. if exist $(OBJINTL)\*.ctl del $(OBJINTL)\*.ctl
  18. !endif