X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=007468ed43511a82170b7533939a1ee23d0e80de;hb=8f5b370893166e36abb0e87847fb4405d6856840;hp=b71596c6ec99016f5b17f08f05b236fdcda77350;hpb=18764f2761fa33fdafe99f1007ae4758a5bf987b;p=dygraphs.git diff --git a/Makefile b/Makefile index b71596c..007468e 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,30 @@ # # Dean Wampler March 22, 2010 -all: generate-combined +all: test generate-combined generate-documentation + +clean: + @echo cleaning... + @cp .dygraph-combined-clean.js dygraph-combined.js + rm docs/options.html generate-combined: @echo Generating dygraph-combined.js - @generate-combined.sh + @./generate-combined.sh + +generate-documentation: + @echo Generating docs/options.html + @./generate-documentation.py > docs/options.html + @chmod a+r docs/options.html + +gwt: generate-gwt + +generate-gwt: + @echo Generating GWT JAR file + @./generate-jar.sh + +test: + @./test.sh + +lint: + @./lint.sh