加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 477 Bytes
一键复制 编辑 原始数据 按行查看 历史
# To build:
# $ apt install fonts-linuxlibertine texlive-xetex pandoc
# $ make
# we need xelatex for utf-8 support
tex = xelatex
tflags = -interaction=nonstopmode -halt-on-error
all: userguide.pdf
.PHONY: all clean
userguide.pdf: userguide/userguide.tex
$(tex) $(tflags) $^
$(tex) $(tflags) $^
userguide/userguide.tex: rest-api.tex host-management.tex console.tex architecture/code-update/code-update.tex
%.tex: %.md
pandoc -o $@ $^
clean:
rm -f *.tex userguide.*
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化