Sha256: 647e4312cdaa6593f4ad77d02e34ab33029722b19ad8a304d46aa69bdf9c0964

Contents?: true

Size: 503 Bytes

Versions: 1

Compression:

Stored size: 503 Bytes

Contents

#!/usr/bin/env ruby

require 'reap/application'

HELP = <<-END
Usage: #{File.basename($0)} [options]

Reset ext/ contents to "pristine" state. This will
remove and temporary products created by the compile
process, via reap-make-clean, as well as remove all
itermediate object files.

Run this command if you wish to recompile from scratch.
This command is also executed when running reap-clobber.
END

if ARGV.include?('--help')
  puts HELP
else
  app = Reap::Application.new
  app.make_distclean
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-make-distclean