Re: [PATCH v2] kbuild: add workaround for Debian make-kpkg

From: Masahiro Yamada
Date: Tue Mar 19 2019 - 00:10:46 EST


Hi Andreas,

On Mon, Mar 18, 2019 at 7:00 PM Andreas Schwab <schwab@xxxxxxx> wrote:
>
> On MÃr 08 2019, Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx> wrote:
>
> > +$(warning Do not include top Makefile of Linux Kernel)
>
> So how do I add additional targets then? Currently I create
> GNUmakefile, include Makefile, then add the targets I need. It seems
> this is now broken.


---------(GNUmakefile BEGIN)-----------
your-own-target1:
echo hello

your-own-target2:
echo world

# For the rest, fall back to the kernel Makefile
%:
$(MAKE) -f Makefile $@
---------(GNUmakefile END)-----------



Having said that, my previous cheesy workaround sucks.

How about this patch?
https://patchwork.kernel.org/patch/10858809/

I hope you will be able to wrap the top Makefile again.



--
Best Regards
Masahiro Yamada