aboutsummaryrefslogtreecommitdiffstats
path: root/ext/ripper/extconf.rb
blob: 99814e5d6c45d24a5b958ffe5900d95896291df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!ruby -s

require 'mkmf'
require 'rbconfig'

def main
  Logging.message "YARV doesn't support Ripper"
  return

  unless find_executable('bison')
    unless File.exist?('ripper.c') or File.exist?("#{$srcdir}/ripper.c")
      Logging.message 'missing bison; abort'
      return
    end
  end
  $objs = %w(ripper.o)
  $cleanfiles.concat %w(ripper.y ripper.c ripper.E ripper.output eventids1.c eventids2table.c)
  $CPPFLAGS += ' -DRIPPER'
  $CPPFLAGS += ' -DRIPPER_DEBUG' if $debug
  create_makefile 'ripper'
end

main