From a9f0019fb6a441cf615559c719c5746a8ec56728 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 10 May 2024 22:03:52 +0530 Subject: [PATCH] Add a few more commands to make --- Makefile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c7cb22..34147f4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,17 @@ +clean: + rm -rf _cache + rm -rf public + +site: + cabal build --write-ghc-environment-files=always + build: cabal exec site build watch: - cabal exec site build && cabal exec site watch + cabal exec site watch + +all: + make clean + make site + make build