📄 makefile
字号:
# chapter2/1/Makefile## Author: Wenbo Yang <solrex@gmail.com> <http://solrex.cn>## This file is part of the source code of book "Write Your Own OS with Free# and Open Source Software". Homepage @ <http://share.solrex.cn/WriteOS/>.## This file is licensed under the GNU General Public License; either# version 3 of the License, or (at your option) any later version. CC=gccLD=ldLDFILE=solrex_x86.ldOBJCOPY=objcopyall: boot.imgboot.img: boot.bin @dd if=boot.bin of=boot.img bs=512 count=1 @dd if=/dev/zero of=boot.img skip=1 seek=1 bs=512 count=2879boot.bin: boot.elf @$(OBJCOPY) -R .pdr -R .comment -R.note -S -O binary boot.elf boot.binboot.elf: boot.o $(LD) boot.o -o boot.elf -e c -Tsolrex_x86.ldboot.o: boot.S $(CC) -c boot.S copy: boot.imgclean: @rm -f boot.o boot.elf boot.bindistclean: clean @rm -f boot.imgrelease: clean @mv boot.img solrex.img
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -