16
17
18
19
20
|
# File 'lib/rule/yacc.rb', line 16
def target(params)
input = PathSet.make(params[:input])
output = PathSet.make(Path.make(params[:output], :outoftree => true))
{:rule => "yacc", :input => input, :output => output, :variables => {}}
end
|