Skip to content

Commit

Permalink
Merge pull request #248 from nobu/srcs
Browse files Browse the repository at this point in the history
Add `srcs` target to prepare to build
  • Loading branch information
nobu committed Nov 2, 2023
2 parents b12a4b8 + 96976dc commit f49ce80
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Rakefile
Expand Up @@ -80,9 +80,11 @@ else
end
end

task :compile => ['lib/racc/parser-text.rb']
desc 'Make autogenerated sources'
task :srcs => ['lib/racc/parser-text.rb']

task :build => "lib/racc/parser-text.rb"
task :compile => :srcs
task :build => :srcs

task :test => :compile

Expand Down

0 comments on commit f49ce80

Please sign in to comment.