help.jam

来自「经典开源游戏glest的源代码」· JAM 代码 · 共 29 行

JAM
29
字号
#============================================================================# Rules for displaying help messages about targets#============================================================================##  Help target : description##    Adds a description to a target which will be shown to the user when##    "jam help" is invoked.rule Help{  $(<)_help = $(>) ;  local target = $(<:G=help) ;  Depends help : $(target) ;  NotFile $(>) ;  PrintHelp $(target) : $(>) ;  Always $(target) ;}#----------------------------------------------------------------------------                                                                                NotFile help ;Always help ;actions quietly PrintHelp{  # target width:13, description width:51  echo "jam ->$(<)              <- =>$(>)                                                   <=" | \    sed 's/->\(..............\).*<-/\1/;s/=>\(...................................................\).*<=/\1/'}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?