Sha256: 394229fc431047699fe1640527cbfeea7215dbeeed062ecac45bc088a5d868a0

Contents?: true

Size: 315 Bytes

Versions: 8

Compression:

Stored size: 315 Bytes

Contents

#! /usr/bin/env ruby

require 'autoproj/cli/main'
Autoproj::CLI.basic_setup

class Amake < Autoproj::CLI::Main
    def self.banner(*)
        "amake [options]"
    end
end

if ARGV.include?('--help') || ARGV.include?('help')
    Amake.start(['help', 'build'])
else
    Amake.start(['build', '--amake', *ARGV])
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
autoproj-2.3.0 bin/amake
autoproj-2.2.2 bin/amake
autoproj-2.2.1 bin/amake
autoproj-2.2.0 bin/amake
autoproj-2.1.2 bin/amake
autoproj-2.1.1 bin/amake
autoproj-2.1.0 bin/amake
autoproj-2.1.0.rc1 bin/amake