aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2021-05-17 16:03:11 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2021-05-27 03:59:29 +0900
commit2728fcfa4fcc0c4152629c48d49c3bd5f9008329 (patch)
tree15ee584c656d585a562921041f575af0580fa29a /scripts
parentsh: move core-y in arch/sh/Makefile to arch/sh/Kbuild (diff)
downloadlinux-dev-2728fcfa4fcc0c4152629c48d49c3bd5f9008329.tar.xz
linux-dev-2728fcfa4fcc0c4152629c48d49c3bd5f9008329.zip
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-xscripts/mkmakefile17
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