makefile

来自「linux 内核源代码」· 代码 · 共 32 行

TXT
32
字号
## arch/blackfin/boot/Makefile## This file is subject to the terms and conditions of the GNU General Public# License.  See the file "COPYING" in the main directory of this archive# for more details.#MKIMAGE := $(srctree)/scripts/mkuboot.shtargets := vmImageextra-y += vmlinux.bin vmlinux.gzquiet_cmd_uimage = UIMAGE  $@      cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A $(ARCH) -O linux -T kernel \                   -C gzip -n 'Linux-$(KERNELRELEASE)' -a $(CONFIG_BOOT_LOAD) \                   -e $(shell $(NM) vmlinux | awk '$$NF == "__start" {print $$1}') \                   -d $< $@$(obj)/vmlinux.bin: vmlinux FORCE	$(call if_changed,objcopy)$(obj)/vmlinux.gz: $(obj)/vmlinux.bin FORCE	$(call if_changed,gzip)$(obj)/vmImage: $(obj)/vmlinux.gz	$(call if_changed,uimage)	@echo 'Kernel: $@ is ready'install:	sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $(BOOTIMAGE) System.map "$(INSTALL_PATH)"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?