summaryrefslogtreecommitdiff
path: root/b
diff options
context:
space:
mode:
Diffstat (limited to 'b')
-rwxr-xr-xb16
1 files changed, 16 insertions, 0 deletions
diff --git a/b b/b
new file mode 100755
index 00000000..a116163e
--- /dev/null
+++ b/b
@@ -0,0 +1,16 @@
1#!/bin/bash
2args="-fwarn-unused-imports -rtsopts -DRENDERFLUSH"
3
4root=${0%/*}
5cd "$root"
6
7me=${0##*/}
8me=${me%.*}
9ghc \
10 -hidir build/$me -odir build/$me \
11 -iPresence \
12 $args \
13 -o presence \
14 Presence/monitortty.c \
15 Presence/main \
16 "$@"