blob: a383438e0739cacdd16acf414b609fcf5749dfb7 (
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 sources/main.c -static -o artifacts/xip-8
>&2 echo "------------------------------------------------\n"
|