1 Star 0 Fork 8

luciferseva/linux_kernel_011

forked from hinus/linux_kernel_011 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 625 Bytes
一键复制 编辑 原始数据 按行查看 历史
hinus 提交于 2021-07-02 23:39 . Title: Read request for hd.
AS := as
LD := ld -m elf_x86_64
LDFLAG := -Ttext 0x0 -s --oformat binary
image : linux.img
linux.img : tools/build bootsect setup kernel/system
./tools/build bootsect setup kernel/system > $@
tools/build : tools/build.c
gcc -o $@ $<
kernel/system : kernel/head.S kernel/*.c mm/*.c kernel/blk_drv/*.c
cd kernel; make system; cd ..
bootsect : bootsect.o
$(LD) $(LDFLAG) -o $@ $<
bootsect.o : bootsect.S
$(AS) -o $@ $<
setup : setup.o
$(LD) $(LDFLAG) -e _start_setup -o $@ $<
setup.o : setup.S
$(AS) -o $@ $<
clean:
rm *.o
rm bootsect
rm setup
rm tools/build
rm linux.img
cd kernel; make clean; cd ..
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/kris2wu/linux_kernel_011.git
git@gitee.com:kris2wu/linux_kernel_011.git
kris2wu
linux_kernel_011
linux_kernel_011
master

搜索帮助