I'm trying to use Shake as replacement for Make in small project. Currently it's mostly used for aliasing shell commands. Is there any way to specify default phony action? Something similar to default: in makefile. For example, given:
phony "build" $ do
...
I'd like to declare that if given no targets, it run the action for build
.