blob: 59594126e8b67d002de4624c2704178415de5c7b [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
Paul Smith4f193362006-03-05 17:14:10 -05005PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Sam Ravnborg47572382007-10-25 21:04:16 +02007# If a arch/$(SRCARCH)/Kconfig.$(ARCH) file exist use it
8ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/Kconfig.$(ARCH)),)
9 Kconfig := arch/$(SRCARCH)/Kconfig.$(ARCH)
10else
11 Kconfig := arch/$(SRCARCH)/Kconfig
12endif
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 Ravnborge703f752007-10-25 20:42:18 +020024 $< $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26oldconfig: $(obj)/conf
Sam Ravnborge703f752007-10-25 20:42:18 +020027 $< -o $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29silentoldconfig: $(obj)/conf
Sam Ravnborge703f752007-10-25 20:42:18 +020030 $< -s $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Sam Ravnborgb70e325c2007-06-10 20:38:27 +020032# Create new linux.po file
33# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
34# The symlink is used to repair a deficiency in arch/um
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070035update-po-config: $(obj)/kxgettext
Sam Ravnborgb70e325c2007-06-10 20:38:27 +020036 xgettext --default-domain=linux \
37 --add-comments --keyword=_ --keyword=N_ \
38 --from-code=UTF-8 \
39 --files-from=scripts/kconfig/POTFILES.in \
40 --output $(obj)/config.pot
41 $(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
42 $(Q)ln -fs Kconfig.i386 arch/um/Kconfig.arch
43 (for i in `ls arch/`; \
44 do \
45 $(obj)/kxgettext arch/$$i/Kconfig; \
46 done ) >> $(obj)/config.pot
47 msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
48 --output $(obj)/linux.pot
49 $(Q)rm -f arch/um/Kconfig.arch
50 $(Q)rm -f $(obj)/config.pot
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070051
Paul Smith4f193362006-03-05 17:14:10 -050052PHONY += randconfig allyesconfig allnoconfig allmodconfig defconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54randconfig: $(obj)/conf
Sam Ravnborge703f752007-10-25 20:42:18 +020055 $< -r $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57allyesconfig: $(obj)/conf
Sam Ravnborge703f752007-10-25 20:42:18 +020058 $< -y $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60allnoconfig: $(obj)/conf
Sam Ravnborge703f752007-10-25 20:42:18 +020061 $< -n $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63allmodconfig: $(obj)/conf
Sam Ravnborge703f752007-10-25 20:42:18 +020064 $< -m $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66defconfig: $(obj)/conf
67ifeq ($(KBUILD_DEFCONFIG),)
Sam Ravnborge703f752007-10-25 20:42:18 +020068 $< -d $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069else
Sam Ravnborg2266cfd2007-10-25 20:31:19 +020070 @echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
Sam Ravnborge703f752007-10-25 20:42:18 +020071 $(Q)$< -D arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072endif
73
74%_defconfig: $(obj)/conf
Sam Ravnborge703f752007-10-25 20:42:18 +020075 $(Q)$< -D arch/$(SRCARCH)/configs/$@ $(Kconfig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77# Help text used by make help
78help:
79 @echo ' config - Update current config utilising a line-oriented program'
80 @echo ' menuconfig - Update current config utilising a menu based program'
81 @echo ' xconfig - Update current config utilising a QT based front-end'
82 @echo ' gconfig - Update current config utilising a GTK based front-end'
83 @echo ' oldconfig - Update current config utilising a provided .config as base'
Robert P. J. Dayb32c8262006-09-11 12:09:42 -040084 @echo ' silentoldconfig - Same as oldconfig, but quietly'
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 @echo ' randconfig - New config with random answer to all options'
86 @echo ' defconfig - New config with default answer to all options'
87 @echo ' allmodconfig - New config selecting modules when possible'
88 @echo ' allyesconfig - New config where all options are accepted with yes'
Jesper Juhle11f0492006-02-25 21:52:50 +010089 @echo ' allnoconfig - New config where all options are answered with no'
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Sam Ravnborg2982de62006-07-27 22:10:27 +020091# lxdialog stuff
92check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
93
Rob Landleye9e40e12007-10-15 19:23:12 -050094# Use recursively expanded variables so we do not call gcc unless
Sam Ravnborg2982de62006-07-27 22:10:27 +020095# we really need to do so. (Do not call gcc as part of make mrproper)
96HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags)
97HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
98
99HOST_EXTRACFLAGS += -DLOCALE
100
101PHONY += $(obj)/dochecklxdialog
102$(obj)/dochecklxdialog:
103 $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_LOADLIBES)
104
105always := dochecklxdialog
106
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108# ===========================================================================
109# Shared Makefile for the various kconfig executables:
110# conf: Used for defconfig, oldconfig and related targets
111# mconf: Used for the mconfig target.
112# Utilizes the lxdialog package
113# qconf: Used for the xconfig target
114# Based on QT which needs to be installed to compile it
115# gconf: Used for the gconfig target
116# Based on GTK which needs to be installed to compile it
117# object files used by all kconfig flavours
118
Sam Ravnborg2982de62006-07-27 22:10:27 +0200119lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
120lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122conf-objs := conf.o zconf.tab.o
Sam Ravnborg2982de62006-07-27 22:10:27 +0200123mconf-objs := mconf.o zconf.tab.o $(lxdialog)
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700124kxgettext-objs := kxgettext.o zconf.tab.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Sam Ravnborgc29121b2006-09-02 21:32:14 +0200126hostprogs-y := conf qconf gconf kxgettext
127
128ifeq ($(MAKECMDGOALS),menuconfig)
129 hostprogs-y += mconf
130endif
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132ifeq ($(MAKECMDGOALS),xconfig)
133 qconf-target := 1
134endif
135ifeq ($(MAKECMDGOALS),gconfig)
136 gconf-target := 1
137endif
138
139
140ifeq ($(qconf-target),1)
141qconf-cxxobjs := qconf.o
142qconf-objs := kconfig_load.o zconf.tab.o
143endif
144
145ifeq ($(gconf-target),1)
146gconf-objs := gconf.o kconfig_load.o zconf.tab.o
147endif
148
149clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
Roman Zippel7a884882005-11-08 21:34:51 -0800150 .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
Sam Ravnborg145c9042007-04-01 23:14:11 +0200151clean-files += mconf qconf gconf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Sam Ravnborgaa1e5ef2007-08-12 23:15:44 +0200153# Add environment specific flags
154HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
Yuri Vasilevski70a6a0c2005-10-30 15:03:20 -0800155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156# generated files seem to need this to find local include files
157HOSTCFLAGS_lex.zconf.o := -I$(src)
158HOSTCFLAGS_zconf.tab.o := -I$(src)
159
Roman Zippelb3a52252005-11-21 21:32:38 -0800160HOSTLOADLIBES_qconf = $(KC_QT_LIBS) -ldl
161HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS) -D LKC_DIRECT_LINK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Adrian Bunk37193142006-01-02 11:25:30 +0100163HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
164HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 -D LKC_DIRECT_LINK
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167$(obj)/qconf.o: $(obj)/.tmp_qtcheck
168
169ifeq ($(qconf-target),1)
Roman Zippelb3a52252005-11-21 21:32:38 -0800170$(obj)/.tmp_qtcheck: $(src)/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171-include $(obj)/.tmp_qtcheck
172
173# QT needs some extra effort...
174$(obj)/.tmp_qtcheck:
Roman Zippelb3a52252005-11-21 21:32:38 -0800175 @set -e; echo " CHECK qt"; dir=""; pkg=""; \
176 pkg-config --exists qt 2> /dev/null && pkg=qt; \
177 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
178 if [ -n "$$pkg" ]; then \
179 cflags="\$$(shell pkg-config $$pkg --cflags)"; \
180 libs="\$$(shell pkg-config $$pkg --libs)"; \
181 moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \
182 dir="$$(pkg-config $$pkg --variable=prefix)"; \
Sam Ravnborgab919c02005-11-06 11:05:21 +0100183 else \
Roman Zippelb3a52252005-11-21 21:32:38 -0800184 for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
185 if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \
186 done; \
187 if [ -z "$$dir" ]; then \
188 echo "*"; \
Sam Ravnborg9ae57002007-04-29 21:01:52 +0200189 echo "* Unable to find the QT3 installation. Please make sure that"; \
190 echo "* the QT3 development package is correctly installed and"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800191 echo "* either install pkg-config or set the QTDIR environment"; \
192 echo "* variable to the correct location."; \
193 echo "*"; \
194 false; \
195 fi; \
196 libpath=$$dir/lib; lib=qt; osdir=""; \
197 $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
198 osdir=x$$($(HOSTCXX) -print-multi-os-directory); \
199 test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \
200 test -f $$libpath/libqt-mt.so && lib=qt-mt; \
201 cflags="-I$$dir/include"; \
202 libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \
203 moc="$$dir/bin/moc"; \
Sam Ravnborgab919c02005-11-06 11:05:21 +0100204 fi; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800205 if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 echo "*"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800207 echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 echo "*"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800209 moc="/usr/bin/moc"; \
210 fi; \
211 echo "KC_QT_CFLAGS=$$cflags" > $@; \
212 echo "KC_QT_LIBS=$$libs" >> $@; \
213 echo "KC_QT_MOC=$$moc" >> $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214endif
215
216$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
217
218ifeq ($(gconf-target),1)
219-include $(obj)/.tmp_gtkcheck
220
221# GTK needs some extra effort, too...
222$(obj)/.tmp_gtkcheck:
Adrian Bunk37193142006-01-02 11:25:30 +0100223 @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
224 if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 touch $@; \
226 else \
227 echo "*"; \
228 echo "* GTK+ is present but version >= 2.0.0 is required."; \
229 echo "*"; \
230 false; \
231 fi \
232 else \
233 echo "*"; \
234 echo "* Unable to find the GTK+ installation. Please make sure that"; \
235 echo "* the GTK+ 2.0 development package is correctly installed..."; \
236 echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
237 echo "*"; \
238 false; \
239 fi
240endif
241
Roman Zippel7a884882005-11-08 21:34:51 -0800242$(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244$(obj)/kconfig_load.o: $(obj)/lkc_defs.h
245
246$(obj)/qconf.o: $(obj)/qconf.moc $(obj)/lkc_defs.h
247
248$(obj)/gconf.o: $(obj)/lkc_defs.h
249
250$(obj)/%.moc: $(src)/%.h
Roman Zippelb3a52252005-11-21 21:32:38 -0800251 $(KC_QT_MOC) -i $< -o $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253$(obj)/lkc_defs.h: $(src)/lkc_proto.h
254 sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/'
255
256
257###
Roman Zippel7a884882005-11-08 21:34:51 -0800258# The following requires flex/bison/gperf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259# By default we use the _shipped versions, uncomment the following line if
260# you are modifying the flex/bison src.
261# LKC_GENPARSER := 1
262
263ifdef LKC_GENPARSER
264
Roman Zippel491d7112005-11-08 21:34:50 -0800265$(obj)/zconf.tab.c: $(src)/zconf.y
266$(obj)/lex.zconf.c: $(src)/zconf.l
Roman Zippel7a884882005-11-08 21:34:51 -0800267$(obj)/zconf.hash.c: $(src)/zconf.gperf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269%.tab.c: %.y
Roman Zippel491d7112005-11-08 21:34:50 -0800270 bison -l -b $* -p $(notdir $*) $<
271 cp $@ $@_shipped
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273lex.%.c: %.l
Roman Zippel491d7112005-11-08 21:34:50 -0800274 flex -L -P$(notdir $*) -o$@ $<
275 cp $@ $@_shipped
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Roman Zippel7a884882005-11-08 21:34:51 -0800277%.hash.c: %.gperf
278 gperf < $< > $@
279 cp $@ $@_shipped
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281endif