blog/Makefile

18 lines
197 B
Makefile

clean:
rm -rf _cache
rm -rf public
site:
cabal build --write-ghc-environment-files=always
build:
cabal exec site build
watch:
cabal exec site watch
all:
make clean
make site
make build