2018-02-17 18:16:38 +00:00
|
|
|
TOP=stack exec website-exe
|
2015-01-04 22:20:06 -08:00
|
|
|
|
2018-02-17 18:16:38 +00:00
|
|
|
all:
|
|
|
|
stack build
|
2015-01-04 22:20:06 -08:00
|
|
|
|
2018-02-17 18:16:38 +00:00
|
|
|
check:
|
|
|
|
$(TOP) check
|
2016-10-13 22:06:10 -04:00
|
|
|
|
2018-02-17 18:16:38 +00: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
|
|
|
|
2018-02-17 18:16:38 +00:00
|
|
|
deploy:
|
|
|
|
$(TOP) rebuild && $(TOP) deploy && $(TOP) check
|
2015-01-04 22:20:06 -08:00
|
|
|
|
|
|
|
clean:
|
2018-02-17 18:16:38 +00:00
|
|
|
stack clean
|