Commit 2ee1cfc03c9e08aef0fbad0679f24e719f433071

Authored by Antonio Terceiro
Committed by Sergio Oliveira
1 parent dee504c4

Add task to build docs from the top level

Showing 2 changed files with 6 additions and 0 deletions   Show diff stats
Rakefile
... ... @@ -98,3 +98,5 @@ task :preconfig => ssh_config_file do
98 98 end
99 99 end
100 100 end
  101 +
  102 +Dir.glob('tasks/*.rake').each { |f| load f }
... ...
tasks/doc.rake 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +desc 'Builds documentation'
  2 +task :doc do
  3 + sh 'make -C docs/ html'
  4 +end
... ...