Files
alex_app1/node_modules/formidable/Makefile

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