blob: fb2bb3099dd9b3db0ea5c55465fa00fcc1aa6cc0 [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
7xconfig: $(obj)/qconf
8 $< arch/$(ARCH)/Kconfig
9
10gconfig: $(obj)/gconf
11 $< arch/$(ARCH)/Kconfig
12
13menuconfig: $(obj)/mconf
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 $< arch/$(ARCH)/Kconfig
15
16config: $(obj)/conf
17 $< arch/$(ARCH)/Kconfig
18
19oldconfig: $(obj)/conf
20 $< -o arch/$(ARCH)/Kconfig
21
22silentoldconfig: $(obj)/conf
23 $< -s arch/$(ARCH)/Kconfig
24
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070025update-po-config: $(obj)/kxgettext
26 xgettext --default-domain=linux \
27 --add-comments --keyword=_ --keyword=N_ \
28 --files-from=scripts/kconfig/POTFILES.in \
Egry Gabor720d6c22005-09-03 15:55:15 -070029 --output scripts/kconfig/config.pot
30 $(Q)ln -fs Kconfig_i386 arch/um/Kconfig_arch
31 $(Q)for i in `ls arch/`; \
32 do \
33 scripts/kconfig/kxgettext arch/$$i/Kconfig \
34 | msguniq -o scripts/kconfig/linux_$${i}.pot; \
35 done
36 $(Q)msgcat scripts/kconfig/config.pot \
37 `find scripts/kconfig/ -type f -name linux_*.pot` \
38 --output scripts/kconfig/linux_raw.pot
39 $(Q)msguniq --sort-by-file scripts/kconfig/linux_raw.pot \
40 --output scripts/kconfig/linux.pot
41 $(Q)rm -f arch/um/Kconfig_arch
42 $(Q)rm -f scripts/kconfig/linux_*.pot scripts/kconfig/config.pot
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070043
Paul Smith4f193362006-03-05 17:14:10 -050044PHONY += randconfig allyesconfig allnoconfig allmodconfig defconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46randconfig: $(obj)/conf
47 $< -r arch/$(ARCH)/Kconfig
48
49allyesconfig: $(obj)/conf
50 $< -y arch/$(ARCH)/Kconfig
51
52allnoconfig: $(obj)/conf
53 $< -n arch/$(ARCH)/Kconfig
54
55allmodconfig: $(obj)/conf
56 $< -m arch/$(ARCH)/Kconfig
57
58defconfig: $(obj)/conf
59ifeq ($(KBUILD_DEFCONFIG),)
60 $< -d arch/$(ARCH)/Kconfig
61else
62 @echo *** Default configuration is based on '$(KBUILD_DEFCONFIG)'
63 $(Q)$< -D arch/$(ARCH)/configs/$(KBUILD_DEFCONFIG) arch/$(ARCH)/Kconfig
64endif
65
66%_defconfig: $(obj)/conf
67 $(Q)$< -D arch/$(ARCH)/configs/$@ arch/$(ARCH)/Kconfig
68
69# Help text used by make help
70help:
71 @echo ' config - Update current config utilising a line-oriented program'
72 @echo ' menuconfig - Update current config utilising a menu based program'
73 @echo ' xconfig - Update current config utilising a QT based front-end'
74 @echo ' gconfig - Update current config utilising a GTK based front-end'
75 @echo ' oldconfig - Update current config utilising a provided .config as base'
Robert P. J. Dayb32c8262006-09-11 12:09:42 -040076 @echo ' silentoldconfig - Same as oldconfig, but quietly'
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 @echo ' randconfig - New config with random answer to all options'
78 @echo ' defconfig - New config with default answer to all options'
79 @echo ' allmodconfig - New config selecting modules when possible'
80 @echo ' allyesconfig - New config where all options are accepted with yes'
Jesper Juhle11f0492006-02-25 21:52:50 +010081 @echo ' allnoconfig - New config where all options are answered with no'
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Sam Ravnborg2982de62006-07-27 22:10:27 +020083# lxdialog stuff
84check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
85
86# Use reursively expanded variables so we do not call gcc unless
87# we really need to do so. (Do not call gcc as part of make mrproper)
88HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags)
89HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
90
91HOST_EXTRACFLAGS += -DLOCALE
92
93PHONY += $(obj)/dochecklxdialog
94$(obj)/dochecklxdialog:
95 $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_LOADLIBES)
96
97always := dochecklxdialog
98
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100# ===========================================================================
101# Shared Makefile for the various kconfig executables:
102# conf: Used for defconfig, oldconfig and related targets
103# mconf: Used for the mconfig target.
104# Utilizes the lxdialog package
105# qconf: Used for the xconfig target
106# Based on QT which needs to be installed to compile it
107# gconf: Used for the gconfig target
108# Based on GTK which needs to be installed to compile it
109# object files used by all kconfig flavours
110
Sam Ravnborg2982de62006-07-27 22:10:27 +0200111lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
112lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114conf-objs := conf.o zconf.tab.o
Sam Ravnborg2982de62006-07-27 22:10:27 +0200115mconf-objs := mconf.o zconf.tab.o $(lxdialog)
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700116kxgettext-objs := kxgettext.o zconf.tab.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Sam Ravnborgc29121b2006-09-02 21:32:14 +0200118hostprogs-y := conf qconf gconf kxgettext
119
120ifeq ($(MAKECMDGOALS),menuconfig)
121 hostprogs-y += mconf
122endif
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124ifeq ($(MAKECMDGOALS),xconfig)
125 qconf-target := 1
126endif
127ifeq ($(MAKECMDGOALS),gconfig)
128 gconf-target := 1
129endif
130
131
132ifeq ($(qconf-target),1)
133qconf-cxxobjs := qconf.o
134qconf-objs := kconfig_load.o zconf.tab.o
135endif
136
137ifeq ($(gconf-target),1)
138gconf-objs := gconf.o kconfig_load.o zconf.tab.o
139endif
140
141clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
Roman Zippel7a884882005-11-08 21:34:51 -0800142 .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
Sam Ravnborg145c9042007-04-01 23:14:11 +0200143clean-files += mconf qconf gconf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Yuri Vasilevski70a6a0c2005-10-30 15:03:20 -0800145# Needed for systems without gettext
146KBUILD_HAVE_NLS := $(shell \
Yuri Vasilevski4ecc65e2005-11-07 00:57:53 -0800147 if echo "\#include <libintl.h>" | $(HOSTCC) $(HOSTCFLAGS) -E - > /dev/null 2>&1 ; \
Yuri Vasilevski70a6a0c2005-10-30 15:03:20 -0800148 then echo yes ; \
149 else echo no ; fi)
150ifeq ($(KBUILD_HAVE_NLS),no)
Linus Torvalds15508d22006-02-09 08:00:14 -0800151HOSTCFLAGS += -DKBUILD_NO_NLS
Yuri Vasilevski70a6a0c2005-10-30 15:03:20 -0800152endif
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154# generated files seem to need this to find local include files
155HOSTCFLAGS_lex.zconf.o := -I$(src)
156HOSTCFLAGS_zconf.tab.o := -I$(src)
157
Roman Zippelb3a52252005-11-21 21:32:38 -0800158HOSTLOADLIBES_qconf = $(KC_QT_LIBS) -ldl
159HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS) -D LKC_DIRECT_LINK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Adrian Bunk37193142006-01-02 11:25:30 +0100161HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
162HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 -D LKC_DIRECT_LINK
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165$(obj)/qconf.o: $(obj)/.tmp_qtcheck
166
167ifeq ($(qconf-target),1)
Roman Zippelb3a52252005-11-21 21:32:38 -0800168$(obj)/.tmp_qtcheck: $(src)/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169-include $(obj)/.tmp_qtcheck
170
171# QT needs some extra effort...
172$(obj)/.tmp_qtcheck:
Roman Zippelb3a52252005-11-21 21:32:38 -0800173 @set -e; echo " CHECK qt"; dir=""; pkg=""; \
174 pkg-config --exists qt 2> /dev/null && pkg=qt; \
175 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
176 if [ -n "$$pkg" ]; then \
177 cflags="\$$(shell pkg-config $$pkg --cflags)"; \
178 libs="\$$(shell pkg-config $$pkg --libs)"; \
179 moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \
180 dir="$$(pkg-config $$pkg --variable=prefix)"; \
Sam Ravnborgab919c02005-11-06 11:05:21 +0100181 else \
Roman Zippelb3a52252005-11-21 21:32:38 -0800182 for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
183 if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \
184 done; \
185 if [ -z "$$dir" ]; then \
186 echo "*"; \
Sam Ravnborg9ae57002007-04-29 21:01:52 +0200187 echo "* Unable to find the QT3 installation. Please make sure that"; \
188 echo "* the QT3 development package is correctly installed and"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800189 echo "* either install pkg-config or set the QTDIR environment"; \
190 echo "* variable to the correct location."; \
191 echo "*"; \
192 false; \
193 fi; \
194 libpath=$$dir/lib; lib=qt; osdir=""; \
195 $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
196 osdir=x$$($(HOSTCXX) -print-multi-os-directory); \
197 test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \
198 test -f $$libpath/libqt-mt.so && lib=qt-mt; \
199 cflags="-I$$dir/include"; \
200 libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \
201 moc="$$dir/bin/moc"; \
Sam Ravnborgab919c02005-11-06 11:05:21 +0100202 fi; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800203 if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 echo "*"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800205 echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 echo "*"; \
Roman Zippelb3a52252005-11-21 21:32:38 -0800207 moc="/usr/bin/moc"; \
208 fi; \
209 echo "KC_QT_CFLAGS=$$cflags" > $@; \
210 echo "KC_QT_LIBS=$$libs" >> $@; \
211 echo "KC_QT_MOC=$$moc" >> $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212endif
213
214$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
215
216ifeq ($(gconf-target),1)
217-include $(obj)/.tmp_gtkcheck
218
219# GTK needs some extra effort, too...
220$(obj)/.tmp_gtkcheck:
Adrian Bunk37193142006-01-02 11:25:30 +0100221 @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
222 if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 touch $@; \
224 else \
225 echo "*"; \
226 echo "* GTK+ is present but version >= 2.0.0 is required."; \
227 echo "*"; \
228 false; \
229 fi \
230 else \
231 echo "*"; \
232 echo "* Unable to find the GTK+ installation. Please make sure that"; \
233 echo "* the GTK+ 2.0 development package is correctly installed..."; \
234 echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
235 echo "*"; \
236 false; \
237 fi
238endif
239
Roman Zippel7a884882005-11-08 21:34:51 -0800240$(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242$(obj)/kconfig_load.o: $(obj)/lkc_defs.h
243
244$(obj)/qconf.o: $(obj)/qconf.moc $(obj)/lkc_defs.h
245
246$(obj)/gconf.o: $(obj)/lkc_defs.h
247
248$(obj)/%.moc: $(src)/%.h
Roman Zippelb3a52252005-11-21 21:32:38 -0800249 $(KC_QT_MOC) -i $< -o $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251$(obj)/lkc_defs.h: $(src)/lkc_proto.h
252 sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/'
253
254
255###
Roman Zippel7a884882005-11-08 21:34:51 -0800256# The following requires flex/bison/gperf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257# By default we use the _shipped versions, uncomment the following line if
258# you are modifying the flex/bison src.
259# LKC_GENPARSER := 1
260
261ifdef LKC_GENPARSER
262
Roman Zippel491d7112005-11-08 21:34:50 -0800263$(obj)/zconf.tab.c: $(src)/zconf.y
264$(obj)/lex.zconf.c: $(src)/zconf.l
Roman Zippel7a884882005-11-08 21:34:51 -0800265$(obj)/zconf.hash.c: $(src)/zconf.gperf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267%.tab.c: %.y
Roman Zippel491d7112005-11-08 21:34:50 -0800268 bison -l -b $* -p $(notdir $*) $<
269 cp $@ $@_shipped
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271lex.%.c: %.l
Roman Zippel491d7112005-11-08 21:34:50 -0800272 flex -L -P$(notdir $*) -o$@ $<
273 cp $@ $@_shipped
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Roman Zippel7a884882005-11-08 21:34:51 -0800275%.hash.c: %.gperf
276 gperf < $< > $@
277 cp $@ $@_shipped
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279endif