summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada2018-11-20 16:04:18 +0100
committerMasahiro Yamada2018-12-01 14:21:56 +0100
commit0126be38d98815d25d9ec4573541ed4315bf6a88 (patch)
treeb790b96624f57ca8ab81469181b191c95b64cde0 /Makefile
parentmodpost: drop unused command line switches (diff)
downloadkernel-qcow2-linux-0126be38d98815d25d9ec4573541ed4315bf6a88.tar.gz
kernel-qcow2-linux-0126be38d98815d25d9ec4573541ed4315bf6a88.tar.xz
kernel-qcow2-linux-0126be38d98815d25d9ec4573541ed4315bf6a88.zip
kbuild: announce removal of SUBDIRS if used
SUBDIRS has been kept as a backward compatibility since commit ("[PATCH] kbuild: external module support") in 2002. We do not need multiple ways to do the same thing, so I will remove SUBDIRS after the Linux 5.3 release. I cleaned up in-tree code, and updated the document so that nobody would try to use it. Meanwhile, display the following warning if SUBDIRS is used. Makefile:189: ================= WARNING ================ Makefile:190: 'SUBDIRS' will be removed after Linux 5.3 Makefile:191: Please use 'M=' or 'KBUILD_EXTMOD' instead Makefile:192: ========================================== Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Boris Brezillon <boris.brezillon@bootlin.com> # for scx200_docflash.c Acked-by: Guenter Roeck <linux@roeck-us.net> # for scx200_wdt.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 96b4ea5adf91..9fcd8f81809c 100644
--- a/Makefile
+++ b/Makefile
@@ -186,6 +186,10 @@ endif
# Old syntax make ... SUBDIRS=$PWD is still supported
# Setting the environment variable KBUILD_EXTMOD take precedence
ifdef SUBDIRS
+ $(warning ================= WARNING ================)
+ $(warning 'SUBDIRS' will be removed after Linux 5.3)
+ $(warning Please use 'M=' or 'KBUILD_EXTMOD' instead)
+ $(warning ==========================================)
KBUILD_EXTMOD ?= $(SUBDIRS)
endif