From e24a85880a026bfc968691b02a2e6135dd271800 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Sat, 13 Jan 2007 20:21:03 +0000 Subject: Add a 'build' task for more easily building the native extension --- Rakefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Rakefile b/Rakefile index 25cf11a..1845b3a 100644 --- a/Rakefile +++ b/Rakefile @@ -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 -- cgit