Makefile 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. # ===========================================================================
  2. # Kernel configuration targets
  3. # These targets are used from top-level makefile
  4. PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config
  5. xconfig: $(obj)/qconf
  6. $< arch/$(ARCH)/Kconfig
  7. gconfig: $(obj)/gconf
  8. $< arch/$(ARCH)/Kconfig
  9. menuconfig: $(obj)/mconf
  10. $< arch/$(ARCH)/Kconfig
  11. config: $(obj)/conf
  12. $< arch/$(ARCH)/Kconfig
  13. oldconfig: $(obj)/conf
  14. $< -o arch/$(ARCH)/Kconfig
  15. silentoldconfig: $(obj)/conf
  16. $< -s arch/$(ARCH)/Kconfig
  17. update-po-config: $(obj)/kxgettext
  18. xgettext --default-domain=linux \
  19. --add-comments --keyword=_ --keyword=N_ \
  20. --files-from=scripts/kconfig/POTFILES.in \
  21. --output scripts/kconfig/config.pot
  22. $(Q)ln -fs Kconfig_i386 arch/um/Kconfig_arch
  23. $(Q)for i in `ls arch/`; \
  24. do \
  25. scripts/kconfig/kxgettext arch/$$i/Kconfig \
  26. | msguniq -o scripts/kconfig/linux_$${i}.pot; \
  27. done
  28. $(Q)msgcat scripts/kconfig/config.pot \
  29. `find scripts/kconfig/ -type f -name linux_*.pot` \
  30. --output scripts/kconfig/linux_raw.pot
  31. $(Q)msguniq --sort-by-file scripts/kconfig/linux_raw.pot \
  32. --output scripts/kconfig/linux.pot
  33. $(Q)rm -f arch/um/Kconfig_arch
  34. $(Q)rm -f scripts/kconfig/linux_*.pot scripts/kconfig/config.pot
  35. PHONY += randconfig allyesconfig allnoconfig allmodconfig defconfig
  36. randconfig: $(obj)/conf
  37. $< -r arch/$(ARCH)/Kconfig
  38. allyesconfig: $(obj)/conf
  39. $< -y arch/$(ARCH)/Kconfig
  40. allnoconfig: $(obj)/conf
  41. $< -n arch/$(ARCH)/Kconfig
  42. allmodconfig: $(obj)/conf
  43. $< -m arch/$(ARCH)/Kconfig
  44. defconfig: $(obj)/conf
  45. ifeq ($(KBUILD_DEFCONFIG),)
  46. $< -d arch/$(ARCH)/Kconfig
  47. else
  48. @echo *** Default configuration is based on '$(KBUILD_DEFCONFIG)'
  49. $(Q)$< -D arch/$(ARCH)/configs/$(KBUILD_DEFCONFIG) arch/$(ARCH)/Kconfig
  50. endif
  51. %_defconfig: $(obj)/conf
  52. $(Q)$< -D arch/$(ARCH)/configs/$@ arch/$(ARCH)/Kconfig
  53. # Help text used by make help
  54. help:
  55. @echo ' config - Update current config utilising a line-oriented program'
  56. @echo ' menuconfig - Update current config utilising a menu based program'
  57. @echo ' xconfig - Update current config utilising a QT based front-end'
  58. @echo ' gconfig - Update current config utilising a GTK based front-end'
  59. @echo ' oldconfig - Update current config utilising a provided .config as base'
  60. @echo ' silentoldconfig - Same as oldconfig, but quietly'
  61. @echo ' randconfig - New config with random answer to all options'
  62. @echo ' defconfig - New config with default answer to all options'
  63. @echo ' allmodconfig - New config selecting modules when possible'
  64. @echo ' allyesconfig - New config where all options are accepted with yes'
  65. @echo ' allnoconfig - New config where all options are answered with no'
  66. # lxdialog stuff
  67. check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
  68. # Use reursively expanded variables so we do not call gcc unless
  69. # we really need to do so. (Do not call gcc as part of make mrproper)
  70. HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags)
  71. HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
  72. HOST_EXTRACFLAGS += -DLOCALE
  73. PHONY += $(obj)/dochecklxdialog
  74. $(obj)/dochecklxdialog:
  75. $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_LOADLIBES)
  76. always := dochecklxdialog
  77. # ===========================================================================
  78. # Shared Makefile for the various kconfig executables:
  79. # conf: Used for defconfig, oldconfig and related targets
  80. # mconf: Used for the mconfig target.
  81. # Utilizes the lxdialog package
  82. # qconf: Used for the xconfig target
  83. # Based on QT which needs to be installed to compile it
  84. # gconf: Used for the gconfig target
  85. # Based on GTK which needs to be installed to compile it
  86. # object files used by all kconfig flavours
  87. lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
  88. lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
  89. conf-objs := conf.o zconf.tab.o
  90. mconf-objs := mconf.o zconf.tab.o $(lxdialog)
  91. kxgettext-objs := kxgettext.o zconf.tab.o
  92. hostprogs-y := conf qconf gconf kxgettext
  93. ifeq ($(MAKECMDGOALS),menuconfig)
  94. hostprogs-y += mconf
  95. endif
  96. ifeq ($(MAKECMDGOALS),xconfig)
  97. qconf-target := 1
  98. endif
  99. ifeq ($(MAKECMDGOALS),gconfig)
  100. gconf-target := 1
  101. endif
  102. ifeq ($(qconf-target),1)
  103. qconf-cxxobjs := qconf.o
  104. qconf-objs := kconfig_load.o zconf.tab.o
  105. endif
  106. ifeq ($(gconf-target),1)
  107. gconf-objs := gconf.o kconfig_load.o zconf.tab.o
  108. endif
  109. clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
  110. .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
  111. clean-files += mconf qconf gconf
  112. # Needed for systems without gettext
  113. KBUILD_HAVE_NLS := $(shell \
  114. if echo "\#include <libintl.h>" | $(HOSTCC) $(HOSTCFLAGS) -E - > /dev/null 2>&1 ; \
  115. then echo yes ; \
  116. else echo no ; fi)
  117. ifeq ($(KBUILD_HAVE_NLS),no)
  118. HOSTCFLAGS += -DKBUILD_NO_NLS
  119. endif
  120. # generated files seem to need this to find local include files
  121. HOSTCFLAGS_lex.zconf.o := -I$(src)
  122. HOSTCFLAGS_zconf.tab.o := -I$(src)
  123. HOSTLOADLIBES_qconf = $(KC_QT_LIBS) -ldl
  124. HOSTCXXFLAGS_qconf.o = $(KC_QT_CFLAGS) -D LKC_DIRECT_LINK
  125. HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
  126. HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
  127. -D LKC_DIRECT_LINK
  128. $(obj)/qconf.o: $(obj)/.tmp_qtcheck
  129. ifeq ($(qconf-target),1)
  130. $(obj)/.tmp_qtcheck: $(src)/Makefile
  131. -include $(obj)/.tmp_qtcheck
  132. # QT needs some extra effort...
  133. $(obj)/.tmp_qtcheck:
  134. @set -e; echo " CHECK qt"; dir=""; pkg=""; \
  135. pkg-config --exists qt 2> /dev/null && pkg=qt; \
  136. pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
  137. if [ -n "$$pkg" ]; then \
  138. cflags="\$$(shell pkg-config $$pkg --cflags)"; \
  139. libs="\$$(shell pkg-config $$pkg --libs)"; \
  140. moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \
  141. dir="$$(pkg-config $$pkg --variable=prefix)"; \
  142. else \
  143. for d in $$QTDIR /usr/share/qt* /usr/lib/qt*; do \
  144. if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \
  145. done; \
  146. if [ -z "$$dir" ]; then \
  147. echo "*"; \
  148. echo "* Unable to find the QT3 installation. Please make sure that"; \
  149. echo "* the QT3 development package is correctly installed and"; \
  150. echo "* either install pkg-config or set the QTDIR environment"; \
  151. echo "* variable to the correct location."; \
  152. echo "*"; \
  153. false; \
  154. fi; \
  155. libpath=$$dir/lib; lib=qt; osdir=""; \
  156. $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
  157. osdir=x$$($(HOSTCXX) -print-multi-os-directory); \
  158. test -d $$libpath/$$osdir && libpath=$$libpath/$$osdir; \
  159. test -f $$libpath/libqt-mt.so && lib=qt-mt; \
  160. cflags="-I$$dir/include"; \
  161. libs="-L$$libpath -Wl,-rpath,$$libpath -l$$lib"; \
  162. moc="$$dir/bin/moc"; \
  163. fi; \
  164. if [ ! -x $$dir/bin/moc -a -x /usr/bin/moc ]; then \
  165. echo "*"; \
  166. echo "* Unable to find $$dir/bin/moc, using /usr/bin/moc instead."; \
  167. echo "*"; \
  168. moc="/usr/bin/moc"; \
  169. fi; \
  170. echo "KC_QT_CFLAGS=$$cflags" > $@; \
  171. echo "KC_QT_LIBS=$$libs" >> $@; \
  172. echo "KC_QT_MOC=$$moc" >> $@
  173. endif
  174. $(obj)/gconf.o: $(obj)/.tmp_gtkcheck
  175. ifeq ($(gconf-target),1)
  176. -include $(obj)/.tmp_gtkcheck
  177. # GTK needs some extra effort, too...
  178. $(obj)/.tmp_gtkcheck:
  179. @if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
  180. if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
  181. touch $@; \
  182. else \
  183. echo "*"; \
  184. echo "* GTK+ is present but version >= 2.0.0 is required."; \
  185. echo "*"; \
  186. false; \
  187. fi \
  188. else \
  189. echo "*"; \
  190. echo "* Unable to find the GTK+ installation. Please make sure that"; \
  191. echo "* the GTK+ 2.0 development package is correctly installed..."; \
  192. echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
  193. echo "*"; \
  194. false; \
  195. fi
  196. endif
  197. $(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c
  198. $(obj)/kconfig_load.o: $(obj)/lkc_defs.h
  199. $(obj)/qconf.o: $(obj)/qconf.moc $(obj)/lkc_defs.h
  200. $(obj)/gconf.o: $(obj)/lkc_defs.h
  201. $(obj)/%.moc: $(src)/%.h
  202. $(KC_QT_MOC) -i $< -o $@
  203. $(obj)/lkc_defs.h: $(src)/lkc_proto.h
  204. sed < $< > $@ 's/P(\([^,]*\),.*/#define \1 (\*\1_p)/'
  205. ###
  206. # The following requires flex/bison/gperf
  207. # By default we use the _shipped versions, uncomment the following line if
  208. # you are modifying the flex/bison src.
  209. # LKC_GENPARSER := 1
  210. ifdef LKC_GENPARSER
  211. $(obj)/zconf.tab.c: $(src)/zconf.y
  212. $(obj)/lex.zconf.c: $(src)/zconf.l
  213. $(obj)/zconf.hash.c: $(src)/zconf.gperf
  214. %.tab.c: %.y
  215. bison -l -b $* -p $(notdir $*) $<
  216. cp $@ $@_shipped
  217. lex.%.c: %.l
  218. flex -L -P$(notdir $*) -o$@ $<
  219. cp $@ $@_shipped
  220. %.hash.c: %.gperf
  221. gperf < $< > $@
  222. cp $@ $@_shipped
  223. endif