Blahah/transrate

View on GitHub
ext/transrate/extconf.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Loads mkmf which is used to make makefiles for Ruby extensions
require 'mkmf'

# Give it a name
extension_name = 'transrate/transrate'

$CFLAGS = '-Wall -O3' # O for optimise

# The destination
dir_config(extension_name)

# Do the work
create_makefile(extension_name)