Makefile: fix out-of-tree builds with multiple targets with 'all'
authorYann E. MORIN <yann.morin.1998@free.fr>
Tue, 5 Nov 2013 23:28:20 +0000 (00:28 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Wed, 6 Nov 2013 22:24:47 +0000 (23:24 +0100)
commit971faf828d8d243141b7a689a787f335864e37c0
tree5d69c8ea105f8cd18de7fd776f8c4ff298b43859
parent7f02c73f8d98823a6ccd7abaca8f2af6e6bf8315
Makefile: fix out-of-tree builds with multiple targets with 'all'

For out-of-tree builds, this use-case fails to build:
    $ make clean all

This is because 'all' is filtered-out in the Makefile wrapper, since
the wrapper itself has a 'all' target.

The 'all' target is just the usual naming for the default target in a
Makefile. In fact, the first target is the default one, so we can name
it whatever we want.

Rename the Makefile wrapper 'all' target to avoid name-clashing.

Fixes #6644.

Reported-by: Ryan Barnett <rjbarnet@rockwellcollins.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Ryan Barnett <rjbarnet@rockwellcollins.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Ryan Barnett <rjbarnet@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
support/scripts/mkmakefile