New Makefile targets: clean, clean-all, re(build|install|test)#99
Merged
akutz merged 1 commit intorexray:masterfrom Sep 29, 2015
Merged
New Makefile targets: clean, clean-all, re(build|install|test)#99akutz merged 1 commit intorexray:masterfrom
akutz merged 1 commit intorexray:masterfrom
Conversation
This patch adds the following, new Makefile targets: clean: The clean target executes `go clean -i`, removing any packages or binaries created by a `go install`. This target also removes the vendor, .bin, .deploy, .rpmbuild directories as well as any filtered bintray files. clean-all: The clean-all target executes `go clean -i -r`, removing any packages or binaries created by a `go install` as well as any packages or binaries created from anything on which the project transitively depends. This target also removes the vendor, .bin, .deploy, .rpmbuild directories as well as any filtered bintray files. re(build|install|test): These targets merely call clean before invoking build, install, or test respectively.
e87cedc to
6a6a254
Compare
akutz
added a commit
that referenced
this pull request
Sep 29, 2015
New Makefile targets: clean, clean-all, re(build|install|test)
akutz
added a commit
to akutz/rexray
that referenced
this pull request
Jul 24, 2017
TLS Update Former-commit-id: bbb0659c07f51a4fa9e671324b9ec7e3e05257ea
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This patch is for issue #98 and adds the following, new Makefile targets:
clean
The clean target executes
go clean -i, removing any packages or binaries created by ago install.This target also removes the
vendor,.bin,.deploy,.rpmbuilddirectories as well as any filtered bintray files.clean-all
The clean-all target executes
go clean -i -r, removing any packages or binaries created by ago installas well as any packages or binaries created from anything on which the project transitively depends.This target also removes the
vendor,.bin,.deploy,.rpmbuilddirectories as well as any filtered bintray files.re(build|install|test)
These targets merely call
cleanbefore invokingbuild,install, ortestrespectively.