summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rwxr-xr-xbuild/x1114
1 files changed, 14 insertions, 0 deletions
diff --git a/build/x11 b/build/x11
new file mode 100755
index 0000000..a383438
--- /dev/null
+++ b/build/x11
@@ -0,0 +1,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"