justin-site/Makefile
Justin Hsu 58491440ce Move to Stackage.
No more cabal sandbox.
2018-02-17 18:23:17 +00:00

17 lines
215 B
Makefile

TOP=stack exec website-exe
all:
stack build
check:
$(TOP) check
preview:
$(TOP) rebuild && (cd _site; python -m SimpleHTTPServer)
deploy:
$(TOP) rebuild && $(TOP) deploy && $(TOP) check
clean:
stack clean