Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # =========================================================================== |
| 2 | # Kernel configuration targets |
| 3 | # These targets are used from top-level makefile |
| 4 | |
Steven Rostedt | 03fa25d | 2009-04-29 22:52:22 -0400 | [diff] [blame] | 5 | PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \ |
Steven Rostedt | 281c9da | 2009-04-29 22:52:23 -0400 | [diff] [blame] | 6 | localmodconfig localyesconfig |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
Al Viro | 61bee20 | 2008-08-25 04:51:27 -0400 | [diff] [blame] | 8 | ifdef KBUILD_KCONFIG |
| 9 | Kconfig := $(KBUILD_KCONFIG) |
| 10 | else |
Sam Ravnborg | daa93fa | 2007-11-12 20:54:30 +0100 | [diff] [blame] | 11 | Kconfig := arch/$(SRCARCH)/Kconfig |
Al Viro | 61bee20 | 2008-08-25 04:51:27 -0400 | [diff] [blame] | 12 | endif |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | xconfig: $(obj)/qconf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 15 | $< $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | gconfig: $(obj)/gconf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 18 | $< $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | menuconfig: $(obj)/mconf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 21 | $< $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | config: $(obj)/conf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 24 | $< $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | oldconfig: $(obj)/conf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 27 | $< -o $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | silentoldconfig: $(obj)/conf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 30 | $< -s $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Steven Rostedt | 03fa25d | 2009-04-29 22:52:22 -0400 | [diff] [blame] | 32 | localmodconfig: $(obj)/streamline_config.pl $(obj)/conf |
Steven Rostedt | 463bf90 | 2009-11-20 09:21:12 -0500 | [diff] [blame] | 33 | $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config |
Steven Rostedt | a7c0260 | 2009-05-07 11:09:55 -0400 | [diff] [blame] | 34 | $(Q)if [ -f .config ]; then \ |
| 35 | cmp -s .tmp.config .config || \ |
| 36 | (mv -f .config .config.old.1; \ |
| 37 | mv -f .tmp.config .config; \ |
| 38 | $(obj)/conf -s $(Kconfig); \ |
| 39 | mv -f .config.old.1 .config.old) \ |
| 40 | else \ |
| 41 | mv -f .tmp.config .config; \ |
| 42 | $(obj)/conf -s $(Kconfig); \ |
| 43 | fi |
Steven Rostedt | 03fa25d | 2009-04-29 22:52:22 -0400 | [diff] [blame] | 44 | $(Q)rm -f .tmp.config |
| 45 | |
Steven Rostedt | 4858621 | 2009-08-21 12:42:20 -0400 | [diff] [blame] | 46 | localyesconfig: $(obj)/streamline_config.pl $(obj)/conf |
Steven Rostedt | 463bf90 | 2009-11-20 09:21:12 -0500 | [diff] [blame] | 47 | $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config |
Steven Rostedt | 281c9da | 2009-04-29 22:52:23 -0400 | [diff] [blame] | 48 | $(Q)sed -i s/=m/=y/ .tmp.config |
Steven Rostedt | a7c0260 | 2009-05-07 11:09:55 -0400 | [diff] [blame] | 49 | $(Q)if [ -f .config ]; then \ |
| 50 | cmp -s .tmp.config .config || \ |
| 51 | (mv -f .config .config.old.1; \ |
| 52 | mv -f .tmp.config .config; \ |
| 53 | $(obj)/conf -s $(Kconfig); \ |
| 54 | mv -f .config.old.1 .config.old) \ |
| 55 | else \ |
| 56 | mv -f .tmp.config .config; \ |
| 57 | $(obj)/conf -s $(Kconfig); \ |
| 58 | fi |
Steven Rostedt | 281c9da | 2009-04-29 22:52:23 -0400 | [diff] [blame] | 59 | $(Q)rm -f .tmp.config |
| 60 | |
EGRY Gabor | 1020026 | 2008-01-11 23:40:00 +0100 | [diff] [blame] | 61 | # Create new linux.pot file |
Sam Ravnborg | b70e325c | 2007-06-10 20:38:27 +0200 | [diff] [blame] | 62 | # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files |
| 63 | # The symlink is used to repair a deficiency in arch/um |
EGRY Gabor | 46d2631 | 2008-01-11 23:46:11 +0100 | [diff] [blame] | 64 | update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h |
EGRY Gabor | 1020026 | 2008-01-11 23:40:00 +0100 | [diff] [blame] | 65 | $(Q)echo " GEN config" |
| 66 | $(Q)xgettext --default-domain=linux \ |
Sam Ravnborg | b70e325c | 2007-06-10 20:38:27 +0200 | [diff] [blame] | 67 | --add-comments --keyword=_ --keyword=N_ \ |
| 68 | --from-code=UTF-8 \ |
| 69 | --files-from=scripts/kconfig/POTFILES.in \ |
| 70 | --output $(obj)/config.pot |
| 71 | $(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot |
| 72 | $(Q)ln -fs Kconfig.i386 arch/um/Kconfig.arch |
Sam Ravnborg | 4217516 | 2008-04-25 21:15:41 +0200 | [diff] [blame] | 73 | $(Q)(for i in `ls arch/*/Kconfig`; \ |
EGRY Gabor | 1020026 | 2008-01-11 23:40:00 +0100 | [diff] [blame] | 74 | do \ |
| 75 | echo " GEN $$i"; \ |
Sam Ravnborg | 4217516 | 2008-04-25 21:15:41 +0200 | [diff] [blame] | 76 | $(obj)/kxgettext $$i \ |
EGRY Gabor | 1020026 | 2008-01-11 23:40:00 +0100 | [diff] [blame] | 77 | >> $(obj)/config.pot; \ |
| 78 | done ) |
| 79 | $(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \ |
Sam Ravnborg | b70e325c | 2007-06-10 20:38:27 +0200 | [diff] [blame] | 80 | --output $(obj)/linux.pot |
| 81 | $(Q)rm -f arch/um/Kconfig.arch |
| 82 | $(Q)rm -f $(obj)/config.pot |
Arnaldo Carvalho de Melo | 3b9fa09 | 2005-05-05 15:09:46 -0700 | [diff] [blame] | 83 | |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 84 | PHONY += randconfig allyesconfig allnoconfig allmodconfig defconfig |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | randconfig: $(obj)/conf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 87 | $< -r $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | allyesconfig: $(obj)/conf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 90 | $< -y $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | allnoconfig: $(obj)/conf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 93 | $< -n $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
| 95 | allmodconfig: $(obj)/conf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 96 | $< -m $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | defconfig: $(obj)/conf |
| 99 | ifeq ($(KBUILD_DEFCONFIG),) |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 100 | $< -d $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | else |
Sam Ravnborg | 2266cfd | 2007-10-25 20:31:19 +0200 | [diff] [blame] | 102 | @echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'" |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 103 | $(Q)$< -D arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | endif |
| 105 | |
| 106 | %_defconfig: $(obj)/conf |
Sam Ravnborg | e703f75 | 2007-10-25 20:42:18 +0200 | [diff] [blame] | 107 | $(Q)$< -D arch/$(SRCARCH)/configs/$@ $(Kconfig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | # Help text used by make help |
| 110 | help: |
| 111 | @echo ' config - Update current config utilising a line-oriented program' |
| 112 | @echo ' menuconfig - Update current config utilising a menu based program' |
| 113 | @echo ' xconfig - Update current config utilising a QT based front-end' |
| 114 | @echo ' gconfig - Update current config utilising a GTK based front-end' |
| 115 | @echo ' oldconfig - Update current config utilising a provided .config as base' |
Steven Rostedt | 03fa25d | 2009-04-29 22:52:22 -0400 | [diff] [blame] | 116 | @echo ' localmodconfig - Update current config disabling modules not loaded' |
Steven Rostedt | 281c9da | 2009-04-29 22:52:23 -0400 | [diff] [blame] | 117 | @echo ' localyesconfig - Update current config converting local mods to core' |
Markus Heidelberg | 590a585 | 2009-05-18 01:36:46 +0200 | [diff] [blame] | 118 | @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps' |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | @echo ' randconfig - New config with random answer to all options' |
| 120 | @echo ' defconfig - New config with default answer to all options' |
| 121 | @echo ' allmodconfig - New config selecting modules when possible' |
| 122 | @echo ' allyesconfig - New config where all options are accepted with yes' |
Jesper Juhl | e11f049 | 2006-02-25 21:52:50 +0100 | [diff] [blame] | 123 | @echo ' allnoconfig - New config where all options are answered with no' |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Sam Ravnborg | 2982de6 | 2006-07-27 22:10:27 +0200 | [diff] [blame] | 125 | # lxdialog stuff |
| 126 | check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh |
| 127 | |
Rob Landley | e9e40e1 | 2007-10-15 19:23:12 -0500 | [diff] [blame] | 128 | # Use recursively expanded variables so we do not call gcc unless |
Sam Ravnborg | 2982de6 | 2006-07-27 22:10:27 +0200 | [diff] [blame] | 129 | # we really need to do so. (Do not call gcc as part of make mrproper) |
| 130 | HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) |
| 131 | HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC)) |
| 132 | |
| 133 | HOST_EXTRACFLAGS += -DLOCALE |
| 134 | |
Sam Ravnborg | 2982de6 | 2006-07-27 22:10:27 +0200 | [diff] [blame] | 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | # =========================================================================== |
| 137 | # Shared Makefile for the various kconfig executables: |
| 138 | # conf: Used for defconfig, oldconfig and related targets |
Markus Heidelberg | 6f26e5e | 2009-05-18 01:36:45 +0200 | [diff] [blame] | 139 | # mconf: Used for the menuconfig target |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | # Utilizes the lxdialog package |
| 141 | # qconf: Used for the xconfig target |
| 142 | # Based on QT which needs to be installed to compile it |
| 143 | # gconf: Used for the gconfig target |
| 144 | # Based on GTK which needs to be installed to compile it |
| 145 | # object files used by all kconfig flavours |
| 146 | |
Sam Ravnborg | 2982de6 | 2006-07-27 22:10:27 +0200 | [diff] [blame] | 147 | lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o |
| 148 | lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | conf-objs := conf.o zconf.tab.o |
Sam Ravnborg | 2982de6 | 2006-07-27 22:10:27 +0200 | [diff] [blame] | 151 | mconf-objs := mconf.o zconf.tab.o $(lxdialog) |
Arnaldo Carvalho de Melo | 3b9fa09 | 2005-05-05 15:09:46 -0700 | [diff] [blame] | 152 | kxgettext-objs := kxgettext.o zconf.tab.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Sam Ravnborg | c29121b | 2006-09-02 21:32:14 +0200 | [diff] [blame] | 154 | hostprogs-y := conf qconf gconf kxgettext |
| 155 | |
| 156 | ifeq ($(MAKECMDGOALS),menuconfig) |
| 157 | hostprogs-y += mconf |
| 158 | endif |
| 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | ifeq ($(MAKECMDGOALS),xconfig) |
| 161 | qconf-target := 1 |
| 162 | endif |
| 163 | ifeq ($(MAKECMDGOALS),gconfig) |
| 164 | gconf-target := 1 |
| 165 | endif |
| 166 | |
| 167 | |
| 168 | ifeq ($(qconf-target),1) |
| 169 | qconf-cxxobjs := qconf.o |
| 170 | qconf-objs := kconfig_load.o zconf.tab.o |
| 171 | endif |
| 172 | |
| 173 | ifeq ($(gconf-target),1) |
| 174 | gconf-objs := gconf.o kconfig_load.o zconf.tab.o |
| 175 | endif |
| 176 | |
| 177 | clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \ |
EGRY Gabor | 46d2631 | 2008-01-11 23:46:11 +0100 | [diff] [blame] | 178 | .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c gconf.glade.h |
Sam Ravnborg | 145c904 | 2007-04-01 23:14:11 +0200 | [diff] [blame] | 179 | clean-files += mconf qconf gconf |
EGRY Gabor | 1020026 | 2008-01-11 23:40:00 +0100 | [diff] [blame] | 180 | clean-files += config.pot linux.pot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Sam Ravnborg | 6e588f6 | 2007-12-09 20:11:15 +0100 | [diff] [blame] | 182 | # Check that we have the required ncurses stuff installed for lxdialog (menuconfig) |
| 183 | PHONY += $(obj)/dochecklxdialog |
| 184 | $(addprefix $(obj)/,$(lxdialog)): $(obj)/dochecklxdialog |
| 185 | $(obj)/dochecklxdialog: |
| 186 | $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOST_LOADLIBES) |
| 187 | |
| 188 | always := dochecklxdialog |
| 189 | |
Sam Ravnborg | aa1e5ef | 2007-08-12 23:15:44 +0200 | [diff] [blame] | 190 | # Add environment specific flags |
| 191 | HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS)) |
Yuri Vasilevski | 70a6a0c | 2005-10-30 15:03:20 -0800 | [diff] [blame] | 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | # generated files seem to need this to find local include files |
| 194 | HOSTCFLAGS_lex.zconf.o := -I$(src) |
| 195 | HOSTCFLAGS_zconf.tab.o := -I$(src) |
| 196 | |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 197 | HOSTLOADLIBES_qconf = $(KC_QT_LIBS) -ldl |
| 198 | HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS) -D LKC_DIRECT_LINK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Adrian Bunk | 3719314 | 2006-01-02 11:25:30 +0100 | [diff] [blame] | 200 | HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0` |
| 201 | HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | -D LKC_DIRECT_LINK |
| 203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | $(obj)/qconf.o: $(obj)/.tmp_qtcheck |
| 205 | |
| 206 | ifeq ($(qconf-target),1) |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 207 | $(obj)/.tmp_qtcheck: $(src)/Makefile |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | -include $(obj)/.tmp_qtcheck |
| 209 | |
| 210 | # QT needs some extra effort... |
| 211 | $(obj)/.tmp_qtcheck: |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 212 | @set -e; echo " CHECK qt"; dir=""; pkg=""; \ |
| 213 | pkg-config --exists qt 2> /dev/null && pkg=qt; \ |
| 214 | pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \ |
| 215 | if [ -n "$$pkg" ]; then \ |
| 216 | cflags="\$$(shell pkg-config $$pkg --cflags)"; \ |
| 217 | libs="\$$(shell pkg-config $$pkg --libs)"; \ |
| 218 | moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \ |
| 219 | dir="$$(pkg-config $$pkg --variable=prefix)"; \ |
Sam Ravnborg | ab919c0 | 2005-11-06 11:05:21 +0100 | [diff] [blame] | 220 | else \ |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 221 | for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \ |
| 222 | if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \ |
| 223 | done; \ |
| 224 | if [ -z "$$dir" ]; then \ |
| 225 | echo "*"; \ |
Sam Ravnborg | 9ae5700 | 2007-04-29 21:01:52 +0200 | [diff] [blame] | 226 | echo "* Unable to find the QT3 installation. Please make sure that"; \ |
| 227 | echo "* the QT3 development package is correctly installed and"; \ |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 228 | echo "* either install pkg-config or set the QTDIR environment"; \ |
| 229 | echo "* variable to the correct location."; \ |
| 230 | echo "*"; \ |
| 231 | false; \ |
| 232 | fi; \ |
| 233 | libpath=$$dir/lib; lib=qt; osdir=""; \ |
| 234 | $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \ |
| 235 | osdir=x$$($(HOSTCXX) -print-multi-os-directory); \ |
| 236 | test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \ |
| 237 | test -f $$libpath/libqt-mt.so && lib=qt-mt; \ |
| 238 | cflags="-I$$dir/include"; \ |
| 239 | libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \ |
| 240 | moc="$$dir/bin/moc"; \ |
Sam Ravnborg | ab919c0 | 2005-11-06 11:05:21 +0100 | [diff] [blame] | 241 | fi; \ |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 242 | if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | echo "*"; \ |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 244 | echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | echo "*"; \ |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 246 | moc="/usr/bin/moc"; \ |
| 247 | fi; \ |
| 248 | echo "KC_QT_CFLAGS=$$cflags" > $@; \ |
| 249 | echo "KC_QT_LIBS=$$libs" >> $@; \ |
| 250 | echo "KC_QT_MOC=$$moc" >> $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | endif |
| 252 | |
| 253 | $(obj)/gconf.o: $(obj)/.tmp_gtkcheck |
| 254 | |
| 255 | ifeq ($(gconf-target),1) |
| 256 | -include $(obj)/.tmp_gtkcheck |
| 257 | |
| 258 | # GTK needs some extra effort, too... |
| 259 | $(obj)/.tmp_gtkcheck: |
Adrian Bunk | 3719314 | 2006-01-02 11:25:30 +0100 | [diff] [blame] | 260 | @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \ |
| 261 | if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | touch $@; \ |
| 263 | else \ |
| 264 | echo "*"; \ |
| 265 | echo "* GTK+ is present but version >= 2.0.0 is required."; \ |
| 266 | echo "*"; \ |
| 267 | false; \ |
| 268 | fi \ |
| 269 | else \ |
| 270 | echo "*"; \ |
| 271 | echo "* Unable to find the GTK+ installation. Please make sure that"; \ |
| 272 | echo "* the GTK+ 2.0 development package is correctly installed..."; \ |
| 273 | echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \ |
| 274 | echo "*"; \ |
| 275 | false; \ |
| 276 | fi |
| 277 | endif |
| 278 | |
Roman Zippel | 7a88488 | 2005-11-08 21:34:51 -0800 | [diff] [blame] | 279 | $(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
| 281 | $(obj)/kconfig_load.o: $(obj)/lkc_defs.h |
| 282 | |
| 283 | $(obj)/qconf.o: $(obj)/qconf.moc $(obj)/lkc_defs.h |
| 284 | |
| 285 | $(obj)/gconf.o: $(obj)/lkc_defs.h |
| 286 | |
| 287 | $(obj)/%.moc: $(src)/%.h |
Roman Zippel | b3a5225 | 2005-11-21 21:32:38 -0800 | [diff] [blame] | 288 | $(KC_QT_MOC) -i $< -o $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | $(obj)/lkc_defs.h: $(src)/lkc_proto.h |
| 291 | sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/' |
| 292 | |
EGRY Gabor | 46d2631 | 2008-01-11 23:46:11 +0100 | [diff] [blame] | 293 | # Extract gconf menu items for I18N support |
| 294 | $(obj)/gconf.glade.h: $(obj)/gconf.glade |
| 295 | intltool-extract --type=gettext/glade $(obj)/gconf.glade |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
| 297 | ### |
Roman Zippel | 7a88488 | 2005-11-08 21:34:51 -0800 | [diff] [blame] | 298 | # The following requires flex/bison/gperf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | # By default we use the _shipped versions, uncomment the following line if |
| 300 | # you are modifying the flex/bison src. |
| 301 | # LKC_GENPARSER := 1 |
| 302 | |
| 303 | ifdef LKC_GENPARSER |
| 304 | |
Roman Zippel | 491d711 | 2005-11-08 21:34:50 -0800 | [diff] [blame] | 305 | $(obj)/zconf.tab.c: $(src)/zconf.y |
| 306 | $(obj)/lex.zconf.c: $(src)/zconf.l |
Roman Zippel | 7a88488 | 2005-11-08 21:34:51 -0800 | [diff] [blame] | 307 | $(obj)/zconf.hash.c: $(src)/zconf.gperf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
| 309 | %.tab.c: %.y |
Roman Zippel | 491d711 | 2005-11-08 21:34:50 -0800 | [diff] [blame] | 310 | bison -l -b $* -p $(notdir $*) $< |
| 311 | cp $@ $@_shipped |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
| 313 | lex.%.c: %.l |
Roman Zippel | 491d711 | 2005-11-08 21:34:50 -0800 | [diff] [blame] | 314 | flex -L -P$(notdir $*) -o$@ $< |
| 315 | cp $@ $@_shipped |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Roman Zippel | 7a88488 | 2005-11-08 21:34:51 -0800 | [diff] [blame] | 317 | %.hash.c: %.gperf |
| 318 | gperf < $< > $@ |
| 319 | cp $@ $@_shipped |
| 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | endif |