https://github.com/binaryjs/binaryjs
Raw File
Tip revision: 89a21e8a2842062b86944f49a673bd7390165b1d authored by ericz on 27 July 2012, 02:06:56 UTC
update binarypack version
Tip revision: 89a21e8
Makefile
default: compress

compress:
	@node bin/build.js;
  
test:
	@mocha \
		-t 2000 \
		$(TESTFLAGS) \
		$(TESTS)
    
.PHONY: test
back to top