📄 makefile
字号:
# You need package 'docbook-utils' to generate documentation under Debian.SRC_ENG=manual-engSRC_HUN=manual-hun.PHONY: all html txt ps pdfall: htmlhtml: $(SRC_ENG).html $(SRC_HUN).htmltxt: $(SRC_ENG).txt $(SRC_HUN).txtps: $(SRC_ENG).ps $(SRC_HUN).pspdf: $(SRC_ENG).pdf $(SRC_HUN).pdf%html: %sgml# -rm -rvf $@# -mkdir -v $@# docbook2html -u -o $@ $< docbook2html -u -o ./ $<%txt: %sgml docbook2txt $<%ps: %sgml docbook2ps $<%pdf: %sgml docbook2pdf $<.PHONY: cleanclean: -rm -rvf $(SRC_ENG).html $(SRC_ENG).txt $(SRC_ENG).ps $(SRC_ENG).pdf \ $(SRC_HUN).html $(SRC_HUN).txt $(SRC_HUN).ps $(SRC_HUN).pdf
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -