Files
node_app/node_modules/formidable/Makefile
2012-10-26 18:04:20 -04:00

15 lines
129 B
Makefile

SHELL := /bin/bash
test:
@./test/run.js
build: npm test
npm:
npm install .
clean:
rm test/tmp/*
.PHONY: test clean build