Add a few more commands to make

This commit is contained in:
Sanchayan Maity 2024-05-10 22:03:52 +05:30
parent 1f03b8353f
commit a9f0019fb6
Signed by: sanchayanmaity
GPG key ID: 6F6A0609C12038F3

View file

@ -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