X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=Makefile;h=007468ed43511a82170b7533939a1ee23d0e80de;hb=21ebe38bb1eeae3a7fd73335a411bfd81c66d985;hp=2614ea3c34e02751d7a7226c198d0b645e98cd51;hpb=71ac4733fec0ca3adab2ae5440db13e1cd2231f1;p=dygraphs.git diff --git a/Makefile b/Makefile index 2614ea3..007468e 100644 --- a/Makefile +++ b/Makefile @@ -4,14 +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-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