.PHONY: all clean veryclean test all: npm install . clean: rm -f dist/*.js veryclean: clean rm -rf node_modules/ test: npm test