1 Star 0 Fork 0

WHC/xv6-course

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 465 Bytes
一键复制 编辑 原始数据 按行查看 历史
殊蕤 提交于 2023-12-06 21:22 . update: 添加 png 创建逻辑
IMG_DIR := img
DOTS := $(shell find $(IMG_DIR) -name *.dot)
PDFS := $(DOTS:%=%.pdf)
PNGS := $(DOTS:%=%.png)
all: build images
images: $(PDFS) $(PNGS)
%.dot.pdf: %.dot
dot -Tpdf $< -o $@
%.dot.png: %.dot
dot -Tpng $< -o $@
build:
make -C lab
clean:
make -C lab clean
init:
bear -- make -C lab
publish:
git push github master
git push gitee master
git push github --tags
git push gitee --tags
.PHONY: all build images clean init publish
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/whc_softHardware/xv6-course.git
git@gitee.com:whc_softHardware/xv6-course.git
whc_softHardware
xv6-course
xv6-course
master

搜索帮助