Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用此操作:
actions re2c { re2c --tags -o `basename $(<)` $(>) }
但我想改用path.basename规则。类似的东西:
path.basename
rule re2c ( targets * : sources * : properties * ) { import path ; targets = [ path.basename $(targets) ] ; }
这种方法对我不起作用。