Sha256: 07fabfa3b91328089b02ac286a54a186804e11156348d03925b88ae0eb00c9f8

Contents?: true

Size: 556 Bytes

Versions: 8

Compression:

Stored size: 556 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2014, by John MacFarlane.
# Copyright, 2015-2019, by Garen Torikian.
# Copyright, 2016-2017, by Yuki Izumi.
# Copyright, 2017, by Ashe Connor.
# Copyright, 2020-2023, by Samuel Williams.

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

8 entries across 8 versions & 1 rubygems

Version Path
markly-0.12.1 ext/markly/extconf.rb
markly-0.12.0 ext/markly/extconf.rb
markly-0.11.0 ext/markly/extconf.rb
markly-0.10.0 ext/markly/extconf.rb
markly-0.9.1 ext/markly/extconf.rb
markly-0.9.0 ext/markly/extconf.rb
markly-0.8.1 ext/markly/extconf.rb
markly-0.8.0 ext/markly/extconf.rb