summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authordweller <dweller@cabin.digital>2025-03-28 19:52:47 +0200
committerdweller <dweller@cabin.digital>2025-03-28 19:52:47 +0200
commitb41ec911812e66931f01939378979845716b6119 (patch)
tree08be727857d9881182a723af382680c48fb89434 /build
parent2bcb97cade32e4781135ff4c1500b95fcf351889 (diff)
experimenting with UI
Diffstat (limited to 'build')
-rwxr-xr-xbuild/x1123
1 files changed, 0 insertions, 23 deletions
diff --git a/build/x11 b/build/x11
deleted file mode 100755
index cae1518..0000000
--- a/build/x11
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh -e
-
-CC=${CC:-musl-gcc}
-STATIC=${STATIC:-"-static"}
-CFLAGS=" \
- -std=c89 \
- -Wall -Wextra -Wno-comment \
- -ggdb -Og \
-"
-
-bench()
-{
- if [ x = "x$(which time 2>/dev/null)" ]; then
- $@
- echo "time not installed"
- else
- time $@
- fi
-}
-
-mkdir -p artifacts
->&2 bench $CC $CFLAGS sources/main.c $STATIC -o artifacts/xip-8
->&2 echo "------------------------------------------------\n"