Method: (PERFORM CLEAN-OP COMPONENT)

Documentation

Delete all the output files generated by the component C.

Source

(defmethod asdf:perform ((op clean-op) (c asdf:component))
  "Delete all the output files generated by the component C."
  (dolist (f (asdf:output-files (make-instance (for-op op)) c))
    (when (probe-file f)
      (delete-file f))))
Source Context