1 Star 0 Fork 6

G-XBT/linux_kernel_011

forked from hinus/linux_kernel_011 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 634 Bytes
一键复制 编辑 原始数据 按行查看 历史
hinus 提交于 2021-08-16 08:42 . Title: debug level
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/*.S kernel/*.c mm/*.c kernel/blk_drv/*.c fs/*.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 ..
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/harodggg/linux_kernel_011.git
git@gitee.com:harodggg/linux_kernel_011.git
harodggg
linux_kernel_011
linux_kernel_011
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385