Makefile 10.9 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5
# ===========================================================================
# Kernel configuration targets
# These targets are used from top-level makefile

M
Michal Marek 已提交
6
PHONY += xconfig gconfig menuconfig config silentoldconfig update-po-config \
7
	localmodconfig localyesconfig
L
Linus Torvalds 已提交
8

A
Al Viro 已提交
9 10 11
ifdef KBUILD_KCONFIG
Kconfig := $(KBUILD_KCONFIG)
else
12
Kconfig := Kconfig
A
Al Viro 已提交
13
endif
14

15 16 17 18
ifeq ($(quiet),silent_)
silent := -s
endif

19 20 21
# We need this, in case the user has it in its environment
unexport CONFIG_

L
Linus Torvalds 已提交
22
xconfig: $(obj)/qconf
23
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
24 25

gconfig: $(obj)/gconf
26
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
27 28

menuconfig: $(obj)/mconf
29
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
30 31

config: $(obj)/conf
32
	$< $(silent) --oldaskconfig $(Kconfig)
L
Linus Torvalds 已提交
33

34
nconfig: $(obj)/nconf
35
	$< $(silent) $(Kconfig)
36

L
Linus Torvalds 已提交
37
silentoldconfig: $(obj)/conf
38
	$(Q)mkdir -p include/config include/generated
39 40
	$(Q)test -e include/generated/autoksyms.h || \
	    touch   include/generated/autoksyms.h
41
	$< $(silent) --$@ $(Kconfig)
L
Linus Torvalds 已提交
42

43
localyesconfig localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
44
	$(Q)mkdir -p include/config include/generated
45
	$(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config
46
	$(Q)if [ -f .config ]; then 					\
S
Sam Ravnborg 已提交
47 48 49
			cmp -s .tmp.config .config ||			\
			(mv -f .config .config.old.1;			\
			 mv -f .tmp.config .config;			\
50
			 $(obj)/conf $(silent) --silentoldconfig $(Kconfig); \
S
Sam Ravnborg 已提交
51 52 53
			 mv -f .config.old.1 .config.old)		\
	else								\
			mv -f .tmp.config .config;			\
54
			$(obj)/conf $(silent) --silentoldconfig $(Kconfig); \
55
	fi
56 57
	$(Q)rm -f .tmp.config

E
EGRY Gabor 已提交
58
# Create new linux.pot file
S
Sam Ravnborg 已提交
59
# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
60
update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
61
	$(Q)$(kecho) "  GEN     config.pot"
62 63 64 65 66
	$(Q)xgettext --default-domain=linux                         \
	    --add-comments --keyword=_ --keyword=N_                 \
	    --from-code=UTF-8                                       \
	    --files-from=$(srctree)/scripts/kconfig/POTFILES.in     \
	    --directory=$(srctree) --directory=$(objtree)           \
S
Sam Ravnborg 已提交
67 68
	    --output $(obj)/config.pot
	$(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
69 70
	$(Q)(for i in `ls $(srctree)/arch/*/Kconfig      \
	    $(srctree)/arch/*/um/Kconfig`;               \
E
EGRY Gabor 已提交
71
	    do                                           \
72
		$(kecho) "  GEN     $$i";                    \
73
		$(obj)/kxgettext $$i                     \
E
EGRY Gabor 已提交
74 75
		     >> $(obj)/config.pot;               \
	    done )
76
	$(Q)$(kecho) "  GEN     linux.pot"
E
EGRY Gabor 已提交
77
	$(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
S
Sam Ravnborg 已提交
78 79
	    --output $(obj)/linux.pot
	$(Q)rm -f $(obj)/config.pot
80

M
Michal Marek 已提交
81 82 83 84
# These targets map 1:1 to the commandline options of 'conf'
simple-targets := oldconfig allnoconfig allyesconfig allmodconfig \
	alldefconfig randconfig listnewconfig olddefconfig
PHONY += $(simple-targets)
L
Linus Torvalds 已提交
85

M
Michal Marek 已提交
86
$(simple-targets): $(obj)/conf
87
	$< $(silent) --$@ $(Kconfig)
L
Linus Torvalds 已提交
88

M
Michal Marek 已提交
89
PHONY += oldnoconfig savedefconfig defconfig
L
Linus Torvalds 已提交
90

91
# oldnoconfig is an alias of olddefconfig, because people already are dependent
92
# on its behavior (sets new symbols to their default value but not 'n') with the
93
# counter-intuitive name.
M
Michal Marek 已提交
94
oldnoconfig: olddefconfig
95 96
	@echo "  WARNING: \"oldnoconfig\" target will be removed after Linux 4.19"
	@echo "            Please use \"olddefconfig\" instead, which is an alias."
97

S
Sam Ravnborg 已提交
98
savedefconfig: $(obj)/conf
99
	$< $(silent) --$@=defconfig $(Kconfig)
S
Sam Ravnborg 已提交
100

L
Linus Torvalds 已提交
101 102
defconfig: $(obj)/conf
ifeq ($(KBUILD_DEFCONFIG),)
103
	$< $(silent) --defconfig $(Kconfig)
104 105
else
ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
106 107
	@$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
108 109 110
else
	@$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
	$(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
L
Linus Torvalds 已提交
111
endif
112
endif
L
Linus Torvalds 已提交
113 114

%_defconfig: $(obj)/conf
115
	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
L
Linus Torvalds 已提交
116

117
configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
118

119 120 121 122
%.config: $(obj)/conf
	$(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
	+$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
123 124

PHONY += kvmconfig
125 126
kvmconfig: kvm_guest.config
	@:
127

128 129 130 131
PHONY += xenconfig
xenconfig: xen.config
	@:

132
PHONY += tinyconfig
133 134
tinyconfig:
	$(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
135

L
Linus Torvalds 已提交
136 137 138
# Help text used by make help
help:
	@echo  '  config	  - Update current config utilising a line-oriented program'
139 140
	@echo  '  nconfig         - Update current config utilising a ncurses menu based'
	@echo  '                    program'
L
Linus Torvalds 已提交
141
	@echo  '  menuconfig	  - Update current config utilising a menu based program'
142
	@echo  '  xconfig	  - Update current config utilising a Qt based front-end'
143
	@echo  '  gconfig	  - Update current config utilising a GTK+ based front-end'
L
Linus Torvalds 已提交
144
	@echo  '  oldconfig	  - Update current config utilising a provided .config as base'
145
	@echo  '  localmodconfig  - Update current config disabling modules not loaded'
146
	@echo  '  localyesconfig  - Update current config converting local mods to core'
147
	@echo  '  silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
S
Sam Ravnborg 已提交
148
	@echo  '  defconfig	  - New config with default from ARCH supplied defconfig'
S
Sam Ravnborg 已提交
149
	@echo  '  savedefconfig   - Save current config as ./defconfig (minimal config)'
150
	@echo  '  allnoconfig	  - New config where all options are answered with no'
S
Sam Ravnborg 已提交
151 152 153 154
	@echo  '  allyesconfig	  - New config where all options are accepted with yes'
	@echo  '  allmodconfig	  - New config selecting modules when possible'
	@echo  '  alldefconfig    - New config with all symbols set to default'
	@echo  '  randconfig	  - New config with random answer to all options'
155
	@echo  '  listnewconfig   - List new options'
156 157
	@echo  '  olddefconfig	  - Same as silentoldconfig but sets new symbols to their'
	@echo  '                    default value'
158
	@echo  '  kvmconfig	  - Enable additional options for kvm guest kernel support'
159
	@echo  '  xenconfig       - Enable additional options for xen dom0 and guest kernel support'
160
	@echo  '  tinyconfig	  - Configure the tiniest possible kernel'
L
Linus Torvalds 已提交
161

162 163 164
# lxdialog stuff
check-lxdialog  := $(srctree)/$(src)/lxdialog/check-lxdialog.sh

165
# Use recursively expanded variables so we do not call gcc unless
166
# we really need to do so. (Do not call gcc as part of make mrproper)
167 168
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
                    -DLOCALE
169

L
Linus Torvalds 已提交
170 171 172
# ===========================================================================
# Shared Makefile for the various kconfig executables:
# conf:	  Used for defconfig, oldconfig and related targets
173 174
# nconf:  Used for the nconfig target.
#         Utilizes ncurses
175
# mconf:  Used for the menuconfig target
L
Linus Torvalds 已提交
176 177
#         Utilizes the lxdialog package
# qconf:  Used for the xconfig target
178
#         Based on Qt which needs to be installed to compile it
L
Linus Torvalds 已提交
179
# gconf:  Used for the gconfig target
180
#         Based on GTK+ which needs to be installed to compile it
L
Linus Torvalds 已提交
181 182
# object files used by all kconfig flavours

183 184 185
lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o

L
Linus Torvalds 已提交
186
conf-objs	:= conf.o  zconf.tab.o
187 188
mconf-objs     := mconf.o zconf.tab.o $(lxdialog)
nconf-objs     := nconf.o zconf.tab.o nconf.gui.o
189
kxgettext-objs	:= kxgettext.o zconf.tab.o
190
qconf-cxxobjs	:= qconf.o
191 192
qconf-objs	:= zconf.tab.o
gconf-objs	:= gconf.o zconf.tab.o
L
Linus Torvalds 已提交
193

194
hostprogs-y := conf nconf mconf kxgettext qconf gconf
L
Linus Torvalds 已提交
195

196
targets		+= zconf.tab.c zconf.lex.c
197
clean-files	:= qconf.moc .tmp_qtcheck .tmp_gtkcheck
198
clean-files	+= zconf.tab.c zconf.lex.c gconf.glade.h
E
EGRY Gabor 已提交
199
clean-files     += config.pot linux.pot
L
Linus Torvalds 已提交
200

201 202
# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
PHONY += $(obj)/dochecklxdialog
203
$(addprefix $(obj)/, mconf.o $(lxdialog)): $(obj)/dochecklxdialog
204
$(obj)/dochecklxdialog:
205
	$(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOSTLOADLIBES_mconf)
206 207 208

always := dochecklxdialog

209 210
# Add environment specific flags
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
211
HOST_EXTRACXXFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCXX) $(HOSTCXXFLAGS))
212

L
Linus Torvalds 已提交
213
# generated files seem to need this to find local include files
A
Arnaud Lacombe 已提交
214
HOSTCFLAGS_zconf.lex.o	:= -I$(src)
L
Linus Torvalds 已提交
215 216
HOSTCFLAGS_zconf.tab.o	:= -I$(src)

217 218
HOSTLOADLIBES_qconf	= $(KC_QT_LIBS)
HOSTCXXFLAGS_qconf.o	= $(KC_QT_CFLAGS)
L
Linus Torvalds 已提交
219

220
HOSTLOADLIBES_gconf	= `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
221
HOSTCFLAGS_gconf.o	= `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
222
                          -Wno-missing-prototypes
L
Linus Torvalds 已提交
223

224 225
HOSTLOADLIBES_mconf   = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))

226
HOSTLOADLIBES_nconf	= $(shell \
227 228
				pkg-config --libs menuw panelw ncursesw 2>/dev/null \
				|| pkg-config --libs menu panel ncurses 2>/dev/null \
229
				|| echo "-lmenu -lpanel -lncurses"  )
L
Linus Torvalds 已提交
230 231
$(obj)/qconf.o: $(obj)/.tmp_qtcheck

232
ifeq ($(MAKECMDGOALS),xconfig)
233
$(obj)/.tmp_qtcheck: $(src)/Makefile
L
Linus Torvalds 已提交
234 235
-include $(obj)/.tmp_qtcheck

236
# Qt needs some extra effort...
L
Linus Torvalds 已提交
237
$(obj)/.tmp_qtcheck:
238
	@set -e; $(kecho) "  CHECK   qt"; \
239 240 241 242 243 244 245 246
	if pkg-config --exists Qt5Core; then \
	    cflags="-std=c++11 -fPIC `pkg-config --cflags Qt5Core Qt5Gui Qt5Widgets`"; \
	    libs=`pkg-config --libs Qt5Core Qt5Gui Qt5Widgets`; \
	    moc=`pkg-config --variable=host_bins Qt5Core`/moc; \
	elif pkg-config --exists QtCore; then \
	    cflags=`pkg-config --cflags QtCore QtGui`; \
	    libs=`pkg-config --libs QtCore QtGui`; \
	    moc=`pkg-config --variable=moc_location QtCore`; \
247
	else \
248
	    echo >&2 "*"; \
249 250
	    echo >&2 "* Could not find Qt via pkg-config."; \
	    echo >&2 "* Please install either Qt 4.8 or 5.x. and make sure it's in PKG_CONFIG_PATH"; \
251 252
	    echo >&2 "*"; \
	    exit 1; \
253 254 255 256
	fi; \
	echo "KC_QT_CFLAGS=$$cflags" > $@; \
	echo "KC_QT_LIBS=$$libs" >> $@; \
	echo "KC_QT_MOC=$$moc" >> $@
L
Linus Torvalds 已提交
257 258 259 260
endif

$(obj)/gconf.o: $(obj)/.tmp_gtkcheck

261
ifeq ($(MAKECMDGOALS),gconfig)
L
Linus Torvalds 已提交
262 263
-include $(obj)/.tmp_gtkcheck

264
# GTK+ needs some extra effort, too...
L
Linus Torvalds 已提交
265
$(obj)/.tmp_gtkcheck:
266 267
	@if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then		\
		if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then			\
L
Linus Torvalds 已提交
268 269
			touch $@;								\
		else									\
270 271 272
			echo >&2 "*"; 							\
			echo >&2 "* GTK+ is present but version >= 2.0.0 is required.";	\
			echo >&2 "*";							\
L
Linus Torvalds 已提交
273 274 275
			false;								\
		fi									\
	else										\
276 277 278 279 280
		echo >&2 "*"; 								\
		echo >&2 "* Unable to find the GTK+ installation. Please make sure that"; 	\
		echo >&2 "* the GTK+ 2.0 development package is correctly installed..."; 	\
		echo >&2 "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; 		\
		echo >&2 "*"; 								\
L
Linus Torvalds 已提交
281 282 283 284
		false;									\
	fi
endif

285
$(obj)/zconf.tab.o: $(obj)/zconf.lex.c
L
Linus Torvalds 已提交
286

287
$(obj)/qconf.o: $(obj)/qconf.moc
L
Linus Torvalds 已提交
288

289 290 291 292 293
quiet_cmd_moc = MOC     $@
      cmd_moc = $(KC_QT_MOC) -i $< -o $@

$(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck
	$(call cmd,moc)
L
Linus Torvalds 已提交
294

295
# Extract gconf menu items for i18n support
296
$(obj)/gconf.glade.h: $(obj)/gconf.glade
P
Peter Foley 已提交
297
	$(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \
298
	$(obj)/gconf.glade