📄 makefile
字号:
# $Id: Makefile,v 1.4 1997/12/15 20:08:56 ecd Exp $# Makefile for the Sparc64 boot stuff.## Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)# Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)ROOT_IMG := /usr/src/root.imgELFTOAOUT := elftoaouthostprogs-y := piggybacktargets := image tftpboot.img vmlinux.aoutquiet_cmd_elftoaout = ELF2AOUT $@ cmd_elftoaout = $(ELFTOAOUT) vmlinux -o $@quiet_cmd_piggy = PIGGY $@ cmd_piggy = $(obj)/piggyback $@ System.map $(ROOT_IMG)quiet_cmd_strip = STRIP $@ cmd_strip = $(STRIP) -R .comment -R .note -K sun4u_init -K _end -K _start vmlinux -o $@# Actual linking$(obj)/image: vmlinux FORCE $(call if_changed,strip) @echo ' kernel: $@ is ready'$(obj)/tftpboot.img: vmlinux $(obj)/piggyback System.map $(ROOT_IMG) FORCE $(call if_changed,elftoaout) $(call if_changed,piggy) @echo ' kernel: $@ is ready'$(obj)/vmlinux.aout: vmlinux FORCE $(call if_changed,elftoaout) @echo ' kernel: $@ is ready'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -