#!/bin/sh -e bench() { if [ x = "x$(which time)" ]; then $@ echo "time not installed" else time $@ fi } >&2 bench cc -std=c89 -Wall -Wextra -Wno-comment sources/main.c -static -o artifacts/xip-8 >&2 echo "------------------------------------------------\n"