1# Loads mkmf which is used to make makefiles for Ruby extensions
2require 'mkmf'
3
4# Give it a name
5extension_name = 'biosig'
6
7# The destination
8dir_config(extension_name, "..", ".." )
9
10$LDFLAGS='-lbiosig -lz -lcholmod'
11
12# Do the work
13create_makefile(extension_name)
14