We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description of the problem
Running make clean can delete some temporary files and directories, but I usually have two problems with it:
make clean
doc/_build
.egg-info
Solution:
make dist-clean
spotless
Are you willing to help implement and maintain this feature? Yes, but let's discuss it first.
The text was updated successfully, but these errors were encountered:
https://www.gnu.org/software/make/manual/html_node/Standard-Targets.html
clean and distclean are the standard targets in Makefile. I think we can following the rules, and let make distclean delete the .egg-info diretcory.
clean
distclean
make distclean
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description of the problem
Running
make clean
can delete some temporary files and directories, but I usually have two problems with it:make clean
doesn't delete the files indoc/_build
directory. IMHO, it should.make clean
deletes the.egg-info
directory, so I have to reinstall pygmt in editable mode again (am I right here?)Solution:
make clean
should deletedoc/_build
directory but do NOT delete the.egg-info
directorymake dist-clean
(orspotless
or other better names) to delete all these files, including.egg-info
directory.Are you willing to help implement and maintain this feature?
Yes, but let's discuss it first.
The text was updated successfully, but these errors were encountered: