5 lines
185 B
Bash
Executable file
5 lines
185 B
Bash
Executable file
#!/bin/sh
|
|
# This runs ghci with the same flags used when compiling with ghc.
|
|
# Certian flags need to be the same in order for ghci to reuse compiled
|
|
# objects.
|
|
ghci $(make getflags) $@
|