-
-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
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
Configurable build process #34
base: master
Are you sure you want to change the base?
Conversation
Makefile would supply them using env-vars.
"$@" = I can pass in flags like `-j32` to make compiling faster, utilizing all 32 logical cores on my workstation.
IDK if this will work. Really.
@@ -11,7 +11,9 @@ | |||
|
|||
# Run "make help" for target help. | |||
|
|||
ifeq ($(MCU),) |
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.
Is this required? What id you use ?=
, would this work?
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.
Sure you can use ?=
. This is just equivalent.
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.
?=
looks fancier. Please use that, its also more simple and better understandable.
Looks like an interesting patch. Let me know once you fixed my notes. Thanks for taking the time :) |
No description provided.