Makefile 11.3 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

6
PHONY += xconfig gconfig menuconfig config syncconfig 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

37 38
# This has become an internal implementation detail and is now deprecated
# for external use.
39
syncconfig: $(obj)/conf
40
	$(Q)mkdir -p include/config include/generated
41 42
	$(Q)test -e include/generated/autoksyms.h || \
	    touch   include/generated/autoksyms.h
43
	$< $(silent) --$@ $(Kconfig)
L
Linus Torvalds 已提交
44

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

E
EGRY Gabor 已提交
60
# Create new linux.pot file
S
Sam Ravnborg 已提交
61
# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
62
update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
63
	$(Q)$(kecho) "  GEN     config.pot"
64 65 66 67 68
	$(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 已提交
69 70
	    --output $(obj)/config.pot
	$(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
71 72
	$(Q)(for i in `ls $(srctree)/arch/*/Kconfig      \
	    $(srctree)/arch/*/um/Kconfig`;               \
E
EGRY Gabor 已提交
73
	    do                                           \
74
		$(kecho) "  GEN     $$i";                    \
75
		$(obj)/kxgettext $$i                     \
E
EGRY Gabor 已提交
76 77
		     >> $(obj)/config.pot;               \
	    done )
78
	$(Q)$(kecho) "  GEN     linux.pot"
E
EGRY Gabor 已提交
79
	$(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
S
Sam Ravnborg 已提交
80 81
	    --output $(obj)/linux.pot
	$(Q)rm -f $(obj)/config.pot
82

M
Michal Marek 已提交
83 84 85 86
# 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 已提交
87

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

91
PHONY += oldnoconfig silentoldconfig savedefconfig defconfig
L
Linus Torvalds 已提交
92

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

100 101 102 103 104 105 106
# We do not expect manual invokcation of "silentoldcofig" (or "syncconfig").
silentoldconfig: syncconfig
	@echo "  WARNING: \"silentoldconfig\" has been renamed to \"syncconfig\""
	@echo "            and is now an internal implementation detail."
	@echo "            What you want is probably \"oldconfig\"."
	@echo "            \"silentoldconfig\" will be removed after Linux 4.19"

S
Sam Ravnborg 已提交
107
savedefconfig: $(obj)/conf
108
	$< $(silent) --$@=defconfig $(Kconfig)
S
Sam Ravnborg 已提交
109

L
Linus Torvalds 已提交
110 111
defconfig: $(obj)/conf
ifeq ($(KBUILD_DEFCONFIG),)
112
	$< $(silent) --defconfig $(Kconfig)
113 114
else
ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
115 116
	@$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
117 118 119
else
	@$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
	$(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
L
Linus Torvalds 已提交
120
endif
121
endif
L
Linus Torvalds 已提交
122 123

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

126
configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
127

128 129 130 131
%.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
132 133

PHONY += kvmconfig
134 135
kvmconfig: kvm_guest.config
	@:
136

137 138 139 140
PHONY += xenconfig
xenconfig: xen.config
	@:

141
PHONY += tinyconfig
142 143
tinyconfig:
	$(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
144

L
Linus Torvalds 已提交
145 146 147
# Help text used by make help
help:
	@echo  '  config	  - Update current config utilising a line-oriented program'
148 149
	@echo  '  nconfig         - Update current config utilising a ncurses menu based'
	@echo  '                    program'
L
Linus Torvalds 已提交
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'
L
Linus Torvalds 已提交
153
	@echo  '  oldconfig	  - Update current config utilising a provided .config as base'
154
	@echo  '  localmodconfig  - Update current config disabling modules not loaded'
155
	@echo  '  localyesconfig  - Update current config converting local mods to core'
S
Sam Ravnborg 已提交
156
	@echo  '  defconfig	  - New config with default from ARCH supplied defconfig'
S
Sam Ravnborg 已提交
157
	@echo  '  savedefconfig   - Save current config as ./defconfig (minimal config)'
158
	@echo  '  allnoconfig	  - New config where all options are answered with no'
S
Sam Ravnborg 已提交
159 160 161 162
	@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'
163
	@echo  '  listnewconfig   - List new options'
164 165
	@echo  '  olddefconfig	  - Same as oldconfig but sets new symbols to their'
	@echo  '                    default value without prompting'
166
	@echo  '  kvmconfig	  - Enable additional options for kvm guest kernel support'
167
	@echo  '  xenconfig       - Enable additional options for xen dom0 and guest kernel support'
168
	@echo  '  tinyconfig	  - Configure the tiniest possible kernel'
L
Linus Torvalds 已提交
169

170 171 172
# lxdialog stuff
check-lxdialog  := $(srctree)/$(src)/lxdialog/check-lxdialog.sh

173
# Use recursively expanded variables so we do not call gcc unless
174
# we really need to do so. (Do not call gcc as part of make mrproper)
175 176
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
                    -DLOCALE
177

L
Linus Torvalds 已提交
178 179 180
# ===========================================================================
# Shared Makefile for the various kconfig executables:
# conf:	  Used for defconfig, oldconfig and related targets
181 182
# nconf:  Used for the nconfig target.
#         Utilizes ncurses
183
# mconf:  Used for the menuconfig target
L
Linus Torvalds 已提交
184 185
#         Utilizes the lxdialog package
# qconf:  Used for the xconfig target
186
#         Based on Qt which needs to be installed to compile it
L
Linus Torvalds 已提交
187
# gconf:  Used for the gconfig target
188
#         Based on GTK+ which needs to be installed to compile it
L
Linus Torvalds 已提交
189 190
# object files used by all kconfig flavours

191 192 193
lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o

L
Linus Torvalds 已提交
194
conf-objs	:= conf.o  zconf.tab.o
195 196
mconf-objs     := mconf.o zconf.tab.o $(lxdialog)
nconf-objs     := nconf.o zconf.tab.o nconf.gui.o
197
kxgettext-objs	:= kxgettext.o zconf.tab.o
198
qconf-cxxobjs	:= qconf.o
199 200
qconf-objs	:= zconf.tab.o
gconf-objs	:= gconf.o zconf.tab.o
L
Linus Torvalds 已提交
201

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

204
targets		+= zconf.tab.c zconf.lex.c
205
clean-files	:= qconf.moc .tmp_qtcheck .tmp_gtkcheck
206
clean-files	+= zconf.tab.c zconf.lex.c gconf.glade.h
E
EGRY Gabor 已提交
207
clean-files     += config.pot linux.pot
L
Linus Torvalds 已提交
208

209 210
# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
PHONY += $(obj)/dochecklxdialog
211
$(addprefix $(obj)/, mconf.o $(lxdialog)): $(obj)/dochecklxdialog
212
$(obj)/dochecklxdialog:
213
	$(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOSTLOADLIBES_mconf)
214 215 216

always := dochecklxdialog

217 218
# Add environment specific flags
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
219
HOST_EXTRACXXFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCXX) $(HOSTCXXFLAGS))
220

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

225 226
HOSTLOADLIBES_qconf	= $(KC_QT_LIBS)
HOSTCXXFLAGS_qconf.o	= $(KC_QT_CFLAGS)
L
Linus Torvalds 已提交
227

228
HOSTLOADLIBES_gconf	= `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
229
HOSTCFLAGS_gconf.o	= `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
230
                          -Wno-missing-prototypes
L
Linus Torvalds 已提交
231

232 233
HOSTLOADLIBES_mconf   = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))

234
HOSTLOADLIBES_nconf	= $(shell \
235 236
				pkg-config --libs menuw panelw ncursesw 2>/dev/null \
				|| pkg-config --libs menu panel ncurses 2>/dev/null \
237
				|| echo "-lmenu -lpanel -lncurses"  )
L
Linus Torvalds 已提交
238 239
$(obj)/qconf.o: $(obj)/.tmp_qtcheck

240
ifeq ($(MAKECMDGOALS),xconfig)
241
$(obj)/.tmp_qtcheck: $(src)/Makefile
L
Linus Torvalds 已提交
242 243
-include $(obj)/.tmp_qtcheck

244
# Qt needs some extra effort...
L
Linus Torvalds 已提交
245
$(obj)/.tmp_qtcheck:
246
	@set -e; $(kecho) "  CHECK   qt"; \
247 248 249 250 251 252 253 254
	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`; \
255
	else \
256
	    echo >&2 "*"; \
257 258
	    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"; \
259 260
	    echo >&2 "*"; \
	    exit 1; \
261 262 263 264
	fi; \
	echo "KC_QT_CFLAGS=$$cflags" > $@; \
	echo "KC_QT_LIBS=$$libs" >> $@; \
	echo "KC_QT_MOC=$$moc" >> $@
L
Linus Torvalds 已提交
265 266 267 268
endif

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

269
ifeq ($(MAKECMDGOALS),gconfig)
L
Linus Torvalds 已提交
270 271
-include $(obj)/.tmp_gtkcheck

272
# GTK+ needs some extra effort, too...
L
Linus Torvalds 已提交
273
$(obj)/.tmp_gtkcheck:
274 275
	@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 已提交
276 277
			touch $@;								\
		else									\
278 279 280
			echo >&2 "*"; 							\
			echo >&2 "* GTK+ is present but version >= 2.0.0 is required.";	\
			echo >&2 "*";							\
L
Linus Torvalds 已提交
281 282 283
			false;								\
		fi									\
	else										\
284 285 286 287 288
		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 已提交
289 290 291 292
		false;									\
	fi
endif

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

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

297 298 299 300 301
quiet_cmd_moc = MOC     $@
      cmd_moc = $(KC_QT_MOC) -i $< -o $@

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

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