]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - scripts/kconfig/Makefile
kconfig/lxdialog: fix make mrproper
[mirror_ubuntu-jammy-kernel.git] / scripts / kconfig / Makefile
1 # ===========================================================================
2 # Kernel configuration targets
3 # These targets are used from top-level makefile
4
5 PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config
6
7 xconfig: $(obj)/qconf
8 $< arch/$(ARCH)/Kconfig
9
10 gconfig: $(obj)/gconf
11 $< arch/$(ARCH)/Kconfig
12
13 menuconfig: $(obj)/mconf
14 $< arch/$(ARCH)/Kconfig
15
16 config: $(obj)/conf
17 $< arch/$(ARCH)/Kconfig
18
19 oldconfig: $(obj)/conf
20 $< -o arch/$(ARCH)/Kconfig
21
22 silentoldconfig: $(obj)/conf
23 $< -s arch/$(ARCH)/Kconfig
24
25 update-po-config: $(obj)/kxgettext
26 xgettext --default-domain=linux \
27 --add-comments --keyword=_ --keyword=N_ \
28 --files-from=scripts/kconfig/POTFILES.in \
29 --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
43
44 PHONY += randconfig allyesconfig allnoconfig allmodconfig defconfig
45
46 randconfig: $(obj)/conf
47 $< -r arch/$(ARCH)/Kconfig
48
49 allyesconfig: $(obj)/conf
50 $< -y arch/$(ARCH)/Kconfig
51
52 allnoconfig: $(obj)/conf
53 $< -n arch/$(ARCH)/Kconfig
54
55 allmodconfig: $(obj)/conf
56 $< -m arch/$(ARCH)/Kconfig
57
58 defconfig: $(obj)/conf
59 ifeq ($(KBUILD_DEFCONFIG),)
60 $< -d arch/$(ARCH)/Kconfig
61 else
62 @echo *** Default configuration is based on '$(KBUILD_DEFCONFIG)'
63 $(Q)$< -D arch/$(ARCH)/configs/$(KBUILD_DEFCONFIG) arch/$(ARCH)/Kconfig
64 endif
65
66 %_defconfig: $(obj)/conf
67 $(Q)$< -D arch/$(ARCH)/configs/$@ arch/$(ARCH)/Kconfig
68
69 # Help text used by make help
70 help:
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'
76 @echo ' silentoldconfig - Same as oldconfig, but quietly'
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 # lxdialog stuff
84 check-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)
88 HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags)
89 HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
90
91 HOST_EXTRACFLAGS += -DLOCALE
92
93 PHONY += $(obj)/dochecklxdialog
94 $(obj)/dochecklxdialog:
95 $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_LOADLIBES)
96
97 always := dochecklxdialog
98
99
100 # ===========================================================================
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
111 lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
112 lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
113
114 hostprogs-y := conf mconf qconf gconf kxgettext
115 conf-objs := conf.o zconf.tab.o
116 mconf-objs := mconf.o zconf.tab.o $(lxdialog)
117 kxgettext-objs := kxgettext.o zconf.tab.o
118
119 ifeq ($(MAKECMDGOALS),xconfig)
120 qconf-target := 1
121 endif
122 ifeq ($(MAKECMDGOALS),gconfig)
123 gconf-target := 1
124 endif
125
126
127 ifeq ($(qconf-target),1)
128 qconf-cxxobjs := qconf.o
129 qconf-objs := kconfig_load.o zconf.tab.o
130 endif
131
132 ifeq ($(gconf-target),1)
133 gconf-objs := gconf.o kconfig_load.o zconf.tab.o
134 endif
135
136 clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
137 .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
138
139 # Needed for systems without gettext
140 KBUILD_HAVE_NLS := $(shell \
141 if echo "\#include <libintl.h>" | $(HOSTCC) $(HOSTCFLAGS) -E - > /dev/null 2>&1 ; \
142 then echo yes ; \
143 else echo no ; fi)
144 ifeq ($(KBUILD_HAVE_NLS),no)
145 HOSTCFLAGS += -DKBUILD_NO_NLS
146 endif
147
148 # generated files seem to need this to find local include files
149 HOSTCFLAGS_lex.zconf.o := -I$(src)
150 HOSTCFLAGS_zconf.tab.o := -I$(src)
151
152 HOSTLOADLIBES_qconf = $(KC_QT_LIBS) -ldl
153 HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS) -D LKC_DIRECT_LINK
154
155 HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
156 HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
157 -D LKC_DIRECT_LINK
158
159 $(obj)/qconf.o: $(obj)/.tmp_qtcheck
160
161 ifeq ($(qconf-target),1)
162 $(obj)/.tmp_qtcheck: $(src)/Makefile
163 -include $(obj)/.tmp_qtcheck
164
165 # QT needs some extra effort...
166 $(obj)/.tmp_qtcheck:
167 @set -e; echo " CHECK qt"; dir=""; pkg=""; \
168 pkg-config --exists qt 2> /dev/null && pkg=qt; \
169 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
170 if [ -n "$$pkg" ]; then \
171 cflags="\$$(shell pkg-config $$pkg --cflags)"; \
172 libs="\$$(shell pkg-config $$pkg --libs)"; \
173 moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \
174 dir="$$(pkg-config $$pkg --variable=prefix)"; \
175 else \
176 for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
177 if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \
178 done; \
179 if [ -z "$$dir" ]; then \
180 echo "*"; \
181 echo "* Unable to find the QT installation. Please make sure that"; \
182 echo "* the QT development package is correctly installed and"; \
183 echo "* either install pkg-config or set the QTDIR environment"; \
184 echo "* variable to the correct location."; \
185 echo "*"; \
186 false; \
187 fi; \
188 libpath=$$dir/lib; lib=qt; osdir=""; \
189 $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
190 osdir=x$$($(HOSTCXX) -print-multi-os-directory); \
191 test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \
192 test -f $$libpath/libqt-mt.so && lib=qt-mt; \
193 cflags="-I$$dir/include"; \
194 libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \
195 moc="$$dir/bin/moc"; \
196 fi; \
197 if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \
198 echo "*"; \
199 echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \
200 echo "*"; \
201 moc="/usr/bin/moc"; \
202 fi; \
203 echo "KC_QT_CFLAGS=$$cflags" > $@; \
204 echo "KC_QT_LIBS=$$libs" >> $@; \
205 echo "KC_QT_MOC=$$moc" >> $@
206 endif
207
208 $(obj)/gconf.o: $(obj)/.tmp_gtkcheck
209
210 ifeq ($(gconf-target),1)
211 -include $(obj)/.tmp_gtkcheck
212
213 # GTK needs some extra effort, too...
214 $(obj)/.tmp_gtkcheck:
215 @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
216 if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
217 touch $@; \
218 else \
219 echo "*"; \
220 echo "* GTK+ is present but version >= 2.0.0 is required."; \
221 echo "*"; \
222 false; \
223 fi \
224 else \
225 echo "*"; \
226 echo "* Unable to find the GTK+ installation. Please make sure that"; \
227 echo "* the GTK+ 2.0 development package is correctly installed..."; \
228 echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
229 echo "*"; \
230 false; \
231 fi
232 endif
233
234 $(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c
235
236 $(obj)/kconfig_load.o: $(obj)/lkc_defs.h
237
238 $(obj)/qconf.o: $(obj)/qconf.moc $(obj)/lkc_defs.h
239
240 $(obj)/gconf.o: $(obj)/lkc_defs.h
241
242 $(obj)/%.moc: $(src)/%.h
243 $(KC_QT_MOC) -i $< -o $@
244
245 $(obj)/lkc_defs.h: $(src)/lkc_proto.h
246 sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/'
247
248
249 ###
250 # The following requires flex/bison/gperf
251 # By default we use the _shipped versions, uncomment the following line if
252 # you are modifying the flex/bison src.
253 # LKC_GENPARSER := 1
254
255 ifdef LKC_GENPARSER
256
257 $(obj)/zconf.tab.c: $(src)/zconf.y
258 $(obj)/lex.zconf.c: $(src)/zconf.l
259 $(obj)/zconf.hash.c: $(src)/zconf.gperf
260
261 %.tab.c: %.y
262 bison -l -b $* -p $(notdir $*) $<
263 cp $@ $@_shipped
264
265 lex.%.c: %.l
266 flex -L -P$(notdir $*) -o$@ $<
267 cp $@ $@_shipped
268
269 %.hash.c: %.gperf
270 gperf < $< > $@
271 cp $@ $@_shipped
272
273 endif