Sha256: 397912d53acb000ee21df131b7c8bf63a91610cffe7e37f0c86489039131d9c8
Contents?: true
Size: 486 Bytes
Versions: 1
Compression:
Stored size: 486 Bytes
Contents
#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] Compile extensions using make system. This command executes the reap-make-extconf command, which searches for extconf.rb scripts under the ext/ directory and runs them, which will generate Makefiles. Then the makes files are executed via the system make command, compiling any extensions. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.make end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reap-9.4.0 | bin/reap-make |