Makefile 10.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
# ===========================================================================
# Kernel configuration targets
# These targets are used from top-level makefile

M
Michal Marek 已提交
5
PHONY += xconfig gconfig menuconfig config silentoldconfig update-po-config \
6
	localmodconfig localyesconfig
L
Linus Torvalds 已提交
7

A
Al Viro 已提交
8 9 10
ifdef KBUILD_KCONFIG
Kconfig := $(KBUILD_KCONFIG)
else
11
Kconfig := Kconfig
A
Al Viro 已提交
12
endif
13

14 15 16 17
ifeq ($(quiet),silent_)
silent := -s
endif

18 19 20
# We need this, in case the user has it in its environment
unexport CONFIG_

L
Linus Torvalds 已提交
21
xconfig: $(obj)/qconf
22
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
23 24

gconfig: $(obj)/gconf
25
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
26 27

menuconfig: $(obj)/mconf
28
	$< $(silent) $(Kconfig)
L
Linus Torvalds 已提交
29 30

config: $(obj)/conf
31
	$< $(silent) --oldaskconfig $(Kconfig)
L
Linus Torvalds 已提交
32

33
nconfig: $(obj)/nconf
34
	$< $(silent) $(Kconfig)
35

L
Linus Torvalds 已提交
36
silentoldconfig: $(obj)/conf
37
	$(Q)mkdir -p include/config include/generated
38
	$< $(silent) --$@ $(Kconfig)
L
Linus Torvalds 已提交
39

40
localyesconfig localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
41
	$(Q)mkdir -p include/config include/generated
42
	$(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config
43
	$(Q)if [ -f .config ]; then 					\
S
Sam Ravnborg 已提交
44 45 46
			cmp -s .tmp.config .config ||			\
			(mv -f .config .config.old.1;			\
			 mv -f .tmp.config .config;			\
47
			 $(obj)/conf $(silent) --silentoldconfig $(Kconfig); \
S
Sam Ravnborg 已提交
48 49 50
			 mv -f .config.old.1 .config.old)		\
	else								\
			mv -f .tmp.config .config;			\
51
			$(obj)/conf $(silent) --silentoldconfig $(Kconfig); \
52
	fi
53 54
	$(Q)rm -f .tmp.config

E
EGRY Gabor 已提交
55
# Create new linux.pot file
S
Sam Ravnborg 已提交
56
# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
57
update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
58
	$(Q)$(kecho) "  GEN     config.pot"
59 60 61 62 63
	$(Q)xgettext --default-domain=linux                         \
	    --add-comments --keyword=_ --keyword=N_                 \
	    --from-code=UTF-8                                       \
	    --files-from=$(srctree)/scripts/kconfig/POTFILES.in     \
	    --directory=$(srctree) --directory=$(objtree)           \
S
Sam Ravnborg 已提交
64 65
	    --output $(obj)/config.pot
	$(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
66 67
	$(Q)(for i in `ls $(srctree)/arch/*/Kconfig      \
	    $(srctree)/arch/*/um/Kconfig`;               \
E
EGRY Gabor 已提交
68
	    do                                           \
69
		$(kecho) "  GEN     $$i";                    \
70
		$(obj)/kxgettext $$i                     \
E
EGRY Gabor 已提交
71 72
		     >> $(obj)/config.pot;               \
	    done )
73
	$(Q)$(kecho) "  GEN     linux.pot"
E
EGRY Gabor 已提交
74
	$(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
S
Sam Ravnborg 已提交
75 76
	    --output $(obj)/linux.pot
	$(Q)rm -f $(obj)/config.pot
77

M
Michal Marek 已提交
78 79 80 81
# These targets map 1:1 to the commandline options of 'conf'
simple-targets := oldconfig allnoconfig allyesconfig allmodconfig \
	alldefconfig randconfig listnewconfig olddefconfig
PHONY += $(simple-targets)
L
Linus Torvalds 已提交
82

M
Michal Marek 已提交
83
$(simple-targets): $(obj)/conf
84
	$< $(silent) --$@ $(Kconfig)
L
Linus Torvalds 已提交
85

M
Michal Marek 已提交
86
PHONY += oldnoconfig savedefconfig defconfig
L
Linus Torvalds 已提交
87

88
# oldnoconfig is an alias of olddefconfig, because people already are dependent
89
# on its behavior (sets new symbols to their default value but not 'n') with the
90
# counter-intuitive name.
M
Michal Marek 已提交
91
oldnoconfig: olddefconfig
92

S
Sam Ravnborg 已提交
93
savedefconfig: $(obj)/conf
94
	$< $(silent) --$@=defconfig $(Kconfig)
S
Sam Ravnborg 已提交
95

L
Linus Torvalds 已提交
96 97
defconfig: $(obj)/conf
ifeq ($(KBUILD_DEFCONFIG),)
98
	$< $(silent) --defconfig $(Kconfig)
99 100
else
ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
101 102
	@$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
103 104 105
else
	@$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
	$(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
L
Linus Torvalds 已提交
106
endif
107
endif
L
Linus Torvalds 已提交
108 109

%_defconfig: $(obj)/conf
110
	$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
L
Linus Torvalds 已提交
111

112
configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
113

114 115 116 117
%.config: $(obj)/conf
	$(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
	+$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
118 119

PHONY += kvmconfig
120 121
kvmconfig: kvm_guest.config
	@:
122

123 124 125 126
PHONY += xenconfig
xenconfig: xen.config
	@:

127
PHONY += tinyconfig
128 129
tinyconfig:
	$(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
130

L
Linus Torvalds 已提交
131 132 133
# Help text used by make help
help:
	@echo  '  config	  - Update current config utilising a line-oriented program'
134 135
	@echo  '  nconfig         - Update current config utilising a ncurses menu based'
	@echo  '                    program'
L
Linus Torvalds 已提交
136
	@echo  '  menuconfig	  - Update current config utilising a menu based program'
137
	@echo  '  xconfig	  - Update current config utilising a Qt based front-end'
138
	@echo  '  gconfig	  - Update current config utilising a GTK+ based front-end'
L
Linus Torvalds 已提交
139
	@echo  '  oldconfig	  - Update current config utilising a provided .config as base'
140
	@echo  '  localmodconfig  - Update current config disabling modules not loaded'
141
	@echo  '  localyesconfig  - Update current config converting local mods to core'
142
	@echo  '  silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
S
Sam Ravnborg 已提交
143
	@echo  '  defconfig	  - New config with default from ARCH supplied defconfig'
S
Sam Ravnborg 已提交
144
	@echo  '  savedefconfig   - Save current config as ./defconfig (minimal config)'
145
	@echo  '  allnoconfig	  - New config where all options are answered with no'
S
Sam Ravnborg 已提交
146 147 148 149
	@echo  '  allyesconfig	  - New config where all options are accepted with yes'
	@echo  '  allmodconfig	  - New config selecting modules when possible'
	@echo  '  alldefconfig    - New config with all symbols set to default'
	@echo  '  randconfig	  - New config with random answer to all options'
150
	@echo  '  listnewconfig   - List new options'
151 152
	@echo  '  olddefconfig	  - Same as silentoldconfig but sets new symbols to their'
	@echo  '                    default value'
153
	@echo  '  kvmconfig	  - Enable additional options for kvm guest kernel support'
154
	@echo  '  xenconfig       - Enable additional options for xen dom0 and guest kernel support'
155
	@echo  '  tinyconfig	  - Configure the tiniest possible kernel'
L
Linus Torvalds 已提交
156

157 158 159
# lxdialog stuff
check-lxdialog  := $(srctree)/$(src)/lxdialog/check-lxdialog.sh

160
# Use recursively expanded variables so we do not call gcc unless
161
# we really need to do so. (Do not call gcc as part of make mrproper)
162 163
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
                    -DLOCALE
164

L
Linus Torvalds 已提交
165 166 167
# ===========================================================================
# Shared Makefile for the various kconfig executables:
# conf:	  Used for defconfig, oldconfig and related targets
168 169
# nconf:  Used for the nconfig target.
#         Utilizes ncurses
170
# mconf:  Used for the menuconfig target
L
Linus Torvalds 已提交
171 172
#         Utilizes the lxdialog package
# qconf:  Used for the xconfig target
173
#         Based on Qt which needs to be installed to compile it
L
Linus Torvalds 已提交
174
# gconf:  Used for the gconfig target
175
#         Based on GTK+ which needs to be installed to compile it
L
Linus Torvalds 已提交
176 177
# object files used by all kconfig flavours

178 179 180
lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o

L
Linus Torvalds 已提交
181
conf-objs	:= conf.o  zconf.tab.o
182 183
mconf-objs     := mconf.o zconf.tab.o $(lxdialog)
nconf-objs     := nconf.o zconf.tab.o nconf.gui.o
184
kxgettext-objs	:= kxgettext.o zconf.tab.o
185
qconf-cxxobjs	:= qconf.o
186 187
qconf-objs	:= zconf.tab.o
gconf-objs	:= gconf.o zconf.tab.o
L
Linus Torvalds 已提交
188

189
hostprogs-y := conf nconf mconf kxgettext qconf gconf
L
Linus Torvalds 已提交
190

191
clean-files	:= qconf.moc .tmp_qtcheck .tmp_gtkcheck
A
Arnaud Lacombe 已提交
192
clean-files	+= zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h
E
EGRY Gabor 已提交
193
clean-files     += config.pot linux.pot
L
Linus Torvalds 已提交
194

195 196 197 198
# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
PHONY += $(obj)/dochecklxdialog
$(addprefix $(obj)/,$(lxdialog)): $(obj)/dochecklxdialog
$(obj)/dochecklxdialog:
199
	$(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOSTLOADLIBES_mconf)
200 201 202

always := dochecklxdialog

203 204
# Add environment specific flags
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
205

L
Linus Torvalds 已提交
206
# generated files seem to need this to find local include files
A
Arnaud Lacombe 已提交
207
HOSTCFLAGS_zconf.lex.o	:= -I$(src)
L
Linus Torvalds 已提交
208 209
HOSTCFLAGS_zconf.tab.o	:= -I$(src)

210 211 212
LEX_PREFIX_zconf	:= zconf
YACC_PREFIX_zconf	:= zconf

213 214
HOSTLOADLIBES_qconf	= $(KC_QT_LIBS)
HOSTCXXFLAGS_qconf.o	= $(KC_QT_CFLAGS)
L
Linus Torvalds 已提交
215

216
HOSTLOADLIBES_gconf	= `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
217
HOSTCFLAGS_gconf.o	= `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
218
                          -Wno-missing-prototypes
L
Linus Torvalds 已提交
219

220 221
HOSTLOADLIBES_mconf   = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))

222
HOSTLOADLIBES_nconf	= $(shell \
223 224
				pkg-config --libs menuw panelw ncursesw 2>/dev/null \
				|| pkg-config --libs menu panel ncurses 2>/dev/null \
225
				|| echo "-lmenu -lpanel -lncurses"  )
L
Linus Torvalds 已提交
226 227
$(obj)/qconf.o: $(obj)/.tmp_qtcheck

228
ifeq ($(MAKECMDGOALS),xconfig)
229
$(obj)/.tmp_qtcheck: $(src)/Makefile
L
Linus Torvalds 已提交
230 231
-include $(obj)/.tmp_qtcheck

232
# Qt needs some extra effort...
L
Linus Torvalds 已提交
233
$(obj)/.tmp_qtcheck:
234
	@set -e; $(kecho) "  CHECK   qt"; \
235 236 237 238 239 240 241 242
	if pkg-config --exists Qt5Core; then \
	    cflags="-std=c++11 -fPIC `pkg-config --cflags Qt5Core Qt5Gui Qt5Widgets`"; \
	    libs=`pkg-config --libs Qt5Core Qt5Gui Qt5Widgets`; \
	    moc=`pkg-config --variable=host_bins Qt5Core`/moc; \
	elif pkg-config --exists QtCore; then \
	    cflags=`pkg-config --cflags QtCore QtGui`; \
	    libs=`pkg-config --libs QtCore QtGui`; \
	    moc=`pkg-config --variable=moc_location QtCore`; \
243
	else \
244
	    echo >&2 "*"; \
245 246
	    echo >&2 "* Could not find Qt via pkg-config."; \
	    echo >&2 "* Please install either Qt 4.8 or 5.x. and make sure it's in PKG_CONFIG_PATH"; \
247 248
	    echo >&2 "*"; \
	    exit 1; \
249 250 251 252
	fi; \
	echo "KC_QT_CFLAGS=$$cflags" > $@; \
	echo "KC_QT_LIBS=$$libs" >> $@; \
	echo "KC_QT_MOC=$$moc" >> $@
L
Linus Torvalds 已提交
253 254 255 256
endif

$(obj)/gconf.o: $(obj)/.tmp_gtkcheck

257
ifeq ($(MAKECMDGOALS),gconfig)
L
Linus Torvalds 已提交
258 259
-include $(obj)/.tmp_gtkcheck

260
# GTK+ needs some extra effort, too...
L
Linus Torvalds 已提交
261
$(obj)/.tmp_gtkcheck:
262 263
	@if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then		\
		if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then			\
L
Linus Torvalds 已提交
264 265
			touch $@;								\
		else									\
266 267 268
			echo >&2 "*"; 							\
			echo >&2 "* GTK+ is present but version >= 2.0.0 is required.";	\
			echo >&2 "*";							\
L
Linus Torvalds 已提交
269 270 271
			false;								\
		fi									\
	else										\
272 273 274 275 276
		echo >&2 "*"; 								\
		echo >&2 "* Unable to find the GTK+ installation. Please make sure that"; 	\
		echo >&2 "* the GTK+ 2.0 development package is correctly installed..."; 	\
		echo >&2 "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; 		\
		echo >&2 "*"; 								\
L
Linus Torvalds 已提交
277 278 279 280
		false;									\
	fi
endif

A
Arnaud Lacombe 已提交
281
$(obj)/zconf.tab.o: $(obj)/zconf.lex.c $(obj)/zconf.hash.c
L
Linus Torvalds 已提交
282

283
$(obj)/qconf.o: $(obj)/qconf.moc
L
Linus Torvalds 已提交
284

285 286 287 288 289
quiet_cmd_moc = MOC     $@
      cmd_moc = $(KC_QT_MOC) -i $< -o $@

$(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck
	$(call cmd,moc)
L
Linus Torvalds 已提交
290

291
# Extract gconf menu items for i18n support
292
$(obj)/gconf.glade.h: $(obj)/gconf.glade
P
Peter Foley 已提交
293
	$(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \
294
	$(obj)/gconf.glade