diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2017-02-24 15:00:52 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-02-24 17:46:57 -0800 |
commit | ba95b045e94fe15cace3a7d3a20fbedb2c6a817e (patch) | |
tree | 12e84736e1adedf5ecfb7931941dd9ebb3698479 /lib/Makefile | |
parent | 5fb7f87408f1534f2c3fadb876dc429cca601104 (diff) | |
download | linux-ba95b045e94fe15cace3a7d3a20fbedb2c6a817e.tar.gz linux-ba95b045e94fe15cace3a7d3a20fbedb2c6a817e.tar.bz2 linux-ba95b045e94fe15cace3a7d3a20fbedb2c6a817e.zip |
lib: add module support to glob tests
Extract the glob test code into its own source file, to allow to compile
it either to a loadable module, or builtin into the kernel.
Link: http://lkml.kernel.org/r/1483470276-10517-2-git-send-email-geert@linux-m68k.org
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index bc9be67b5f8b..d6d53b70f58d 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -162,6 +162,7 @@ obj-$(CONFIG_CORDIC) += cordic.o obj-$(CONFIG_DQL) += dynamic_queue_limits.o obj-$(CONFIG_GLOB) += glob.o +obj-$(CONFIG_GLOB_SELFTEST) += globtest.o obj-$(CONFIG_MPILIB) += mpi/ obj-$(CONFIG_SIGNATURE) += digsig.o |