mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 05:25:34 +02:00
9 lines
246 B
Ruby
9 lines
246 B
Ruby
# frozen_string_literal: true
|
|
require 'mkmf'
|
|
if RUBY_ENGINE == 'ruby'
|
|
$INCFLAGS << " -I$(top_srcdir)" if $extmk
|
|
have_func("onig_region_memsize", "ruby.h")
|
|
create_makefile 'strscan'
|
|
else
|
|
File.write('Makefile', dummy_makefile("").join)
|
|
end
|