Lines Matching +full:files +full:- +full:based
3 # These targets are used from top-level makefile
5 # SPDX-License-Identifier: GPL-2.0
8 PHONY += xconfig gconfig menuconfig config silentoldconfig update-po-config \
11 # Added for U-Boot
12 # Linux has defconfig files in arch/$(SRCARCH)/configs/,
13 # on the other hand, U-Boot does in configs/.
24 silent := -s
40 $< $(silent) --oldaskconfig $(Kconfig)
46 $(Q)mkdir -p include/config include/generated
47 $(Q)test -e include/generated/autoksyms.h || \
49 $< $(silent) --$@ $(Kconfig)
52 $(Q)mkdir -p include/config include/generated
53 $(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config
54 $(Q)if [ -f .config ]; then \
55 cmp -s .tmp.config .config || \
56 (mv -f .config .config.old.1; \
57 mv -f .tmp.config .config; \
58 $(obj)/conf $(silent) --silentoldconfig $(Kconfig); \
59 mv -f .config.old.1 .config.old) \
61 mv -f .tmp.config .config; \
62 $(obj)/conf $(silent) --silentoldconfig $(Kconfig); \
64 $(Q)rm -f .tmp.config
67 # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
68 update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
70 $(Q)xgettext --default-domain=linux \
71 --add-comments --keyword=_ --keyword=N_ \
72 --from-code=UTF-8 \
73 --files-from=$(srctree)/scripts/kconfig/POTFILES.in \
74 --directory=$(srctree) --directory=$(objtree) \
75 --output $(obj)/config.pot
76 $(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
85 $(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
86 --output $(obj)/linux.pot
87 $(Q)rm -f $(obj)/config.pot
90 simple-targets := oldconfig allnoconfig allyesconfig allmodconfig \
92 PHONY += $(simple-targets)
94 $(simple-targets): $(obj)/conf
95 $< $(silent) --$@ $(Kconfig)
101 # counter-intuitive name.
105 $< $(silent) --$@=defconfig $(Kconfig)
109 $< $(silent) --defconfig $(Kconfig)
112 @$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
113 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
115 @$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
116 $(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
121 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
123 # Added for U-Boot (backward compatibility)
131 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
132 +$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
144 $(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
148 @echo ' config - Update current config utilising a line-oriented program'
149 @echo ' nconfig - Update current config utilising a ncurses menu based'
151 @echo ' menuconfig - Update current config utilising a menu based program'
152 @echo ' xconfig - Update current config utilising a Qt based front-end'
153 @echo ' gconfig - Update current config utilising a GTK+ based front-end'
154 @echo ' oldconfig - Update current config utilising a provided .config as base'
155 @echo ' localmodconfig - Update current config disabling modules not loaded'
156 @echo ' localyesconfig - Update current config converting local mods to core'
157 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
158 @echo ' defconfig - New config with default from ARCH supplied defconfig'
159 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
160 @echo ' allnoconfig - New config where all options are answered with no'
161 @echo ' allyesconfig - New config where all options are accepted with yes'
162 @echo ' allmodconfig - New config selecting modules when possible'
163 @echo ' alldefconfig - New config with all symbols set to default'
164 @echo ' randconfig - New config with random answer to all options'
165 @echo ' listnewconfig - List new options'
166 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their'
168 # @echo ' kvmconfig - Enable additional options for kvm guest kernel support'
169 # @echo ' xenconfig - Enable additional options for xen dom0 and guest kernel support'
170 # @echo ' tinyconfig - Configure the tiniest possible kernel'
173 check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
177 HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
178 -DLOCALE
188 # Based on Qt which needs to be installed to compile it
190 # Based on GTK+ which needs to be installed to compile it
191 # object files used by all kconfig flavours
196 conf-objs := conf.o zconf.tab.o
197 mconf-objs := mconf.o zconf.tab.o $(lxdialog)
198 nconf-objs := nconf.o zconf.tab.o nconf.gui.o
199 kxgettext-objs := kxgettext.o zconf.tab.o
200 qconf-cxxobjs := qconf.o
201 qconf-objs := zconf.tab.o
202 gconf-objs := gconf.o zconf.tab.o
204 hostprogs-y := conf nconf mconf kxgettext qconf gconf
206 clean-files := qconf.moc .tmp_qtcheck .tmp_gtkcheck
207 clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h
208 clean-files += config.pot linux.pot
214 $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOSTLOADLIBES_mconf)
221 # generated files seem to need this to find local include files
222 HOSTCFLAGS_zconf.lex.o := -I$(src)
223 HOSTCFLAGS_zconf.tab.o := -I$(src)
231 HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
232 HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
233 -Wno-missing-prototypes
235 HOSTLOADLIBES_mconf = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
238 pkg-config --libs menuw panelw ncursesw 2>/dev/null \
239 || pkg-config --libs menu panel ncurses 2>/dev/null \
240 || echo "-lmenu -lpanel -lncurses" )
245 -include $(obj)/.tmp_qtcheck
249 @set -e; $(kecho) " CHECK qt"; \
250 if pkg-config --exists Qt5Core; then \
251 cflags="-std=c++11 -fPIC `pkg-config --cflags Qt5Core Qt5Gui Qt5Widgets`"; \
252 libs=`pkg-config --libs Qt5Core Qt5Gui Qt5Widgets`; \
253 moc=`pkg-config --variable=host_bins Qt5Core`/moc; \
254 elif pkg-config --exists QtCore; then \
255 cflags=`pkg-config --cflags QtCore QtGui`; \
256 libs=`pkg-config --libs QtCore QtGui`; \
257 moc=`pkg-config --variable=moc_location QtCore`; \
260 echo >&2 "* Could not find Qt via pkg-config."; \
273 -include $(obj)/.tmp_gtkcheck
277 @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
278 if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
290 echo >&2 "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
301 cmd_moc = $(KC_QT_MOC) -i $< -o $@
308 $(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \