blob: 01bad1bd255015bd836be442d1ee5106e23c91a9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
Steven Rostedt03fa25d2009-04-29 22:52:22 -04005PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \
Steven Rostedt281c9da2009-04-29 22:52:23 -04006 localmodconfig localyesconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Al Viro61bee202008-08-25 04:51:27 -04008ifdef KBUILD_KCONFIG
9Kconfig := $(KBUILD_KCONFIG)
10else
Sam Ravnborgdaa93fa2007-11-12 20:54:30 +010011Kconfig := arch/$(SRCARCH)/Kconfig
Al Viro61bee202008-08-25 04:51:27 -040012endif
Sam Ravnborge703f752007-10-25 20:42:18 +020013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014xconfig: $(obj)/qconf
Sam Ravnborge703f752007-10-25 20:42:18 +020015 $< $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17gconfig: $(obj)/gconf
Sam Ravnborge703f752007-10-25 20:42:18 +020018 $< $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20menuconfig: $(obj)/mconf
Sam Ravnborge703f752007-10-25 20:42:18 +020021 $< $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23config: $(obj)/conf
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020024 $< --oldaskconfig $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +020026nconfig: $(obj)/nconf
27 $< $(Kconfig)
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029oldconfig: $(obj)/conf
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020030 $< --$@ $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32silentoldconfig: $(obj)/conf
Michal Marek32197c72009-11-25 15:14:49 +010033 $(Q)mkdir -p include/generated
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020034 $< --$@ $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Steven Rostedt03fa25d2009-04-29 22:52:22 -040036localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
Steven Rostedt463bf902009-11-20 09:21:12 -050037 $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020038 $(Q)if [ -f .config ]; then \
39 cmp -s .tmp.config .config || \
40 (mv -f .config .config.old.1; \
41 mv -f .tmp.config .config; \
42 $(obj)/conf --silentoldconfig $(Kconfig); \
43 mv -f .config.old.1 .config.old) \
44 else \
45 mv -f .tmp.config .config; \
46 $(obj)/conf --silentoldconfig $(Kconfig); \
Steven Rostedta7c02602009-05-07 11:09:55 -040047 fi
Steven Rostedt03fa25d2009-04-29 22:52:22 -040048 $(Q)rm -f .tmp.config
49
Steven Rostedt48586212009-08-21 12:42:20 -040050localyesconfig: $(obj)/streamline_config.pl $(obj)/conf
Steven Rostedt463bf902009-11-20 09:21:12 -050051 $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config
Steven Rostedt281c9da2009-04-29 22:52:23 -040052 $(Q)sed -i s/=m/=y/ .tmp.config
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020053 $(Q)if [ -f .config ]; then \
54 cmp -s .tmp.config .config || \
55 (mv -f .config .config.old.1; \
56 mv -f .tmp.config .config; \
57 $(obj)/conf --silentoldconfig $(Kconfig); \
58 mv -f .config.old.1 .config.old) \
59 else \
60 mv -f .tmp.config .config; \
61 $(obj)/conf --silentoldconfig $(Kconfig); \
Steven Rostedta7c02602009-05-07 11:09:55 -040062 fi
Steven Rostedt281c9da2009-04-29 22:52:23 -040063 $(Q)rm -f .tmp.config
64
EGRY Gabor10200262008-01-11 23:40:00 +010065# Create new linux.pot file
Sam Ravnborgb70e325c2007-06-10 20:38:27 +020066# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
67# The symlink is used to repair a deficiency in arch/um
EGRY Gabor46d26312008-01-11 23:46:11 +010068update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
EGRY Gabor10200262008-01-11 23:40:00 +010069 $(Q)echo " GEN config"
70 $(Q)xgettext --default-domain=linux \
Sam Ravnborgb70e325c2007-06-10 20:38:27 +020071 --add-comments --keyword=_ --keyword=N_ \
72 --from-code=UTF-8 \
73 --files-from=scripts/kconfig/POTFILES.in \
74 --output $(obj)/config.pot
75 $(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
76 $(Q)ln -fs Kconfig.i386 arch/um/Kconfig.arch
Sam Ravnborg42175162008-04-25 21:15:41 +020077 $(Q)(for i in `ls arch/*/Kconfig`; \
EGRY Gabor10200262008-01-11 23:40:00 +010078 do \
79 echo " GEN $$i"; \
Sam Ravnborg42175162008-04-25 21:15:41 +020080 $(obj)/kxgettext $$i \
EGRY Gabor10200262008-01-11 23:40:00 +010081 >> $(obj)/config.pot; \
82 done )
83 $(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
Sam Ravnborgb70e325c2007-06-10 20:38:27 +020084 --output $(obj)/linux.pot
85 $(Q)rm -f arch/um/Kconfig.arch
86 $(Q)rm -f $(obj)/config.pot
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070087
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020088PHONY += allnoconfig allyesconfig allmodconfig randconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020090allnoconfig allyesconfig allmodconfig randconfig: $(obj)/conf
91 $< --$@ $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Sam Ravnborg861b4ea2010-07-31 23:35:28 +020093PHONY += listnewconfig oldnoconfig defconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Sam Ravnborg861b4ea2010-07-31 23:35:28 +020095listnewconfig oldnoconfig: $(obj)/conf
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020096 $< --$@ $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98defconfig: $(obj)/conf
99ifeq ($(KBUILD_DEFCONFIG),)
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200100 $< --defconfig $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101else
Sam Ravnborg2266cfd2007-10-25 20:31:19 +0200102 @echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200103 $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104endif
105
106%_defconfig: $(obj)/conf
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200107 $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109# Help text used by make help
110help:
111 @echo ' config - Update current config utilising a line-oriented program'
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +0200112 @echo ' nconfig - Update current config utilising a ncurses menu based program'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 @echo ' menuconfig - Update current config utilising a menu based program'
114 @echo ' xconfig - Update current config utilising a QT based front-end'
115 @echo ' gconfig - Update current config utilising a GTK based front-end'
116 @echo ' oldconfig - Update current config utilising a provided .config as base'
Steven Rostedt03fa25d2009-04-29 22:52:22 -0400117 @echo ' localmodconfig - Update current config disabling modules not loaded'
Steven Rostedt281c9da2009-04-29 22:52:23 -0400118 @echo ' localyesconfig - Update current config converting local mods to core'
Markus Heidelberg590a5852009-05-18 01:36:46 +0200119 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 @echo ' randconfig - New config with random answer to all options'
121 @echo ' defconfig - New config with default answer to all options'
122 @echo ' allmodconfig - New config selecting modules when possible'
123 @echo ' allyesconfig - New config where all options are accepted with yes'
Jesper Juhle11f0492006-02-25 21:52:50 +0100124 @echo ' allnoconfig - New config where all options are answered with no'
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200125 @echo ' listnewconfig - List new options'
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200126 @echo ' oldnoconfig - Same as silentoldconfig but set new symbols to n (unset)'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Sam Ravnborg2982de62006-07-27 22:10:27 +0200128# lxdialog stuff
129check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
130
Rob Landleye9e40e12007-10-15 19:23:12 -0500131# Use recursively expanded variables so we do not call gcc unless
Sam Ravnborg2982de62006-07-27 22:10:27 +0200132# we really need to do so. (Do not call gcc as part of make mrproper)
133HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags)
134HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
135
136HOST_EXTRACFLAGS += -DLOCALE
137
Sam Ravnborg2982de62006-07-27 22:10:27 +0200138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139# ===========================================================================
140# Shared Makefile for the various kconfig executables:
141# conf: Used for defconfig, oldconfig and related targets
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +0200142# nconf: Used for the nconfig target.
143# Utilizes ncurses
Markus Heidelberg6f26e5e2009-05-18 01:36:45 +0200144# mconf: Used for the menuconfig target
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145# Utilizes the lxdialog package
146# qconf: Used for the xconfig target
147# Based on QT which needs to be installed to compile it
148# gconf: Used for the gconfig target
149# Based on GTK which needs to be installed to compile it
150# object files used by all kconfig flavours
151
Sam Ravnborg2982de62006-07-27 22:10:27 +0200152lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
153lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155conf-objs := conf.o zconf.tab.o
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +0200156mconf-objs := mconf.o zconf.tab.o $(lxdialog)
157nconf-objs := nconf.o zconf.tab.o nconf.gui.o
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700158kxgettext-objs := kxgettext.o zconf.tab.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Sam Ravnborgc29121b2006-09-02 21:32:14 +0200160hostprogs-y := conf qconf gconf kxgettext
161
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +0200162ifeq ($(MAKECMDGOALS),nconfig)
163 hostprogs-y += nconf
164endif
165
Sam Ravnborgc29121b2006-09-02 21:32:14 +0200166ifeq ($(MAKECMDGOALS),menuconfig)
167 hostprogs-y += mconf
168endif
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170ifeq ($(MAKECMDGOALS),xconfig)
171 qconf-target := 1
172endif
173ifeq ($(MAKECMDGOALS),gconfig)
174 gconf-target := 1
175endif
176
177
178ifeq ($(qconf-target),1)
179qconf-cxxobjs := qconf.o
180qconf-objs := kconfig_load.o zconf.tab.o
181endif
182
183ifeq ($(gconf-target),1)
184gconf-objs := gconf.o kconfig_load.o zconf.tab.o
185endif
186
187clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
EGRY Gabor46d26312008-01-11 23:46:11 +0100188 .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c gconf.glade.h
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +0200189clean-files += mconf qconf gconf nconf
EGRY Gabor10200262008-01-11 23:40:00 +0100190clean-files += config.pot linux.pot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Sam Ravnborg6e588f62007-12-09 20:11:15 +0100192# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
193PHONY += $(obj)/dochecklxdialog
194$(addprefix $(obj)/,$(lxdialog)): $(obj)/dochecklxdialog
195$(obj)/dochecklxdialog:
196 $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOST_LOADLIBES)
197
198always := dochecklxdialog
199
Sam Ravnborgaa1e5ef2007-08-12 23:15:44 +0200200# Add environment specific flags
201HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
Yuri Vasilevski70a6a0c2005-10-30 15:03:20 -0800202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203# generated files seem to need this to find local include files
204HOSTCFLAGS_lex.zconf.o := -I$(src)
205HOSTCFLAGS_zconf.tab.o := -I$(src)
206
Roman Zippelb3a52252005-11-21 21:32:38 -0800207HOSTLOADLIBES_qconf = $(KC_QT_LIBS) -ldl
208HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS) -D LKC_DIRECT_LINK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Adrian Bunk37193142006-01-02 11:25:30 +0100210HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
211HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 -D LKC_DIRECT_LINK
213
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +0200214HOSTLOADLIBES_nconf = -lmenu -lpanel -lncurses
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215$(obj)/qconf.o: $(obj)/.tmp_qtcheck
216
217ifeq ($(qconf-target),1)
Roman Zippelb3a52252005-11-21 21:32:38 -0800218$(obj)/.tmp_qtcheck: $(src)/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219-include $(obj)/.tmp_qtcheck
220
221# QT needs some extra effort...
222$(obj)/.tmp_qtcheck:
Roman Zippelb3a52252005-11-21 21:32:38 -0800223 @set -e; echo " CHECK qt"; dir=""; pkg=""; \
224 pkg-config --exists qt 2> /dev/null && pkg=qt; \
225 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
226 if [ -n "$$pkg" ]; then \
227 cflags="\$$(shell pkg-config $$pkg --cflags)"; \
228 libs="\$$(shell pkg-config $$pkg --libs)"; \
229 moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \
230 dir="$$(pkg-config $$pkg --variable=prefix)"; \
Sam Ravnborgab919c02005-11-06 11:05:21 +0100231 else \
Roman Zippelb3a52252005-11-21 21:32:38 -0800232 for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
233 if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \
234 done; \
235 if [ -z "$$dir" ]; then \
236 echo "*"; \
Sam Ravnborg9ae57002007-04-29 21:01:52 +0200237 echo "* Unable to find the QT3 installation. Please make sure that"; \
238 echo "* the QT3 development package is correctly installed and"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800239 echo "* either install pkg-config or set the QTDIR environment"; \
240 echo "* variable to the correct location."; \
241 echo "*"; \
242 false; \
243 fi; \
244 libpath=$$dir/lib; lib=qt; osdir=""; \
245 $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
246 osdir=x$$($(HOSTCXX) -print-multi-os-directory); \
247 test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \
248 test -f $$libpath/libqt-mt.so && lib=qt-mt; \
249 cflags="-I$$dir/include"; \
250 libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \
251 moc="$$dir/bin/moc"; \
Sam Ravnborgab919c02005-11-06 11:05:21 +0100252 fi; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800253 if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 echo "*"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800255 echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 echo "*"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800257 moc="/usr/bin/moc"; \
258 fi; \
259 echo "KC_QT_CFLAGS=$$cflags" > $@; \
260 echo "KC_QT_LIBS=$$libs" >> $@; \
261 echo "KC_QT_MOC=$$moc" >> $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262endif
263
264$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
265
266ifeq ($(gconf-target),1)
267-include $(obj)/.tmp_gtkcheck
268
269# GTK needs some extra effort, too...
270$(obj)/.tmp_gtkcheck:
Adrian Bunk37193142006-01-02 11:25:30 +0100271 @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
272 if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 touch $@; \
274 else \
275 echo "*"; \
276 echo "* GTK+ is present but version >= 2.0.0 is required."; \
277 echo "*"; \
278 false; \
279 fi \
280 else \
281 echo "*"; \
282 echo "* Unable to find the GTK+ installation. Please make sure that"; \
283 echo "* the GTK+ 2.0 development package is correctly installed..."; \
284 echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
285 echo "*"; \
286 false; \
287 fi
288endif
289
Roman Zippel7a884882005-11-08 21:34:51 -0800290$(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292$(obj)/kconfig_load.o: $(obj)/lkc_defs.h
293
294$(obj)/qconf.o: $(obj)/qconf.moc $(obj)/lkc_defs.h
295
296$(obj)/gconf.o: $(obj)/lkc_defs.h
297
298$(obj)/%.moc: $(src)/%.h
Roman Zippelb3a52252005-11-21 21:32:38 -0800299 $(KC_QT_MOC) -i $< -o $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301$(obj)/lkc_defs.h: $(src)/lkc_proto.h
302 sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/'
303
EGRY Gabor46d26312008-01-11 23:46:11 +0100304# Extract gconf menu items for I18N support
305$(obj)/gconf.glade.h: $(obj)/gconf.glade
306 intltool-extract --type=gettext/glade $(obj)/gconf.glade
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308###
Roman Zippel7a884882005-11-08 21:34:51 -0800309# The following requires flex/bison/gperf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310# By default we use the _shipped versions, uncomment the following line if
311# you are modifying the flex/bison src.
312# LKC_GENPARSER := 1
313
314ifdef LKC_GENPARSER
315
Roman Zippel491d7112005-11-08 21:34:50 -0800316$(obj)/zconf.tab.c: $(src)/zconf.y
317$(obj)/lex.zconf.c: $(src)/zconf.l
Roman Zippel7a884882005-11-08 21:34:51 -0800318$(obj)/zconf.hash.c: $(src)/zconf.gperf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320%.tab.c: %.y
Roman Zippel491d7112005-11-08 21:34:50 -0800321 bison -l -b $* -p $(notdir $*) $<
322 cp $@ $@_shipped
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324lex.%.c: %.l
Roman Zippel491d7112005-11-08 21:34:50 -0800325 flex -L -P$(notdir $*) -o$@ $<
326 cp $@ $@_shipped
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Roman Zippel7a884882005-11-08 21:34:51 -0800328%.hash.c: %.gperf
329 gperf < $< > $@
330 cp $@ $@_shipped
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332endif