1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/ext/hamlit/extconf.rb
2016-02-06 15:37:53 +09:00

20 lines
511 B
Ruby

require 'mkmf'
houdini_dir = File.expand_path('./houdini', __dir__)
$INCFLAGS << " -I#{houdini_dir}"
$CFLAGS << ' -Wall -Wextra'
$srcs = %w[hamlit.c]
Dir[File.join(houdini_dir, '*.c')].each do |path|
src = File.basename(path)
begin
FileUtils.ln_s(path, src, force: true)
rescue NotImplementedError
# For the error on windows:
# symlink() function is unimplemented on this machine (NotImplementedError)
FileUtils.cp(path, src)
end
$srcs << src
end
create_makefile('hamlit/hamlit')