justin-site/Makefile

21 lines
277 B
Makefile
Raw Permalink Normal View History

TOP=cabal v2-run justin-site
2015-01-05 06:20:06 +00:00
all:
cabal v2-build
2015-01-05 06:20:06 +00:00
check:
$(TOP) check
2016-10-14 02:06:10 +00:00
preview:
2018-07-30 03:00:53 +00:00
$(TOP) rebuild && (cd _site; python -m http.server)
2015-02-20 17:25:30 +00:00
deploy:
2019-10-28 02:31:01 +00:00
$(TOP) rebuild && $(TOP) deploy
2015-01-05 06:20:06 +00:00
2018-10-31 19:56:30 +00:00
install:
opam update && opam install bibtex2html
port install dart-sass
2018-10-31 19:56:30 +00:00
2015-01-05 06:20:06 +00:00
clean:
cabal v2-clean