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

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

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

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

115
configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
116

117 118 119 120
%.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
121 122

PHONY += kvmconfig
123 124
kvmconfig: kvm_guest.config
	@:
125

126 127 128 129
PHONY += xenconfig
xenconfig: xen.config
	@:

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

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

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

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

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

181 182 183
lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o

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

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

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

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

always := dochecklxdialog

207 208
# Add environment specific flags
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
209

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

214 215 216
LEX_PREFIX_zconf	:= zconf
YACC_PREFIX_zconf	:= zconf

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