elm-mdl/Makefile
2016-03-17 13:31:43 +01:00

17 lines
321 B
Makefile

PAGES=../elm-mdl-gh-pages
elm.js:
elm-make examples/Demo.elm --output elm.js
pages :
elm-make examples/Demo.elm --output $(PAGES)/elm.js
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
clean :
rm -f elm.js index.html
distclean : clean
rm -rf elm-stuff
.PHONY : pages elm.js clean distclean