diff options
Diffstat (limited to 'tasks/ffi.rake')
-rw-r--r-- | tasks/ffi.rake | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tasks/ffi.rake b/tasks/ffi.rake deleted file mode 100644 index 0ade669..0000000 --- a/tasks/ffi.rake +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: UTF-8 -*- -# -namespace :ffi do - # - desc "extract api out of enlightenment headers, then generate bindings" - task :run => [ :api, :ruby ] - # - desc "extract api out of enlightenment headers" - task :api do - sh './tools/extract-api.sh' - end - # - desc "generate ffi bindings" - task :ruby do - sh './tools/genruby.rb' - end -end -# -desc 'Alias to ffi:run' -task :ffi => 'ffi:run' -# -# EOF |