blob: a48efef2ab2df510ebad4a5d81d24f5828eb076b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
warn="-freverse-errors -fwarn-unused-imports -Wmissing-signatures -fdefer-typed-holes"
exts="-XOverloadedStrings -XRecordWildCards"
defs="-DBENCODE_AESON -DTHREAD_DEBUG"
hide="-hide-package crypto-random -hide-package crypto-api -hide-package crypto-numbers -hide-package cryptohash -hide-package prettyclass"
root=${0%/*}
cd "$root"
me=${0##*/}
me=${me%.*}
ghc \
$hide \
$exts \
$defs \
-hidir build/$me -odir build/$me \
-iPresence \
-iArchive \
-isrc \
-icryptonite-backport \
build/b/Presence/monitortty.o \
build/b/cbits/cryptonite_salsa.o \
build/b/cbits/cryptonite_xsalsa.o\
$warn \
"$@"
|