2016-03-15 17:57:39 +01:00
|
|
|
PAGES=../elm-mdl-gh-pages
|
|
|
|
|
2016-04-06 15:28:37 +02:00
|
|
|
comp:
|
|
|
|
elm-make examples/Component.elm --warn --output elm.js
|
|
|
|
|
2016-04-06 20:16:54 +02:00
|
|
|
demo:
|
2016-03-21 06:02:39 +01:00
|
|
|
elm-make examples/Demo.elm --warn --output elm.js
|
2016-03-17 13:31:43 +01:00
|
|
|
|
2016-03-21 12:24:00 +01:00
|
|
|
wip-pages :
|
|
|
|
elm-make examples/Demo.elm --output $(PAGES)/wip.js
|
|
|
|
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
|
|
|
|
|
2016-03-15 17:57:39 +01:00
|
|
|
pages :
|
|
|
|
elm-make examples/Demo.elm --output $(PAGES)/elm.js
|
|
|
|
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
|
|
|
|
|
2016-03-30 09:19:18 +02:00
|
|
|
cleanish :
|
2016-03-17 13:31:43 +01:00
|
|
|
rm -f elm.js index.html
|
|
|
|
|
2016-03-30 09:19:18 +02:00
|
|
|
clean :
|
2016-03-19 23:47:21 +01:00
|
|
|
rm -rf elm-stuff/build-artifacts
|
|
|
|
|
2016-03-17 13:31:43 +01:00
|
|
|
distclean : clean
|
|
|
|
rm -rf elm-stuff
|
|
|
|
|
|
|
|
|
2016-03-30 09:19:18 +02:00
|
|
|
.PHONY : pages elm.js clean cleanish distclean
|