Makefile (2a61625835c7c89c5f00de458a213d59ac54db21) Makefile (022a4bf6b59dfdb192ca8aef291c7346f984e511)
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 syncconfig update-po-config \
7 localmodconfig localyesconfig
8

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

137PHONY += xenconfig
138xenconfig: xen.config
139 @:
140
141PHONY += tinyconfig
142tinyconfig:
143 $(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
144
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 syncconfig update-po-config \
7 localmodconfig localyesconfig
8

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

137PHONY += xenconfig
138xenconfig: xen.config
139 @:
140
141PHONY += tinyconfig
142tinyconfig:
143 $(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
144
145# CHECK: -o cache_dir=<path> working?
146PHONY += testconfig
147testconfig: $(obj)/conf
148 $(PYTHON3) -B -m pytest $(srctree)/$(src)/tests \
149 -o cache_dir=$(abspath $(obj)/tests/.cache) \
150 $(if $(findstring 1,$(KBUILD_VERBOSE)),--capture=no)
151clean-dirs += tests/.cache
152
145# Help text used by make help
146help:
147 @echo ' config - Update current config utilising a line-oriented program'
148 @echo ' nconfig - Update current config utilising a ncurses menu based'
149 @echo ' program'
150 @echo ' menuconfig - Update current config utilising a menu based program'
151 @echo ' xconfig - Update current config utilising a Qt based front-end'
152 @echo ' gconfig - Update current config utilising a GTK+ based front-end'

--- 154 unchanged lines hidden ---
153# Help text used by make help
154help:
155 @echo ' config - Update current config utilising a line-oriented program'
156 @echo ' nconfig - Update current config utilising a ncurses menu based'
157 @echo ' program'
158 @echo ' menuconfig - Update current config utilising a menu based program'
159 @echo ' xconfig - Update current config utilising a Qt based front-end'
160 @echo ' gconfig - Update current config utilising a GTK+ based front-end'

--- 154 unchanged lines hidden ---