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?
Most
Makefiles that we have now do things likecd <somedir> && make <action>. The make utility actually supports the-Cswitch, 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 allMakefiles to adhere to this?