Skip to content
Snippets Groups Projects
Commit 181e9763 authored by Peter Foley's avatar Peter Foley Committed by Michal Marek
Browse files

kbuild: silence Nothing to be done for 'all' message


This patch silences a Makefile.asm-generic message
by defining a dummy rule for all.

make -f /usr/src/git/scripts/Makefile.asm-generic \
            obj=arch/x86/include/generated/asm
make[1]: Nothing to be done for `all'.

Signed-off-by: default avatarPeter Foley <pefoley2@verizon.net>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 55922c9d
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ quiet_cmd_wrap = WRAP $@ ...@@ -17,6 +17,7 @@ quiet_cmd_wrap = WRAP $@
cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@ cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@
all: $(patsubst %, $(obj)/%, $(generic-y)) all: $(patsubst %, $(obj)/%, $(generic-y))
@:
$(obj)/%.h: $(obj)/%.h:
$(call cmd,wrap) $(call cmd,wrap)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment