twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

Makefile (218B)


      1 REPORTER = dot
      2 
      3 build: blob.js
      4 
      5 blob.js:
      6 	@./node_modules/.bin/browserify --standalone blob index.js > blob.js
      7 
      8 test:
      9 	@./node_modules/.bin/zuul -- test/index.js
     10 
     11 clean:
     12 	rm blob.js
     13 
     14 .PHONY: test blob.js