diff options
Diffstat (limited to 'shell/Kbuild.src')
-rw-r--r-- | shell/Kbuild.src | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/Kbuild.src b/shell/Kbuild.src index a287fce4e..34dd93d48 100644 --- a/shell/Kbuild.src +++ b/shell/Kbuild.src | |||
@@ -10,3 +10,13 @@ INSERT | |||
10 | 10 | ||
11 | lib-$(CONFIG_FEATURE_SH_MATH) += math.o | 11 | lib-$(CONFIG_FEATURE_SH_MATH) += math.o |
12 | lib-$(CONFIG_FEATURE_PRNG_SHELL) += random.o | 12 | lib-$(CONFIG_FEATURE_PRNG_SHELL) += random.o |
13 | |||
14 | quiet_cmd_gen_embedded_scripts = GEN include/embedded_scripts.h | ||
15 | cmd_gen_embedded_scripts = $(srctree_slash)shell/embedded_scripts include/embedded_scripts.h embed | ||
16 | |||
17 | ifdef CONFIG_ASH_EMBEDDED_SCRIPTS | ||
18 | shell/ash.o: include/embedded_scripts.h | ||
19 | endif | ||
20 | |||
21 | include/embedded_scripts.h: $(wildcard embed/*) shell/embedded_scripts | ||
22 | $(call cmd,gen_embedded_scripts) | ||