sheetjs/Makefile
2013-10-10 02:53:15 -04:00

11 lines
108 B
Makefile

DEPS=$(wildcard bits/*.js)
xlsx.js: $(DEPS)
cat $^ > $@
.PHONY: clean
clean:
rm xlsx.js
test:
npm test