elm-mdl/Makefile

18 lines
321 B
Makefile
Raw Normal View History

2016-03-15 16:57:39 +00:00
PAGES=../elm-mdl-gh-pages
2016-03-17 12:31:43 +00:00
elm.js:
elm-make examples/Demo.elm --output elm.js
2016-03-15 16:57:39 +00:00
pages :
elm-make examples/Demo.elm --output $(PAGES)/elm.js
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
2016-03-17 12:31:43 +00:00
clean :
rm -f elm.js index.html
distclean : clean
rm -rf elm-stuff
.PHONY : pages elm.js clean distclean