| 1234567891011121314151617181920 | # Configure and build scripts for travis CI systemV8VER ?= 5.1export NO_INTERACTION=1export REPORT_EXIT_STATUS=1before_install:	sudo add-apt-repository ppa:pinepain/libv8-$(V8VER) -y	sudo apt-get update -qinstall:	sudo apt-get install -y libv8-$(V8VER)-devbuild:	phpize	./configure	$(MAKE) -j3test: build	$(MAKE) test
 |