Makefile (b5c00a3a412857d6f07970984068c450429e051c) Makefile (32197c7ffb06b1319850f8fdfa1a49d32a63b79b)
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
5PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \
6 localmodconfig localyesconfig
7
8ifdef KBUILD_KCONFIG

--- 13 unchanged lines hidden (view full) ---

22
23config: $(obj)/conf
24 $< $(Kconfig)
25
26oldconfig: $(obj)/conf
27 $< -o $(Kconfig)
28
29silentoldconfig: $(obj)/conf
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
5PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \
6 localmodconfig localyesconfig
7
8ifdef KBUILD_KCONFIG

--- 13 unchanged lines hidden (view full) ---

22
23config: $(obj)/conf
24 $< $(Kconfig)
25
26oldconfig: $(obj)/conf
27 $< -o $(Kconfig)
28
29silentoldconfig: $(obj)/conf
30 $(Q)mkdir -p include/generated
30 $< -s $(Kconfig)
31
32localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
33 $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config
34 $(Q)if [ -f .config ]; then \
35 cmp -s .tmp.config .config || \
36 (mv -f .config .config.old.1; \
37 mv -f .tmp.config .config; \

--- 284 unchanged lines hidden ---
31 $< -s $(Kconfig)
32
33localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
34 $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config
35 $(Q)if [ -f .config ]; then \
36 cmp -s .tmp.config .config || \
37 (mv -f .config .config.old.1; \
38 mv -f .tmp.config .config; \

--- 284 unchanged lines hidden ---