#!/bin/bash
if make -j 8; then
	if [ -x /usr/bin/optirun ]; then
		optirun ./tourista test
	else
		./tourista test
	fi
fi