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