diff options
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r-- | scripts/kconfig/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 77d53999ffb9..3091794e9354 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -76,11 +76,17 @@ PHONY += allnoconfig allyesconfig allmodconfig alldefconfig randconfig | |||
76 | allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf | 76 | allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf |
77 | $< --$@ $(Kconfig) | 77 | $< --$@ $(Kconfig) |
78 | 78 | ||
79 | PHONY += listnewconfig oldnoconfig savedefconfig defconfig | 79 | PHONY += listnewconfig olddefconfig oldnoconfig savedefconfig defconfig |
80 | 80 | ||
81 | listnewconfig oldnoconfig: $(obj)/conf | 81 | listnewconfig olddefconfig: $(obj)/conf |
82 | $< --$@ $(Kconfig) | 82 | $< --$@ $(Kconfig) |
83 | 83 | ||
84 | # oldnoconfig is an alias of olddefconfig, because people already are dependent | ||
85 | # on its behavior(sets new symbols to their default value but not 'n') with the | ||
86 | # counter-intuitive name. | ||
87 | oldnoconfig: $(obj)/conf | ||
88 | $< --olddefconfig $(Kconfig) | ||
89 | |||
84 | savedefconfig: $(obj)/conf | 90 | savedefconfig: $(obj)/conf |
85 | $< --$@=defconfig $(Kconfig) | 91 | $< --$@=defconfig $(Kconfig) |
86 | 92 | ||
@@ -114,7 +120,7 @@ help: | |||
114 | @echo ' alldefconfig - New config with all symbols set to default' | 120 | @echo ' alldefconfig - New config with all symbols set to default' |
115 | @echo ' randconfig - New config with random answer to all options' | 121 | @echo ' randconfig - New config with random answer to all options' |
116 | @echo ' listnewconfig - List new options' | 122 | @echo ' listnewconfig - List new options' |
117 | @echo ' oldnoconfig - Same as silentoldconfig but sets new symbols to their default value' | 123 | @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value' |
118 | 124 | ||
119 | # lxdialog stuff | 125 | # lxdialog stuff |
120 | check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh | 126 | check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh |