Makefile (1d1352373ebcc627172132f261ea46df0cec767e) Makefile (c8138a57bbd1a13a2e23d34d3f8f338dd5b526ca)
1# SPDX-License-Identifier: GPL-2.0
2# ===========================================================================
3# Kernel configuration targets
4# These targets are used from top-level makefile
5
6PHONY += xconfig gconfig menuconfig config localmodconfig localyesconfig \
7 build_menuconfig build_nconfig build_gconfig build_xconfig
8

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

42
43build_nconfig: $(obj)/nconf
44
45build_gconfig: $(obj)/gconf
46
47build_xconfig: $(obj)/qconf
48
49localyesconfig localmodconfig: $(obj)/conf
1# SPDX-License-Identifier: GPL-2.0
2# ===========================================================================
3# Kernel configuration targets
4# These targets are used from top-level makefile
5
6PHONY += xconfig gconfig menuconfig config localmodconfig localyesconfig \
7 build_menuconfig build_nconfig build_gconfig build_xconfig
8

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

42
43build_nconfig: $(obj)/nconf
44
45build_gconfig: $(obj)/gconf
46
47build_xconfig: $(obj)/qconf
48
49localyesconfig localmodconfig: $(obj)/conf
50 $(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
50 $(Q)$(PERL) $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
51 $(Q)if [ -f .config ]; then \
52 cmp -s .tmp.config .config || \
53 (mv -f .config .config.old.1; \
54 mv -f .tmp.config .config; \
55 $< $(silent) --oldconfig $(Kconfig); \
56 mv -f .config.old.1 .config.old) \
57 else \
58 mv -f .tmp.config .config; \

--- 156 unchanged lines hidden ---
51 $(Q)if [ -f .config ]; then \
52 cmp -s .tmp.config .config || \
53 (mv -f .config .config.old.1; \
54 mv -f .tmp.config .config; \
55 $< $(silent) --oldconfig $(Kconfig); \
56 mv -f .config.old.1 .config.old) \
57 else \
58 mv -f .tmp.config .config; \

--- 156 unchanged lines hidden ---