1 files changed, 4 insertions(+), 4 deletions(-)
M Makefile
M Makefile => Makefile +4 -4
@@ 1,13 1,13 @@
.PHONY: build preview deploy clean
build:
- runghc blog.hs build
+ nix build
preview:
- runghc blog.hs preview
+ nix run . -- preview
deploy: build
- runghc blog.hs deploy
+ nix run . -- deploy
clean:
- runghc blog.hs clean
+ nix run . -- clean