diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-05-17 16:03:11 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-05-27 03:59:29 +0900 |
commit | 2728fcfa4fcc0c4152629c48d49c3bd5f9008329 (patch) | |
tree | 15ee584c656d585a562921041f575af0580fa29a /scripts | |
parent | 92f378f19e947eeffc52c427cd734f7b19eb54c4 (diff) |
kbuild: merge scripts/mkmakefile to top Makefile
scripts/mkmakefile is simple enough to be merged in the Makefile.
Use $(call cmd,...) to show the log instead of doing it in the
shell script.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mkmakefile | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/mkmakefile b/scripts/mkmakefile deleted file mode 100755 index 1cb174751429..000000000000 --- a/scripts/mkmakefile +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -# SPDX-License-Identifier: GPL-2.0 -# Generates a small Makefile used in the root of the output -# directory, to allow make to be started from there. -# The Makefile also allow for more convinient build of external modules - -# Usage -# $1 - Kernel src directory - -if [ "${quiet}" != "silent_" ]; then - echo " GEN Makefile" -fi - -cat << EOF > Makefile -# Automatically generated by $0: don't edit -include $1/Makefile -EOF |