clean.jam
来自「经典开源游戏glest的源代码」· JAM 代码 · 共 22 行
JAM
22 行
#============================================================================# 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 + =
减小字号Ctrl + -
显示快捷键?