1 Star 0 Fork 197

Aisha / riscv-operating-system-mooc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 506 Bytes
一键复制 编辑 原始数据 按行查看 历史
unicornx 提交于 2021-03-31 14:32 . initial versioin
SECTIONS = \
code/asm \
code/os \
.DEFAULT_GOAL := all
all :
@echo "begin compile ALL exercises for assembly samples ......................."
for dir in $(SECTIONS); do $(MAKE) -C $$dir || exit "$$?"; done
@echo "compile ALL exercises finished successfully! ......"
.PHONY : clean
clean:
for dir in $(SECTIONS); do $(MAKE) -C $$dir clean || exit "$$?"; done
.PHONY : slides
slides:
rm -f ./slides/*.pdf
soffice --headless --convert-to pdf:writer_pdf_Export --outdir ./slides ./docs/ppts/*.pptx
1
https://gitee.com/Aisha-2021/riscv-operating-system-mooc.git
git@gitee.com:Aisha-2021/riscv-operating-system-mooc.git
Aisha-2021
riscv-operating-system-mooc
riscv-operating-system-mooc
main

搜索帮助