1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/ext/v8/extconf.rb
2010-01-12 16:16:12 +02:00

27 lines
488 B
Ruby
Executable file

#!/opt/local/bin/ruby
require 'mkmf'
dir_config('v8')
have_library('v8') or raise "unable to find libv8"
$CPPFLAGS += " -Wall" unless $CPPFLAGS.split.include? "-Wall"
create_makefile('v8')
# now add a few extra targets
File.open("Makefile", "a") do |makefile|
makefile.print <<EOF
test: all
@echo running spec...
spec -O spec/spec.opts spec/therubyracer_spec.rb
docs/cpp:
mkdir -p docs/cpp
docs: all docs/cpp
@echo Generate C++ docs to docs/cpp/html
doxygen Doxyfile
EOF
end