Makefile (f2cbb4f01936a3e4225692e03b084b78c56d386d) | Makefile (720d6c29e146e96cca858057469951e91e0e6850) |
---|---|
1# =========================================================================== 2# Kernel configuration targets 3# These targets are used from top-level makefile 4 5.PHONY: oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config 6 7xconfig: $(obj)/qconf 8 $< arch/$(ARCH)/Kconfig --- 13 unchanged lines hidden (view full) --- 22 23silentoldconfig: $(obj)/conf 24 $< -s arch/$(ARCH)/Kconfig 25 26update-po-config: $(obj)/kxgettext 27 xgettext --default-domain=linux \ 28 --add-comments --keyword=_ --keyword=N_ \ 29 --files-from=scripts/kconfig/POTFILES.in \ | 1# =========================================================================== 2# Kernel configuration targets 3# These targets are used from top-level makefile 4 5.PHONY: oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config 6 7xconfig: $(obj)/qconf 8 $< arch/$(ARCH)/Kconfig --- 13 unchanged lines hidden (view full) --- 22 23silentoldconfig: $(obj)/conf 24 $< -s arch/$(ARCH)/Kconfig 25 26update-po-config: $(obj)/kxgettext 27 xgettext --default-domain=linux \ 28 --add-comments --keyword=_ --keyword=N_ \ 29 --files-from=scripts/kconfig/POTFILES.in \ |
30 -o scripts/kconfig/linux.pot 31 scripts/kconfig/kxgettext arch/$(ARCH)/Kconfig >> scripts/kconfig/linux.pot | 30 --output scripts/kconfig/config.pot 31 $(Q)ln -fs Kconfig_i386 arch/um/Kconfig_arch 32 $(Q)for i in `ls arch/`; \ 33 do \ 34 scripts/kconfig/kxgettext arch/$$i/Kconfig \ 35 | msguniq -o scripts/kconfig/linux_$${i}.pot; \ 36 done 37 $(Q)msgcat scripts/kconfig/config.pot \ 38 `find scripts/kconfig/ -type f -name linux_*.pot` \ 39 --output scripts/kconfig/linux_raw.pot 40 $(Q)msguniq --sort-by-file scripts/kconfig/linux_raw.pot \ 41 --output scripts/kconfig/linux.pot 42 $(Q)rm -f arch/um/Kconfig_arch 43 $(Q)rm -f scripts/kconfig/linux_*.pot scripts/kconfig/config.pot |
32 33.PHONY: randconfig allyesconfig allnoconfig allmodconfig defconfig 34 35randconfig: $(obj)/conf 36 $< -r arch/$(ARCH)/Kconfig 37 38allyesconfig: $(obj)/conf 39 $< -y arch/$(ARCH)/Kconfig --- 177 unchanged lines hidden --- | 44 45.PHONY: randconfig allyesconfig allnoconfig allmodconfig defconfig 46 47randconfig: $(obj)/conf 48 $< -r arch/$(ARCH)/Kconfig 49 50allyesconfig: $(obj)/conf 51 $< -y arch/$(ARCH)/Kconfig --- 177 unchanged lines hidden --- |