Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> writes: > diff --git a/Makefile b/Makefile > index 6f0b4b775fe..d378ec22545 100644 > --- a/Makefile > +++ b/Makefile > @@ -1,3 +1,6 @@ > +# Import tree-wide shared Makefile behavior and libraries > +include shared.mak > + > # The default target of this Makefile is... > all:: Continuing with the theme of [1/9], this change to Makefile gets my firm NAK. The first two lines MUST stay to be the first lines. Otherwise, a mistaken patch that adds rules to shared.make will make the first of these rules, not "all", as the default target. Just move it below to the third line or so and you'd be OK.