diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fe890db --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +PAGES=../elm-mdl-gh-pages + +pages : + elm-make examples/Demo.elm --output $(PAGES)/elm.js + (cd $(PAGES); git commit -am "Update."; git push origin gh-pages) + +.phony : pages