blob: 8945872410e45ef62f46942fc8da5ebdfad196bf [file] [log] [blame]
SHELL := /bin/bash
test:
@./test/run.js
build: npm test
npm:
npm install .
clean:
rm test/tmp/*
.PHONY: test clean build