justin-site/Makefile

21 lines
294 B
Makefile
Raw Normal View History

TOP=cabal v2-run justin-site
2015-01-04 22:20:06 -08:00
all:
cabal v2-build
2015-01-04 22:20:06 -08:00
check:
$(TOP) check
2016-10-13 22:06:10 -04:00
preview:
2018-07-29 23:00:53 -04:00
$(TOP) rebuild && (cd _site; python -m http.server)
2015-02-20 18:25:30 +01:00
deploy:
2019-10-27 21:31:01 -05:00
$(TOP) rebuild && $(TOP) deploy
2015-01-04 22:20:06 -08:00
2018-10-31 14:56:30 -05:00
install:
opam update && opam install bibtex2html
2022-03-17 22:20:23 -04:00
gem update --system && gem install sass
2018-10-31 14:56:30 -05:00
2015-01-04 22:20:06 -08:00
clean:
cabal v2-clean