https://github.com/binaryjs/binaryjs
Raw File
Tip revision: 79f51d6431e32226ab16e1b17bf7048e9a7e8cd9 authored by dominicklim on 23 July 2015, 19:30:10 UTC
Merge pull request #95 from soleilnoirmedia/master
Tip revision: 79f51d6
Makefile
default: compress

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