diff options
Diffstat (limited to 'dht/bp')
-rwxr-xr-x | dht/bp | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ | |||
1 | #!/bin/bash | ||
2 | args="-rtsopts -hisuf p_hi -osuf p_o -prof -fprof-auto -fprof-auto-exported" | ||
3 | |||
4 | root=${0%/*} | ||
5 | cd "$root" | ||
6 | |||
7 | me=${0##*/} | ||
8 | me=${me%.*} | ||
9 | ghc \ | ||
10 | -hidir build/$me -odir build/$me \ | ||
11 | -iPresence \ | ||
12 | Data/BitSyntax.hs | ||
13 | ghc \ | ||
14 | -hidir build/$me -odir build/$me \ | ||
15 | -iPresence \ | ||
16 | $args \ | ||
17 | -o presence \ | ||
18 | build/b/Presence/monitortty.o \ | ||
19 | Presence/main \ | ||
20 | "$@" | ||