~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/kconfig/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/kconfig/Makefile (Version linux-6.12-rc7) and /scripts/kconfig/Makefile (Version linux-3.10.108)


  1 # SPDX-License-Identifier: GPL-2.0             << 
  2 # ============================================      1 # ===========================================================================
  3 # Kernel configuration targets                      2 # Kernel configuration targets
  4 # These targets are used from top-level makefi      3 # These targets are used from top-level makefile
  5                                                     4 
                                                   >>   5 PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \
                                                   >>   6         localmodconfig localyesconfig
                                                   >>   7 
  6 ifdef KBUILD_KCONFIG                                8 ifdef KBUILD_KCONFIG
  7 Kconfig := $(KBUILD_KCONFIG)                        9 Kconfig := $(KBUILD_KCONFIG)
  8 else                                               10 else
  9 Kconfig := Kconfig                                 11 Kconfig := Kconfig
 10 endif                                              12 endif
 11                                                    13 
 12 ifndef KBUILD_DEFCONFIG                        << 
 13 KBUILD_DEFCONFIG := defconfig                  << 
 14 endif                                          << 
 15                                                << 
 16 ifeq ($(quiet),silent_)                        << 
 17 silent := -s                                   << 
 18 endif                                          << 
 19                                                << 
 20 export KCONFIG_DEFCONFIG_LIST :=               << 
 21 ifndef cross_compiling                         << 
 22 kernel-release := $(shell uname -r)            << 
 23 KCONFIG_DEFCONFIG_LIST += \                    << 
 24         /lib/modules/$(kernel-release)/.config << 
 25         /etc/kernel-config \                   << 
 26         /boot/config-$(kernel-release)         << 
 27 endif                                          << 
 28 KCONFIG_DEFCONFIG_LIST += arch/$(SRCARCH)/conf << 
 29                                                << 
 30 ifneq ($(findstring c, $(KBUILD_EXTRA_WARN)),) << 
 31 export KCONFIG_WARN_UNKNOWN_SYMBOLS=1          << 
 32 endif                                          << 
 33                                                << 
 34 ifneq ($(findstring e, $(KBUILD_EXTRA_WARN)),) << 
 35 export KCONFIG_WERROR=1                        << 
 36 endif                                          << 
 37                                                << 
 38 # We need this, in case the user has it in its     14 # We need this, in case the user has it in its environment
 39 unexport CONFIG_                                   15 unexport CONFIG_
 40                                                    16 
 41 config-prog     := conf                        !!  17 xconfig: $(obj)/qconf
 42 menuconfig-prog := mconf                       !!  18         $< $(Kconfig)
 43 nconfig-prog    := nconf                       << 
 44 gconfig-prog    := gconf                       << 
 45 xconfig-prog    := qconf                       << 
 46                                                << 
 47 define config_rule                             << 
 48 PHONY += $(1)                                  << 
 49 $(1): $(obj)/$($(1)-prog)                      << 
 50         $(Q)$$< $(silent) $(Kconfig)           << 
 51                                                << 
 52 PHONY += build_$(1)                            << 
 53 build_$(1): $(obj)/$($(1)-prog)                << 
 54 endef                                          << 
 55                                                << 
 56 $(foreach c, config menuconfig nconfig gconfig << 
 57                                                << 
 58 PHONY += localmodconfig localyesconfig         << 
 59 localyesconfig localmodconfig: $(obj)/conf     << 
 60         $(Q)$(PERL) $(src)/streamline_config.p << 
 61         $(Q)if [ -f .config ]; then            << 
 62                 cmp -s .tmp.config .config ||  << 
 63                 (mv -f .config .config.old.1;  << 
 64                  mv -f .tmp.config .config;    << 
 65                  $< $(silent) --oldconfig $(Kc << 
 66                  mv -f .config.old.1 .config.o << 
 67         else                                   << 
 68                 mv -f .tmp.config .config;     << 
 69                 $< $(silent) --oldconfig $(Kco << 
 70         fi                                     << 
 71         $(Q)rm -f .tmp.config                  << 
 72                                                    19 
 73 # These targets map 1:1 to the commandline opt !!  20 gconfig: $(obj)/gconf
 74 #                                              !!  21         $< $(Kconfig)
 75 # Note:                                        << 
 76 #  syncconfig has become an internal implement << 
 77 #  deprecated for external use                 << 
 78 simple-targets := oldconfig allnoconfig allyes << 
 79         alldefconfig randconfig listnewconfig  << 
 80         helpnewconfig yes2modconfig mod2yescon << 
 81                                                    22 
 82 PHONY += $(simple-targets)                     !!  23 menuconfig: $(obj)/mconf
                                                   >>  24         $< $(Kconfig)
 83                                                    25 
 84 $(simple-targets): $(obj)/conf                 !!  26 config: $(obj)/conf
 85         $(Q)$< $(silent) --$@ $(Kconfig)       !!  27         $< --oldaskconfig $(Kconfig)
                                                   >>  28 
                                                   >>  29 nconfig: $(obj)/nconf
                                                   >>  30         $< $(Kconfig)
                                                   >>  31 
                                                   >>  32 oldconfig: $(obj)/conf
                                                   >>  33         $< --$@ $(Kconfig)
                                                   >>  34 
                                                   >>  35 silentoldconfig: $(obj)/conf
                                                   >>  36         $(Q)mkdir -p include/generated
                                                   >>  37         $< --$@ $(Kconfig)
                                                   >>  38 
                                                   >>  39 localyesconfig localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
                                                   >>  40         $(Q)mkdir -p include/generated
                                                   >>  41         $(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config
                                                   >>  42         $(Q)if [ -f .config ]; then                                     \
                                                   >>  43                         cmp -s .tmp.config .config ||                   \
                                                   >>  44                         (mv -f .config .config.old.1;                   \
                                                   >>  45                          mv -f .tmp.config .config;                     \
                                                   >>  46                          $(obj)/conf --silentoldconfig $(Kconfig);      \
                                                   >>  47                          mv -f .config.old.1 .config.old)               \
                                                   >>  48         else                                                            \
                                                   >>  49                         mv -f .tmp.config .config;                      \
                                                   >>  50                         $(obj)/conf --silentoldconfig $(Kconfig);       \
                                                   >>  51         fi
                                                   >>  52         $(Q)rm -f .tmp.config
 86                                                    53 
 87 PHONY += savedefconfig defconfig               !!  54 # Create new linux.pot file
                                                   >>  55 # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
                                                   >>  56 update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
                                                   >>  57         $(Q)echo "  GEN     config.pot"
                                                   >>  58         $(Q)xgettext --default-domain=linux                         \
                                                   >>  59             --add-comments --keyword=_ --keyword=N_                 \
                                                   >>  60             --from-code=UTF-8                                       \
                                                   >>  61             --files-from=$(srctree)/scripts/kconfig/POTFILES.in     \
                                                   >>  62             --directory=$(srctree) --directory=$(objtree)           \
                                                   >>  63             --output $(obj)/config.pot
                                                   >>  64         $(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
                                                   >>  65         $(Q)(for i in `ls $(srctree)/arch/*/Kconfig      \
                                                   >>  66             $(srctree)/arch/*/um/Kconfig`;               \
                                                   >>  67             do                                           \
                                                   >>  68                 echo "  GEN     $$i";                    \
                                                   >>  69                 $(obj)/kxgettext $$i                     \
                                                   >>  70                      >> $(obj)/config.pot;               \
                                                   >>  71             done )
                                                   >>  72         $(Q)echo "  GEN     linux.pot"
                                                   >>  73         $(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
                                                   >>  74             --output $(obj)/linux.pot
                                                   >>  75         $(Q)rm -f $(obj)/config.pot
                                                   >>  76 
                                                   >>  77 PHONY += allnoconfig allyesconfig allmodconfig alldefconfig randconfig
                                                   >>  78 
                                                   >>  79 allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf
                                                   >>  80         $< --$@ $(Kconfig)
                                                   >>  81 
                                                   >>  82 PHONY += listnewconfig olddefconfig oldnoconfig savedefconfig defconfig
                                                   >>  83 
                                                   >>  84 listnewconfig olddefconfig: $(obj)/conf
                                                   >>  85         $< --$@ $(Kconfig)
                                                   >>  86 
                                                   >>  87 # oldnoconfig is an alias of olddefconfig, because people already are dependent
                                                   >>  88 # on its behavior(sets new symbols to their default value but not 'n') with the
                                                   >>  89 # counter-intuitive name.
                                                   >>  90 oldnoconfig: $(obj)/conf
                                                   >>  91         $< --olddefconfig $(Kconfig)
 88                                                    92 
 89 savedefconfig: $(obj)/conf                         93 savedefconfig: $(obj)/conf
 90         $(Q)$< $(silent) --$@=defconfig $(Kcon !!  94         $< --$@=defconfig $(Kconfig)
 91                                                    95 
 92 defconfig: $(obj)/conf                             96 defconfig: $(obj)/conf
 93 ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/c !!  97 ifeq ($(KBUILD_DEFCONFIG),)
 94         @$(kecho) "*** Default configuration i !!  98         $< --defconfig $(Kconfig)
 95         $(Q)$< $(silent) --defconfig=arch/$(SR << 
 96 else                                               99 else
 97         @$(kecho) "*** Default configuration i !! 100         @echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
 98         $(Q)$(MAKE) -f $(srctree)/Makefile $(K !! 101         $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
 99 endif                                             102 endif
100                                                   103 
101 %_defconfig: $(obj)/conf                          104 %_defconfig: $(obj)/conf
102         $(Q)$< $(silent) --defconfig=arch/$(SR !! 105         $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
103                                                << 
104 configfiles = $(wildcard $(srctree)/kernel/con << 
105 all-config-fragments = $(call configfiles,*.co << 
106 config-fragments = $(call configfiles,$@)      << 
107                                                << 
108 %.config: $(obj)/conf                          << 
109         $(if $(config-fragments),, $(error $@  << 
110         $(Q)$(CONFIG_SHELL) $(srctree)/scripts << 
111         $(Q)$(MAKE) -f $(srctree)/Makefile old << 
112                                                << 
113 PHONY += tinyconfig                            << 
114 tinyconfig:                                    << 
115         $(Q)KCONFIG_ALLCONFIG=kernel/configs/t << 
116         $(Q)$(MAKE) -f $(srctree)/Makefile tin << 
117                                                << 
118 # CHECK: -o cache_dir=<path> working?          << 
119 PHONY += testconfig                            << 
120 testconfig: $(obj)/conf                        << 
121         $(Q)$(PYTHON3) -B -m pytest $(src)/tes << 
122         -o cache_dir=$(abspath $(obj)/tests/.c << 
123         $(if $(findstring 1,$(KBUILD_VERBOSE)) << 
124 clean-files += tests/.cache                    << 
125                                                   106 
126 # Help text used by make help                     107 # Help text used by make help
127 help:                                             108 help:
128         @echo  'Configuration targets:'        << 
129         @echo  '  config          - Update cur    109         @echo  '  config          - Update current config utilising a line-oriented program'
130         @echo  '  nconfig         - Update cur    110         @echo  '  nconfig         - Update current config utilising a ncurses menu based program'
131         @echo  '  menuconfig      - Update cur    111         @echo  '  menuconfig      - Update current config utilising a menu based program'
132         @echo  '  xconfig         - Update cur !! 112         @echo  '  xconfig         - Update current config utilising a QT based front-end'
133         @echo  '  gconfig         - Update cur !! 113         @echo  '  gconfig         - Update current config utilising a GTK based front-end'
134         @echo  '  oldconfig       - Update cur    114         @echo  '  oldconfig       - Update current config utilising a provided .config as base'
135         @echo  '  localmodconfig  - Update cur    115         @echo  '  localmodconfig  - Update current config disabling modules not loaded'
136         @echo  '                    except tho << 
137         @echo  '  localyesconfig  - Update cur    116         @echo  '  localyesconfig  - Update current config converting local mods to core'
138         @echo  '                    except tho !! 117         @echo  '  silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
139         @echo  '  defconfig       - New config    118         @echo  '  defconfig       - New config with default from ARCH supplied defconfig'
140         @echo  '  savedefconfig   - Save curre    119         @echo  '  savedefconfig   - Save current config as ./defconfig (minimal config)'
141         @echo  '  allnoconfig     - New config    120         @echo  '  allnoconfig     - New config where all options are answered with no'
142         @echo  '  allyesconfig    - New config    121         @echo  '  allyesconfig    - New config where all options are accepted with yes'
143         @echo  '  allmodconfig    - New config    122         @echo  '  allmodconfig    - New config selecting modules when possible'
144         @echo  '  alldefconfig    - New config    123         @echo  '  alldefconfig    - New config with all symbols set to default'
145         @echo  '  randconfig      - New config    124         @echo  '  randconfig      - New config with random answer to all options'
146         @echo  '  yes2modconfig   - Change ans << 
147         @echo  '  mod2yesconfig   - Change ans << 
148         @echo  '  mod2noconfig    - Change ans << 
149         @echo  '  listnewconfig   - List new o    125         @echo  '  listnewconfig   - List new options'
150         @echo  '  helpnewconfig   - List new o !! 126         @echo  '  olddefconfig    - Same as silentoldconfig but sets new symbols to their default value'
151         @echo  '  olddefconfig    - Same as ol !! 127 
152         @echo  '                    default va !! 128 # lxdialog stuff
153         @echo  '  tinyconfig      - Configure  !! 129 check-lxdialog  := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
154         @echo  '  testconfig      - Run Kconfi !! 130 
155         @echo  ''                              !! 131 # Use recursively expanded variables so we do not call gcc unless
156         @echo  'Configuration topic targets:'  !! 132 # we really need to do so. (Do not call gcc as part of make mrproper)
157         @$(foreach f, $(all-config-fragments), !! 133 HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
158                 if help=$$(grep -m1 '^# Help:  !! 134                     -DLOCALE
159                         printf '  %-25s - %s\n << 
160                 fi;)                           << 
161                                                   135 
162 # ============================================    136 # ===========================================================================
                                                   >> 137 # Shared Makefile for the various kconfig executables:
                                                   >> 138 # conf:   Used for defconfig, oldconfig and related targets
                                                   >> 139 # nconf:  Used for the nconfig target.
                                                   >> 140 #         Utilizes ncurses
                                                   >> 141 # mconf:  Used for the menuconfig target
                                                   >> 142 #         Utilizes the lxdialog package
                                                   >> 143 # qconf:  Used for the xconfig target
                                                   >> 144 #         Based on QT which needs to be installed to compile it
                                                   >> 145 # gconf:  Used for the gconfig target
                                                   >> 146 #         Based on GTK which needs to be installed to compile it
163 # object files used by all kconfig flavours       147 # object files used by all kconfig flavours
164 common-objs     := confdata.o expr.o lexer.lex << 
165                    preprocess.o symbol.o util. << 
166                                                   148 
167 $(obj)/lexer.lex.o: $(obj)/parser.tab.h        !! 149 lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
168 HOSTCFLAGS_lexer.lex.o  := -I $(src)           !! 150 lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
169 HOSTCFLAGS_parser.tab.o := -I $(src)           << 
170                                                << 
171 # conf: Used for defconfig, oldconfig and rela << 
172 hostprogs       += conf                        << 
173 conf-objs       := conf.o $(common-objs)       << 
174                                                << 
175 # nconf: Used for the nconfig target based on  << 
176 hostprogs       += nconf                       << 
177 nconf-objs      := nconf.o nconf.gui.o mnconf- << 
178                                                << 
179 HOSTLDLIBS_nconf       = $(call read-file, $(o << 
180 HOSTCFLAGS_nconf.o     = $(call read-file, $(o << 
181 HOSTCFLAGS_nconf.gui.o = $(call read-file, $(o << 
182                                                << 
183 $(obj)/nconf: | $(obj)/nconf-libs              << 
184 $(obj)/nconf.o $(obj)/nconf.gui.o: | $(obj)/nc << 
185                                                << 
186 # mconf: Used for the menuconfig target based  << 
187 hostprogs       += mconf                       << 
188 lxdialog        := $(addprefix lxdialog/, \    << 
189                      checklist.o inputbox.o me << 
190 mconf-objs      := mconf.o $(lxdialog) mnconf- << 
191                                                << 
192 HOSTLDLIBS_mconf = $(call read-file, $(obj)/mc << 
193 $(foreach f, mconf.o $(lxdialog), \            << 
194   $(eval HOSTCFLAGS_$f = $$(call read-file, $( << 
195                                                << 
196 $(obj)/mconf: | $(obj)/mconf-libs              << 
197 $(addprefix $(obj)/, mconf.o $(lxdialog)): | $ << 
198                                                << 
199 # qconf: Used for the xconfig target based on  << 
200 hostprogs       += qconf                       << 
201 qconf-cxxobjs   := qconf.o qconf-moc.o         << 
202 qconf-objs      := images.o $(common-objs)     << 
203                                                << 
204 HOSTLDLIBS_qconf         = $(call read-file, $ << 
205 HOSTCXXFLAGS_qconf.o     = -std=c++11 -fPIC $( << 
206 HOSTCXXFLAGS_qconf-moc.o = -std=c++11 -fPIC $( << 
207 $(obj)/qconf: | $(obj)/qconf-libs              << 
208 $(obj)/qconf.o $(obj)/qconf-moc.o: | $(obj)/qc << 
209                                                   151 
210 quiet_cmd_moc = MOC     $@                     !! 152 conf-objs       := conf.o  zconf.tab.o
211       cmd_moc = $(call read-file, $(obj)/qconf !! 153 mconf-objs     := mconf.o zconf.tab.o $(lxdialog)
                                                   >> 154 nconf-objs     := nconf.o zconf.tab.o nconf.gui.o
                                                   >> 155 kxgettext-objs  := kxgettext.o zconf.tab.o
                                                   >> 156 qconf-cxxobjs   := qconf.o
                                                   >> 157 qconf-objs      := zconf.tab.o
                                                   >> 158 gconf-objs      := gconf.o zconf.tab.o
                                                   >> 159 
                                                   >> 160 hostprogs-y := conf
212                                                   161 
213 $(obj)/qconf-moc.cc: $(src)/qconf.h FORCE | $( !! 162 ifeq ($(MAKECMDGOALS),nconfig)
214         $(call if_changed,moc)                 !! 163         hostprogs-y += nconf
                                                   >> 164 endif
                                                   >> 165 
                                                   >> 166 ifeq ($(MAKECMDGOALS),menuconfig)
                                                   >> 167         hostprogs-y += mconf
                                                   >> 168 endif
                                                   >> 169 
                                                   >> 170 ifeq ($(MAKECMDGOALS),update-po-config)
                                                   >> 171         hostprogs-y += kxgettext
                                                   >> 172 endif
                                                   >> 173 
                                                   >> 174 ifeq ($(MAKECMDGOALS),xconfig)
                                                   >> 175         qconf-target := 1
                                                   >> 176 endif
                                                   >> 177 ifeq ($(MAKECMDGOALS),gconfig)
                                                   >> 178         gconf-target := 1
                                                   >> 179 endif
                                                   >> 180 
                                                   >> 181 
                                                   >> 182 ifeq ($(qconf-target),1)
                                                   >> 183         hostprogs-y += qconf
                                                   >> 184 endif
                                                   >> 185 
                                                   >> 186 ifeq ($(gconf-target),1)
                                                   >> 187         hostprogs-y += gconf
                                                   >> 188 endif
                                                   >> 189 
                                                   >> 190 clean-files     := qconf.moc .tmp_qtcheck .tmp_gtkcheck
                                                   >> 191 clean-files     += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h
                                                   >> 192 clean-files     += mconf qconf gconf nconf
                                                   >> 193 clean-files     += config.pot linux.pot
                                                   >> 194 
                                                   >> 195 # Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
                                                   >> 196 PHONY += $(obj)/dochecklxdialog
                                                   >> 197 $(addprefix $(obj)/,$(lxdialog)): $(obj)/dochecklxdialog
                                                   >> 198 $(obj)/dochecklxdialog:
                                                   >> 199         $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOSTLOADLIBES_mconf)
                                                   >> 200 
                                                   >> 201 always := dochecklxdialog
                                                   >> 202 
                                                   >> 203 # Add environment specific flags
                                                   >> 204 HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
                                                   >> 205 
                                                   >> 206 # generated files seem to need this to find local include files
                                                   >> 207 HOSTCFLAGS_zconf.lex.o  := -I$(src)
                                                   >> 208 HOSTCFLAGS_zconf.tab.o  := -I$(src)
                                                   >> 209 
                                                   >> 210 LEX_PREFIX_zconf        := zconf
                                                   >> 211 YACC_PREFIX_zconf       := zconf
                                                   >> 212 
                                                   >> 213 HOSTLOADLIBES_qconf     = $(KC_QT_LIBS)
                                                   >> 214 HOSTCXXFLAGS_qconf.o    = $(KC_QT_CFLAGS)
                                                   >> 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
                                                   >> 219 
                                                   >> 220 HOSTLOADLIBES_mconf   = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
                                                   >> 221 
                                                   >> 222 HOSTLOADLIBES_nconf     = $(shell \
                                                   >> 223                                 pkg-config --libs menu panel ncurses 2>/dev/null \
                                                   >> 224                                 || echo "-lmenu -lpanel -lncurses"  )
                                                   >> 225 $(obj)/qconf.o: $(obj)/.tmp_qtcheck
                                                   >> 226 
                                                   >> 227 ifeq ($(qconf-target),1)
                                                   >> 228 $(obj)/.tmp_qtcheck: $(src)/Makefile
                                                   >> 229 -include $(obj)/.tmp_qtcheck
                                                   >> 230 
                                                   >> 231 # QT needs some extra effort...
                                                   >> 232 $(obj)/.tmp_qtcheck:
                                                   >> 233         @set -e; echo "  CHECK   qt"; dir=""; pkg=""; \
                                                   >> 234         if ! pkg-config --exists QtCore 2> /dev/null; then \
                                                   >> 235             echo "* Unable to find the QT4 tool qmake. Trying to use QT3"; \
                                                   >> 236             pkg-config --exists qt 2> /dev/null && pkg=qt; \
                                                   >> 237             pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
                                                   >> 238             if [ -n "$$pkg" ]; then \
                                                   >> 239               cflags="\$$(shell pkg-config $$pkg --cflags)"; \
                                                   >> 240               libs="\$$(shell pkg-config $$pkg --libs)"; \
                                                   >> 241               moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \
                                                   >> 242               dir="$$(pkg-config $$pkg --variable=prefix)"; \
                                                   >> 243             else \
                                                   >> 244               for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
                                                   >> 245                 if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \
                                                   >> 246               done; \
                                                   >> 247               if [ -z "$$dir" ]; then \
                                                   >> 248                 echo >&2 "*"; \
                                                   >> 249                 echo >&2 "* Unable to find any QT installation. Please make sure that"; \
                                                   >> 250                 echo >&2 "* the QT4 or QT3 development package is correctly installed and"; \
                                                   >> 251                 echo >&2 "* either qmake can be found or install pkg-config or set"; \
                                                   >> 252                 echo >&2 "* the QTDIR environment variable to the correct location."; \
                                                   >> 253                 echo >&2 "*"; \
                                                   >> 254                 false; \
                                                   >> 255               fi; \
                                                   >> 256               libpath=$$dir/lib; lib=qt; osdir=""; \
                                                   >> 257               $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
                                                   >> 258                 osdir=x$$($(HOSTCXX) -print-multi-os-directory); \
                                                   >> 259               test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \
                                                   >> 260               test -f $$libpath/libqt-mt.so && lib=qt-mt; \
                                                   >> 261               cflags="-I$$dir/include"; \
                                                   >> 262               libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \
                                                   >> 263               moc="$$dir/bin/moc"; \
                                                   >> 264             fi; \
                                                   >> 265             if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \
                                                   >> 266               echo "*"; \
                                                   >> 267               echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \
                                                   >> 268               echo "*"; \
                                                   >> 269               moc="/usr/bin/moc"; \
                                                   >> 270             fi; \
                                                   >> 271         else \
                                                   >> 272           cflags="\$$(shell pkg-config QtCore QtGui Qt3Support --cflags)"; \
                                                   >> 273           libs="\$$(shell pkg-config QtCore QtGui Qt3Support --libs)"; \
                                                   >> 274           moc="\$$(shell pkg-config QtCore --variable=moc_location)"; \
                                                   >> 275           [ -n "$$moc" ] || moc="\$$(shell pkg-config QtCore --variable=prefix)/bin/moc"; \
                                                   >> 276         fi; \
                                                   >> 277         echo "KC_QT_CFLAGS=$$cflags" > $@; \
                                                   >> 278         echo "KC_QT_LIBS=$$libs" >> $@; \
                                                   >> 279         echo "KC_QT_MOC=$$moc" >> $@
                                                   >> 280 endif
215                                                   281 
216 targets += qconf-moc.cc                        !! 282 $(obj)/gconf.o: $(obj)/.tmp_gtkcheck
217                                                   283 
218 # gconf: Used for the gconfig target based on  !! 284 ifeq ($(gconf-target),1)
219 hostprogs       += gconf                       !! 285 -include $(obj)/.tmp_gtkcheck
220 gconf-objs      := gconf.o images.o $(common-o << 
221                                                   286 
222 HOSTLDLIBS_gconf   = $(call read-file, $(obj)/ !! 287 # GTK needs some extra effort, too...
223 HOSTCFLAGS_gconf.o = $(call read-file, $(obj)/ !! 288 $(obj)/.tmp_gtkcheck:
                                                   >> 289         @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then               \
                                                   >> 290                 if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then                  \
                                                   >> 291                         touch $@;                                                               \
                                                   >> 292                 else                                                                    \
                                                   >> 293                         echo >&2 "*";                                                   \
                                                   >> 294                         echo >&2 "* GTK+ is present but version >= 2.0.0 is required."; \
                                                   >> 295                         echo >&2 "*";                                                   \
                                                   >> 296                         false;                                                          \
                                                   >> 297                 fi                                                                      \
                                                   >> 298         else                                                                            \
                                                   >> 299                 echo >&2 "*";                                                           \
                                                   >> 300                 echo >&2 "* Unable to find the GTK+ installation. Please make sure that";       \
                                                   >> 301                 echo >&2 "* the GTK+ 2.0 development package is correctly installed...";        \
                                                   >> 302                 echo >&2 "* You need gtk+-2.0, glib-2.0 and libglade-2.0.";             \
                                                   >> 303                 echo >&2 "*";                                                           \
                                                   >> 304                 false;                                                                  \
                                                   >> 305         fi
                                                   >> 306 endif
                                                   >> 307 
                                                   >> 308 $(obj)/zconf.tab.o: $(obj)/zconf.lex.c $(obj)/zconf.hash.c
224                                                   309 
225 $(obj)/gconf: | $(obj)/gconf-libs              !! 310 $(obj)/qconf.o: $(obj)/qconf.moc
226 $(obj)/gconf.o: | $(obj)/gconf-cflags          !! 311 
                                                   >> 312 quiet_cmd_moc = MOC     $@
                                                   >> 313       cmd_moc = $(KC_QT_MOC) -i $< -o $@
227                                                   314 
228 # check if necessary packages are available, a !! 315 $(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck
229 cmd_conf_cfg = $< $(addprefix $(obj)/$*conf-,  !! 316         $(call cmd,moc)
230                                                   317 
231 $(obj)/%conf-cflags $(obj)/%conf-libs $(obj)/% !! 318 # Extract gconf menu items for I18N support
232         $(call cmd,conf_cfg)                   !! 319 $(obj)/gconf.glade.h: $(obj)/gconf.glade
                                                   >> 320         $(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \
                                                   >> 321         $(obj)/gconf.glade
233                                                   322 
234 clean-files += *conf-cflags *conf-libs *conf-b << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php