📄 clean.jam
字号:
#============================================================================# Rules for cleaning build detritus.#============================================================================DELTREE ?= "rm -rf" ;# CleanDir <tag> : <dir> ...# Forcibly delete a set of directories, even if they are not empty.# Tag is one of the standard targets used with the "Clean" rule, such as# "clean" or "distclean".rule CleanDir{ Always $(<) ; NotFile $(<) ; NoCare $(>) ;}actions piecemeal together existing CleanDir{ $(DELTREE) $(>)}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -