Merge tag 'kvm-3.10-1' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[linux-2.6-block.git] / scripts / kconfig / Makefile
CommitLineData
1da177e4
LT
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
03fa25da 5PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \
281c9dad 6 localmodconfig localyesconfig
1da177e4 7
61bee204
AV
8ifdef KBUILD_KCONFIG
9Kconfig := $(KBUILD_KCONFIG)
10else
838a2e55 11Kconfig := Kconfig
61bee204 12endif
e703f75d 13
c2838e6e
YM
14# We need this, in case the user has it in its environment
15unexport CONFIG_
16
1da177e4 17xconfig: $(obj)/qconf
e703f75d 18 $< $(Kconfig)
1da177e4
LT
19
20gconfig: $(obj)/gconf
e703f75d 21 $< $(Kconfig)
1da177e4
LT
22
23menuconfig: $(obj)/mconf
e703f75d 24 $< $(Kconfig)
1da177e4
LT
25
26config: $(obj)/conf
4062f1a4 27 $< --oldaskconfig $(Kconfig)
1da177e4 28
692d97c3 29nconfig: $(obj)/nconf
30 $< $(Kconfig)
31
1da177e4 32oldconfig: $(obj)/conf
4062f1a4 33 $< --$@ $(Kconfig)
1da177e4
LT
34
35silentoldconfig: $(obj)/conf
32197c7f 36 $(Q)mkdir -p include/generated
4062f1a4 37 $< --$@ $(Kconfig)
1da177e4 38
50bce3e8 39localyesconfig localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
17263baf 40 $(Q)mkdir -p include/generated
22d550ae 41 $(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config
7a996d3a 42 $(Q)if [ -f .config ]; then \
4062f1a4
SR
43 cmp -s .tmp.config .config || \
44 (mv -f .config .config.old.1; \
45 mv -f .tmp.config .config; \
46 $(obj)/conf --silentoldconfig $(Kconfig); \
47 mv -f .config.old.1 .config.old) \
48 else \
49 mv -f .tmp.config .config; \
50 $(obj)/conf --silentoldconfig $(Kconfig); \
a7c02602 51 fi
03fa25da
SR
52 $(Q)rm -f .tmp.config
53
1020026f 54# Create new linux.pot file
b70e325c 55# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
46d26319 56update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
e2aef4d3 57 $(Q)echo " GEN config.pot"
a24a1b8e
PF
58 $(Q)xgettext --default-domain=linux \
59 --add-comments --keyword=_ --keyword=N_ \
60 --from-code=UTF-8 \
61 --files-from=$(srctree)/scripts/kconfig/POTFILES.in \
62 --directory=$(srctree) --directory=$(objtree) \
b70e325c
SR
63 --output $(obj)/config.pot
64 $(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
fa0ad657
PB
65 $(Q)(for i in `ls $(srctree)/arch/*/Kconfig \
66 $(srctree)/arch/*/um/Kconfig`; \
1020026f 67 do \
e2aef4d3 68 echo " GEN $$i"; \
4217516e 69 $(obj)/kxgettext $$i \
1020026f
EG
70 >> $(obj)/config.pot; \
71 done )
e2aef4d3 72 $(Q)echo " GEN linux.pot"
1020026f 73 $(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
b70e325c 74 --output $(obj)/linux.pot
b70e325c 75 $(Q)rm -f $(obj)/config.pot
3b9fa093 76
0748cb3e 77PHONY += allnoconfig allyesconfig allmodconfig alldefconfig randconfig
1da177e4 78
0748cb3e 79allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf
4062f1a4 80 $< --$@ $(Kconfig)
1da177e4 81
fb16d891 82PHONY += listnewconfig olddefconfig oldnoconfig savedefconfig defconfig
1da177e4 83
fb16d891 84listnewconfig olddefconfig: $(obj)/conf
4062f1a4 85 $< --$@ $(Kconfig)
1da177e4 86
fb16d891
AL
87# oldnoconfig is an alias of olddefconfig, because people already are dependent
88# on its behavior(sets new symbols to their default value but not 'n') with the
89# counter-intuitive name.
90oldnoconfig: $(obj)/conf
91 $< --olddefconfig $(Kconfig)
92
7cf3d73b
SR
93savedefconfig: $(obj)/conf
94 $< --$@=defconfig $(Kconfig)
95
1da177e4
LT
96defconfig: $(obj)/conf
97ifeq ($(KBUILD_DEFCONFIG),)
4062f1a4 98 $< --defconfig $(Kconfig)
1da177e4 99else
2266cfd5 100 @echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
4062f1a4 101 $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
1da177e4
LT
102endif
103
104%_defconfig: $(obj)/conf
4062f1a4 105 $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
1da177e4
LT
106
107# Help text used by make help
108help:
109 @echo ' config - Update current config utilising a line-oriented program'
692d97c3 110 @echo ' nconfig - Update current config utilising a ncurses menu based program'
1da177e4
LT
111 @echo ' menuconfig - Update current config utilising a menu based program'
112 @echo ' xconfig - Update current config utilising a QT based front-end'
113 @echo ' gconfig - Update current config utilising a GTK based front-end'
114 @echo ' oldconfig - Update current config utilising a provided .config as base'
03fa25da 115 @echo ' localmodconfig - Update current config disabling modules not loaded'
281c9dad 116 @echo ' localyesconfig - Update current config converting local mods to core'
590a5857 117 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
0748cb3e 118 @echo ' defconfig - New config with default from ARCH supplied defconfig'
7cf3d73b 119 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
e11f0496 120 @echo ' allnoconfig - New config where all options are answered with no'
0748cb3e
SR
121 @echo ' allyesconfig - New config where all options are accepted with yes'
122 @echo ' allmodconfig - New config selecting modules when possible'
123 @echo ' alldefconfig - New config with all symbols set to default'
124 @echo ' randconfig - New config with random answer to all options'
861b4ea4 125 @echo ' listnewconfig - List new options'
fb16d891 126 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
1da177e4 127
2982de69
SR
128# lxdialog stuff
129check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
130
e9e40e14 131# Use recursively expanded variables so we do not call gcc unless
2982de69 132# we really need to do so. (Do not call gcc as part of make mrproper)
9ba95682
AL
133HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
134 -DLOCALE
2982de69 135
1da177e4
LT
136# ===========================================================================
137# Shared Makefile for the various kconfig executables:
138# conf: Used for defconfig, oldconfig and related targets
692d97c3 139# nconf: Used for the nconfig target.
140# Utilizes ncurses
6f26e5e4 141# mconf: Used for the menuconfig target
1da177e4
LT
142# Utilizes the lxdialog package
143# qconf: Used for the xconfig target
144# Based on QT which needs to be installed to compile it
145# gconf: Used for the gconfig target
146# Based on GTK which needs to be installed to compile it
147# object files used by all kconfig flavours
148
2982de69
SR
149lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
150lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
151
1da177e4 152conf-objs := conf.o zconf.tab.o
692d97c3 153mconf-objs := mconf.o zconf.tab.o $(lxdialog)
154nconf-objs := nconf.o zconf.tab.o nconf.gui.o
3b9fa093 155kxgettext-objs := kxgettext.o zconf.tab.o
f1943049 156qconf-cxxobjs := qconf.o
5a6f8d2b
AL
157qconf-objs := zconf.tab.o
158gconf-objs := gconf.o zconf.tab.o
1da177e4 159
d02ab886 160hostprogs-y := conf
c29121b7 161
692d97c3 162ifeq ($(MAKECMDGOALS),nconfig)
163 hostprogs-y += nconf
164endif
165
c29121b7
SR
166ifeq ($(MAKECMDGOALS),menuconfig)
167 hostprogs-y += mconf
168endif
169
1f594715
PF
170ifeq ($(MAKECMDGOALS),update-po-config)
171 hostprogs-y += kxgettext
172endif
173
1da177e4
LT
174ifeq ($(MAKECMDGOALS),xconfig)
175 qconf-target := 1
176endif
177ifeq ($(MAKECMDGOALS),gconfig)
178 gconf-target := 1
179endif
180
181
182ifeq ($(qconf-target),1)
f1943049 183 hostprogs-y += qconf
1da177e4
LT
184endif
185
186ifeq ($(gconf-target),1)
d02ab886 187 hostprogs-y += gconf
1da177e4
LT
188endif
189
5a6f8d2b 190clean-files := qconf.moc .tmp_qtcheck .tmp_gtkcheck
2f76b358 191clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h
692d97c3 192clean-files += mconf qconf gconf nconf
1020026f 193clean-files += config.pot linux.pot
1da177e4 194
6e588f6d
SR
195# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
196PHONY += $(obj)/dochecklxdialog
197$(addprefix $(obj)/,$(lxdialog)): $(obj)/dochecklxdialog
198$(obj)/dochecklxdialog:
7080e47b 199 $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOSTLOADLIBES_mconf)
6e588f6d
SR
200
201always := dochecklxdialog
202
aa1e5ef5
SR
203# Add environment specific flags
204HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
70a6a0cb 205
1da177e4 206# generated files seem to need this to find local include files
2f76b358 207HOSTCFLAGS_zconf.lex.o := -I$(src)
1da177e4
LT
208HOSTCFLAGS_zconf.tab.o := -I$(src)
209
378dbb2c
AL
210LEX_PREFIX_zconf := zconf
211YACC_PREFIX_zconf := zconf
212
5a6f8d2b
AL
213HOSTLOADLIBES_qconf = $(KC_QT_LIBS)
214HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS)
1da177e4 215
5a6f8d2b 216HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
37193147 217HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
1ea3ad4e 218 -Wno-missing-prototypes
1da177e4 219
7080e47b
AL
220HOSTLOADLIBES_mconf = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
221
692d97c3 222HOSTLOADLIBES_nconf = -lmenu -lpanel -lncurses
1da177e4
LT
223$(obj)/qconf.o: $(obj)/.tmp_qtcheck
224
225ifeq ($(qconf-target),1)
b3a5225f 226$(obj)/.tmp_qtcheck: $(src)/Makefile
1da177e4
LT
227-include $(obj)/.tmp_qtcheck
228
229# QT needs some extra effort...
230$(obj)/.tmp_qtcheck:
b3a5225f 231 @set -e; echo " CHECK qt"; dir=""; pkg=""; \
133c5f7c
AS
232 if ! pkg-config --exists QtCore 2> /dev/null; then \
233 echo "* Unable to find the QT4 tool qmake. Trying to use QT3"; \
234 pkg-config --exists qt 2> /dev/null && pkg=qt; \
235 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
236 if [ -n "$$pkg" ]; then \
237 cflags="\$$(shell pkg-config $$pkg --cflags)"; \
238 libs="\$$(shell pkg-config $$pkg --libs)"; \
239 moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \
240 dir="$$(pkg-config $$pkg --variable=prefix)"; \
241 else \
242 for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
243 if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \
244 done; \
245 if [ -z "$$dir" ]; then \
5b580fa6
MM
246 echo >&2 "*"; \
247 echo >&2 "* Unable to find any QT installation. Please make sure that"; \
248 echo >&2 "* the QT4 or QT3 development package is correctly installed and"; \
249 echo >&2 "* either qmake can be found or install pkg-config or set"; \
250 echo >&2 "* the QTDIR environment variable to the correct location."; \
251 echo >&2 "*"; \
133c5f7c
AS
252 false; \
253 fi; \
254 libpath=$$dir/lib; lib=qt; osdir=""; \
255 $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
256 osdir=x$$($(HOSTCXX) -print-multi-os-directory); \
257 test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \
258 test -f $$libpath/libqt-mt.so && lib=qt-mt; \
259 cflags="-I$$dir/include"; \
260 libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \
261 moc="$$dir/bin/moc"; \
262 fi; \
263 if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \
264 echo "*"; \
265 echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \
266 echo "*"; \
267 moc="/usr/bin/moc"; \
268 fi; \
ab919c06 269 else \
458452f4
MM
270 cflags="\$$(shell pkg-config QtCore QtGui Qt3Support --cflags)"; \
271 libs="\$$(shell pkg-config QtCore QtGui Qt3Support --libs)"; \
48485949
YS
272 moc="\$$(shell pkg-config QtCore --variable=moc_location)"; \
273 [ -n "$$moc" ] || moc="\$$(shell pkg-config QtCore --variable=prefix)/bin/moc"; \
b3a5225f
RZ
274 fi; \
275 echo "KC_QT_CFLAGS=$$cflags" > $@; \
276 echo "KC_QT_LIBS=$$libs" >> $@; \
277 echo "KC_QT_MOC=$$moc" >> $@
1da177e4
LT
278endif
279
280$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
281
282ifeq ($(gconf-target),1)
283-include $(obj)/.tmp_gtkcheck
284
285# GTK needs some extra effort, too...
286$(obj)/.tmp_gtkcheck:
37193147
AB
287 @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
288 if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
1da177e4
LT
289 touch $@; \
290 else \
5b580fa6
MM
291 echo >&2 "*"; \
292 echo >&2 "* GTK+ is present but version >= 2.0.0 is required."; \
293 echo >&2 "*"; \
1da177e4
LT
294 false; \
295 fi \
296 else \
5b580fa6
MM
297 echo >&2 "*"; \
298 echo >&2 "* Unable to find the GTK+ installation. Please make sure that"; \
299 echo >&2 "* the GTK+ 2.0 development package is correctly installed..."; \
300 echo >&2 "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
301 echo >&2 "*"; \
1da177e4
LT
302 false; \
303 fi
304endif
305
2f76b358 306$(obj)/zconf.tab.o: $(obj)/zconf.lex.c $(obj)/zconf.hash.c
1da177e4 307
5a6f8d2b 308$(obj)/qconf.o: $(obj)/qconf.moc
1da177e4 309
ebca026a
YS
310quiet_cmd_moc = MOC $@
311 cmd_moc = $(KC_QT_MOC) -i $< -o $@
312
313$(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck
314 $(call cmd,moc)
1da177e4 315
46d26319
EG
316# Extract gconf menu items for I18N support
317$(obj)/gconf.glade.h: $(obj)/gconf.glade
2d80eb0f 318 $(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \
a24a1b8e 319 $(obj)/gconf.glade
1da177e4 320