#!/bin/sh

set -e

cd "$(dirname "$0")/../../example/ppx_once"

if [ -x '/usr/bin/ocamlopt' ]
then
	make
else
	make ppx_once.cmo
fi

make clean
