summaryrefslogtreecommitdiff
path: root/build/x11
blob: 7489e93c062bed9f3610dc128759862c7b4f155d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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"