5 lines
203 B
Bash
Executable file
5 lines
203 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 | sed 's/-Wall//') $@
|