diff options
| -rw-r--r-- | Rakefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -172,3 +172,11 @@ end desc "Publish the documentation" task :pubdoc => [:pubrdoc, :pubfaq] + +desc "Build the Native extension" +task :build do + cd 'ext/sqlite3_api' do + ruby 'extconf.rb' + system 'make' + end +end |
