ruby--ruby/ext/dl/callback/extconf.rb

16 lines
372 B
Ruby
Raw Normal View History

require 'mkmf'
if compiled?("dl")
CALLBACKS = (0..8).map{|i| "callback-#{i}"}
CALLBACK_SRCS = CALLBACKS.map{|basename| "#{basename}.c"}
CALLBACK_OBJS = CALLBACKS.map{|basename| "#{basename}.o"}
$distcleanfiles += [ "callback.h", *CALLBACK_SRCS ]
$objs = %w[ callback.o ] + CALLBACK_OBJS
$INCFLAGS << " -I$(srcdir)/.."
create_makefile("dl/callback")
end