You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 7, 2019. It is now read-only.
Most Makefiles that we have now do things like cd <somedir> && make <action>. The make utility actually supports the -C switch, which allows to do the same in a much more succinct (and IMO also readable) way. E.g. the above would be rewritten make -C <somedir> <action>. How about we change all Makefiles to adhere to this?
The text was updated successfully, but these errors were encountered:
I was reading about this before merging the first cd ... && make ... PR and I think that upstream documentation (or stackoverflow) said it doesn't matter, hence I don't have preference. Feel free to fix it, I will gladly merge.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Most
Makefile
s that we have now do things likecd <somedir> && make <action>
. The make utility actually supports the-C
switch, which allows to do the same in a much more succinct (and IMO also readable) way. E.g. the above would be rewrittenmake -C <somedir> <action>
. How about we change allMakefile
s to adhere to this?The text was updated successfully, but these errors were encountered: