-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix(makefile): Bugfixes and minor improvements #10423
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@igor-sirotin I would keep this line instead of line
343
, it's clearer and more intuitive.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really care actually, just wanted to group all
status-go-*
targets togetherIf you're of strong opinion, I'm ok to revert it. Or we can wait for someone else to reply here 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is already
STATUSGO
defined in the line333
because of that it's (at least to me) clearer to remove line342
and have line337
likestatus-go: | deps
, but let's hear form others.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@saledjenic, sorry, I think I don't fully understand you.
And the line numbering has also changed here 😄 I suppose you refer to the new one.
The targets we have
Define the variable with binary path
status-desktop/Makefile
Line 333 in 66d2a2b
Define the target, which is the status-go binary, which path is defined in
1
Also set the target dependencies and instructions to build the target.
status-desktop/Makefile
Line 337 in 66d2a2b
Define a
status-go
targetThis is just an alias to use like
make status-go
, which is much easier thanmake vendor/status-go/build/bin/libstatus.dylib
status-desktop/Makefile
Line 342 in 66d2a2b
Define a
status-go-clean
targetSo I could write
make status-go-clean
instead ofrm vendor/status-go/build/bin/libstatus.dylib
status-desktop/Makefile
Line 344 in 66d2a2b
Note
From your first comment I though you want to leave the previous order of the targets. Like this:
status-go
$(STATUSGO)
But from you second comment do you propose to remove one of the targets? Did I get it right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor thing, irrelevant, just proceed and merge it