summaryrefslogtreecommitdiff
path: root/gi
blob: 23428538f7e5c266512f87fbbe558d89da357f57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
args="-fwarn-unused-imports"

root=${0%/*}
cd "$root"

me=g
ghci                                 \
    -hidir build/$me -odir build/$me \
    -iPresence                        \
    -iArchive                        \
    $args                            \
    "$@"