blob: f56863f7ca45cdb52f8a5f6daa0de33c119b945b [file] [log] [blame]
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00001# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
5PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config
6
7xconfig: $(obj)/qconf
8 $< Config.in
9
10gconfig: $(obj)/gconf
11 $< Config.in
12
13menuconfig: $(obj)/mconf
14 $(Q)$(MAKE) $(build)=scripts/kconfig/lxdialog
15 $< Config.in
16
17config: $(obj)/conf
18 $< Config.in
19
20oldconfig: $(obj)/conf
21 $< -o Config.in
22
23silentoldconfig: $(obj)/conf
24 $< -s Config.in
25
26update-po-config: $(obj)/kxgettext
27 xgettext --default-domain=linux \
28 --add-comments --keyword=_ --keyword=N_ \
29 --files-from=scripts/kconfig/POTFILES.in \
30 --output scripts/kconfig/config.pot
31 $(Q)ln -fs Kconfig_i386 arch/um/Kconfig_arch
32 $(Q)for i in `ls arch/`; \
33 do \
34 scripts/kconfig/kxgettext arch/$$i/Kconfig \
35 | msguniq -o scripts/kconfig/linux_$${i}.pot; \
36 done
37 $(Q)msgcat scripts/kconfig/config.pot \
38 `find scripts/kconfig/ -type f -name linux_*.pot` \
39 --output scripts/kconfig/linux_raw.pot
40 $(Q)msguniq --sort-by-file scripts/kconfig/linux_raw.pot \
41 --output scripts/kconfig/linux.pot
42 $(Q)rm -f arch/um/Kconfig_arch
43 $(Q)rm -f scripts/kconfig/linux_*.pot scripts/kconfig/config.pot
44
45PHONY += randconfig allyesconfig allnoconfig allmodconfig defconfig
46
47randconfig: $(obj)/conf
48 $< -r Config.in
49
50allyesconfig: $(obj)/conf
51 $< -y Config.in
52
53allnoconfig: $(obj)/conf
54 $< -n Config.in
55
56allmodconfig: $(obj)/conf
57 $< -m Config.in
58
59defconfig: $(obj)/conf
60ifeq ($(KBUILD_DEFCONFIG),)
61 $< -d Config.in
62else
63 @echo *** Default configuration is based on '$(KBUILD_DEFCONFIG)'
64 $(Q)$< -D $(KBUILD_DEFCONFIG) Config.in
65endif
66
67%_defconfig: $(obj)/conf
68 $(Q)$< -D $@ Config.in
69
70# Help text used by make help
71help:
72 @echo ' config - Update current config utilising a line-oriented program'
73 @echo ' menuconfig - Update current config utilising a menu based program'
74 @echo ' xconfig - Update current config utilising a QT based front-end'
75 @echo ' gconfig - Update current config utilising a GTK based front-end'
76 @echo ' oldconfig - Update current config utilising a provided .config as base'
77 @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'
81 @echo ' allnoconfig - New config where all options are answered with no'
82
83# ===========================================================================
84# Shared Makefile for the various kconfig executables:
85# conf: Used for defconfig, oldconfig and related targets
86# mconf: Used for the mconfig target.
87# Utilizes the lxdialog package
88# qconf: Used for the xconfig target
89# Based on QT which needs to be installed to compile it
90# gconf: Used for the gconfig target
91# Based on GTK which needs to be installed to compile it
92# object files used by all kconfig flavours
93
94hostprogs-y := conf mconf qconf gconf kxgettext
95conf-objs := conf.o zconf.tab.o
96mconf-objs := mconf.o zconf.tab.o
97kxgettext-objs := kxgettext.o zconf.tab.o
98
99ifeq ($(MAKECMDGOALS),xconfig)
100 qconf-target := 1
101endif
102ifeq ($(MAKECMDGOALS),gconfig)
103 gconf-target := 1
104endif
105
106
107ifeq ($(qconf-target),1)
108qconf-cxxobjs := qconf.o
109qconf-objs := kconfig_load.o zconf.tab.o
110endif
111
112ifeq ($(gconf-target),1)
113gconf-objs := gconf.o kconfig_load.o zconf.tab.o
114endif
115
116clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
117 .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
118subdir- += lxdialog
119
Mike Frysingere13bd362007-11-18 06:17:52 +0000120# Add environment specific flags
121HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000122
123# generated files seem to need this to find local include files
124HOSTCFLAGS_lex.zconf.o := -I$(src)
125HOSTCFLAGS_zconf.tab.o := -I$(src)
126
127HOSTLOADLIBES_qconf = $(KC_QT_LIBS) -ldl
128HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS) -D LKC_DIRECT_LINK
129
130HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
131HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
132 -D LKC_DIRECT_LINK
133
134$(obj)/qconf.o: $(obj)/.tmp_qtcheck
135
136ifeq ($(qconf-target),1)
137$(obj)/.tmp_qtcheck: $(src)/Makefile
138-include $(obj)/.tmp_qtcheck
139
140# QT needs some extra effort...
141$(obj)/.tmp_qtcheck:
142 @set -e; echo " CHECK qt"; dir=""; pkg=""; \
143 pkg-config --exists qt 2> /dev/null && pkg=qt; \
144 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
145 if [ -n "$$pkg" ]; then \
146 cflags="\$$(shell pkg-config $$pkg --cflags)"; \
147 libs="\$$(shell pkg-config $$pkg --libs)"; \
148 moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \
149 dir="$$(pkg-config $$pkg --variable=prefix)"; \
150 else \
151 for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
152 if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \
153 done; \
154 if [ -z "$$dir" ]; then \
155 echo "*"; \
156 echo "* Unable to find the QT installation. Please make sure that"; \
157 echo "* the QT development package is correctly installed and"; \
158 echo "* either install pkg-config or set the QTDIR environment"; \
159 echo "* variable to the correct location."; \
160 echo "*"; \
161 false; \
162 fi; \
163 libpath=$$dir/lib; lib=qt; osdir=""; \
164 $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
165 osdir=x$$($(HOSTCXX) -print-multi-os-directory); \
166 test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \
167 test -f $$libpath/libqt-mt.so && lib=qt-mt; \
168 cflags="-I$$dir/include"; \
169 libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \
170 moc="$$dir/bin/moc"; \
171 fi; \
172 if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \
173 echo "*"; \
174 echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \
175 echo "*"; \
176 moc="/usr/bin/moc"; \
177 fi; \
178 echo "KC_QT_CFLAGS=$$cflags" > $@; \
179 echo "KC_QT_LIBS=$$libs" >> $@; \
180 echo "KC_QT_MOC=$$moc" >> $@
181endif
182
183$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
184
185ifeq ($(gconf-target),1)
186-include $(obj)/.tmp_gtkcheck
187
188# GTK needs some extra effort, too...
189$(obj)/.tmp_gtkcheck:
190 @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
191 if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
192 touch $@; \
193 else \
194 echo "*"; \
195 echo "* GTK+ is present but version >= 2.0.0 is required."; \
196 echo "*"; \
197 false; \
198 fi \
199 else \
200 echo "*"; \
201 echo "* Unable to find the GTK+ installation. Please make sure that"; \
202 echo "* the GTK+ 2.0 development package is correctly installed..."; \
203 echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
204 echo "*"; \
205 false; \
206 fi
207endif
208
209$(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c
210
211$(obj)/kconfig_load.o: $(obj)/lkc_defs.h
212
213$(obj)/qconf.o: $(obj)/qconf.moc $(obj)/lkc_defs.h
214
215$(obj)/gconf.o: $(obj)/lkc_defs.h
216
217$(obj)/%.moc: $(src)/%.h
218 $(KC_QT_MOC) -i $< -o $@
219
220$(obj)/lkc_defs.h: $(src)/lkc_proto.h
221 sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/'
222
223
224###
225# The following requires flex/bison/gperf
226# By default we use the _shipped versions, uncomment the following line if
227# you are modifying the flex/bison src.
228# LKC_GENPARSER := 1
229
230ifdef LKC_GENPARSER
231
232$(obj)/zconf.tab.c: $(src)/zconf.y
233$(obj)/lex.zconf.c: $(src)/zconf.l
234$(obj)/zconf.hash.c: $(src)/zconf.gperf
235
236%.tab.c: %.y
237 bison -l -b $* -p $(notdir $*) $<
238 cp $@ $@_shipped
239
240lex.%.c: %.l
241 flex -L -P$(notdir $*) -o$@ $<
242 cp $@ $@_shipped
243
244%.hash.c: %.gperf
245 gperf < $< > $@
246 cp $@ $@_shipped
247
248endif