Sha256: f724ec4ae08ca936553c5b6b61a48ad7e0609c502124d4dbc5fec44499242d9d

Contents?: true

Size: 366 Bytes

Versions: 4

Compression:

Stored size: 366 Bytes

Contents

# frozen_string_literal: true

# Loads mkmf which is used to make makefiles for Ruby extensions
require 'mkmf'

$CFLAGS << " -O3 -std=c99"

gem_name = File.basename(__dir__)
extension_name = 'markly'

# The destination:
dir_config(extension_name)

# Generate the makefile to compile the native binary into `lib`:
create_makefile(File.join(gem_name, extension_name))

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
markly-0.7.0 ext/markly/extconf.rb
markly-0.6.1 ext/markly/extconf.rb
markly-0.6.0 ext/markly/extconf.rb
markly-0.5.2 ext/markly/extconf.rb