public
Description: Ruby Interface of Erlang
Homepage: http://github.com/KDr2/erlix/
Clone URL: git://github.com/KDr2/erlix.git
KDr2 (author)
Tue Jul 21 02:18:03 -0700 2009
commit  7f1a5371e8ab36838f809fcc72828601e804a0ac
tree    07a14addd927b05fd48a45a50b1a6a7bda7c7fac
parent  b52abe69e7a0b08dc25549ebd97dd872af40e7e1
erlix / extconf.rb
100755 18 lines (14 sloc) 0.253 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/ruby
#
# project : erlix
# author : kdr2
#
 
require "mkmf"
 
dir_config("ei")
 
if have_library("ei","erl_init") and
    have_library("erl_interface","erl_init")
then
  create_makefile("erlix")
else
  puts "error: erl_interface not found!"
end