gitignore: misc files
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / scripts / kconfig / Makefile
CommitLineData
1da177e4
LT
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
3b9fa093 5.PHONY: oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config
1da177e4
LT
6
7xconfig: $(obj)/qconf
8 $< arch/$(ARCH)/Kconfig
9
10gconfig: $(obj)/gconf
11 $< arch/$(ARCH)/Kconfig
12
13menuconfig: $(obj)/mconf
6f6046cf 14 $(Q)$(MAKE) $(build)=scripts/kconfig/lxdialog
1da177e4
LT
15 $< arch/$(ARCH)/Kconfig
16
17config: $(obj)/conf
18 $< arch/$(ARCH)/Kconfig
19
20oldconfig: $(obj)/conf
21 $< -o arch/$(ARCH)/Kconfig
22
23silentoldconfig: $(obj)/conf
24 $< -s arch/$(ARCH)/Kconfig
25
3b9fa093
ACM
26update-po-config: $(obj)/kxgettext
27 xgettext --default-domain=linux \
28 --add-comments --keyword=_ --keyword=N_ \
29 --files-from=scripts/kconfig/POTFILES.in \
720d6c29
EG
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
3b9fa093 44
1da177e4
LT
45.PHONY: randconfig allyesconfig allnoconfig allmodconfig defconfig
46
47randconfig: $(obj)/conf
48 $< -r arch/$(ARCH)/Kconfig
49
50allyesconfig: $(obj)/conf
51 $< -y arch/$(ARCH)/Kconfig
52
53allnoconfig: $(obj)/conf
54 $< -n arch/$(ARCH)/Kconfig
55
56allmodconfig: $(obj)/conf
57 $< -m arch/$(ARCH)/Kconfig
58
59defconfig: $(obj)/conf
60ifeq ($(KBUILD_DEFCONFIG),)
61 $< -d arch/$(ARCH)/Kconfig
62else
63 @echo *** Default configuration is based on '$(KBUILD_DEFCONFIG)'
64 $(Q)$< -D arch/$(ARCH)/configs/$(KBUILD_DEFCONFIG) arch/$(ARCH)/Kconfig
65endif
66
67%_defconfig: $(obj)/conf
68 $(Q)$< -D arch/$(ARCH)/configs/$@ arch/$(ARCH)/Kconfig
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 minimal config'
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
3b9fa093 94hostprogs-y := conf mconf qconf gconf kxgettext
1da177e4
LT
95conf-objs := conf.o zconf.tab.o
96mconf-objs := mconf.o zconf.tab.o
3b9fa093 97kxgettext-objs := kxgettext.o zconf.tab.o
1da177e4
LT
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 \
7a88488b 117 .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
6f6046cf 118subdir- += lxdialog
1da177e4 119
70a6a0cb
YV
120# Needed for systems without gettext
121KBUILD_HAVE_NLS := $(shell \
4ecc65e4 122 if echo "\#include <libintl.h>" | $(HOSTCC) $(HOSTCFLAGS) -E - > /dev/null 2>&1 ; \
70a6a0cb
YV
123 then echo yes ; \
124 else echo no ; fi)
125ifeq ($(KBUILD_HAVE_NLS),no)
126HOSTCFLAGS += -DKBUILD_NO_NLS
127endif
128
1da177e4
LT
129# generated files seem to need this to find local include files
130HOSTCFLAGS_lex.zconf.o := -I$(src)
131HOSTCFLAGS_zconf.tab.o := -I$(src)
132
ab919c06 133HOSTLOADLIBES_qconf = -L$(QTLIBPATH) -Wl,-rpath,$(QTLIBPATH) -l$(LIBS_QT) -ldl
1da177e4
LT
134HOSTCXXFLAGS_qconf.o = -I$(QTDIR)/include -D LKC_DIRECT_LINK
135
136HOSTLOADLIBES_gconf = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --libs`
137HOSTCFLAGS_gconf.o = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --cflags` \
138 -D LKC_DIRECT_LINK
139
1da177e4
LT
140$(obj)/qconf.o: $(obj)/.tmp_qtcheck
141
142ifeq ($(qconf-target),1)
143MOC = $(QTDIR)/bin/moc
144QTLIBPATH = $(QTDIR)/lib
145-include $(obj)/.tmp_qtcheck
146
147# QT needs some extra effort...
148$(obj)/.tmp_qtcheck:
149 @set -e; for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
150 if [ -f $$d/include/qconfig.h ]; then DIR=$$d; break; fi; \
151 done; \
152 if [ -z "$$DIR" ]; then \
153 echo "*"; \
154 echo "* Unable to find the QT installation. Please make sure that the"; \
155 echo "* QT development package is correctly installed and the QTDIR"; \
156 echo "* environment variable is set to the correct location."; \
157 echo "*"; \
158 false; \
159 fi; \
160 LIBPATH=$$DIR/lib; LIB=qt; \
ab919c06
SR
161 if [ -f $$QTLIB/libqt-mt.so ] ; then \
162 LIB=qt-mt; \
163 LIBPATH=$$QTLIB; \
164 else \
165 $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
166 LIBPATH=$$DIR/lib/$$($(HOSTCXX) -print-multi-os-directory); \
167 if [ -f $$LIBPATH/libqt-mt.so ]; then LIB=qt-mt; fi; \
168 fi; \
1da177e4 169 echo "QTDIR=$$DIR" > $@; echo "QTLIBPATH=$$LIBPATH" >> $@; \
ab919c06 170 echo "LIBS_QT=$$LIB" >> $@; \
1da177e4
LT
171 if [ ! -x $$DIR/bin/moc -a -x /usr/bin/moc ]; then \
172 echo "*"; \
173 echo "* Unable to find $$DIR/bin/moc, using /usr/bin/moc instead."; \
174 echo "*"; \
175 echo "MOC=/usr/bin/moc" >> $@; \
176 fi
177endif
178
179$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
180
181ifeq ($(gconf-target),1)
182-include $(obj)/.tmp_gtkcheck
183
184# GTK needs some extra effort, too...
185$(obj)/.tmp_gtkcheck:
186 @if `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --exists`; then \
187 if `pkg-config gtk+-2.0 --atleast-version=2.0.0`; then \
188 touch $@; \
189 else \
190 echo "*"; \
191 echo "* GTK+ is present but version >= 2.0.0 is required."; \
192 echo "*"; \
193 false; \
194 fi \
195 else \
196 echo "*"; \
197 echo "* Unable to find the GTK+ installation. Please make sure that"; \
198 echo "* the GTK+ 2.0 development package is correctly installed..."; \
199 echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
200 echo "*"; \
201 false; \
202 fi
203endif
204
7a88488b 205$(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c
1da177e4
LT
206
207$(obj)/kconfig_load.o: $(obj)/lkc_defs.h
208
209$(obj)/qconf.o: $(obj)/qconf.moc $(obj)/lkc_defs.h
210
211$(obj)/gconf.o: $(obj)/lkc_defs.h
212
213$(obj)/%.moc: $(src)/%.h
214 $(MOC) -i $< -o $@
215
216$(obj)/lkc_defs.h: $(src)/lkc_proto.h
217 sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/'
218
219
220###
7a88488b 221# The following requires flex/bison/gperf
1da177e4
LT
222# By default we use the _shipped versions, uncomment the following line if
223# you are modifying the flex/bison src.
224# LKC_GENPARSER := 1
225
226ifdef LKC_GENPARSER
227
491d7110
RZ
228$(obj)/zconf.tab.c: $(src)/zconf.y
229$(obj)/lex.zconf.c: $(src)/zconf.l
7a88488b 230$(obj)/zconf.hash.c: $(src)/zconf.gperf
1da177e4
LT
231
232%.tab.c: %.y
491d7110
RZ
233 bison -l -b $* -p $(notdir $*) $<
234 cp $@ $@_shipped
1da177e4
LT
235
236lex.%.c: %.l
491d7110
RZ
237 flex -L -P$(notdir $*) -o$@ $<
238 cp $@ $@_shipped
1da177e4 239
7a88488b
RZ
240%.hash.c: %.gperf
241 gperf < $< > $@
242 cp $@ $@_shipped
243
1da177e4 244endif