Module: Libv8::Make

Included in:
Builder
Defined in:
ext/libv8/make.rb

Class Method Summary collapse

Class Method Details

.makeObject



5
6
7
8
9
10
11
# File 'ext/libv8/make.rb', line 5

def make
  unless defined?(@make)
    @make = `which gmake 2> /dev/null`.chomp
    @make = `which make`.chomp unless $?.success?
  end
  @make
end