sheetjs/Makefile
SheetJS 8bd3c624ac split xlsx.js into multiple files
run `make` to combine the files.

Files are named in numerical order based on the relative placement
2013-10-10 02:44:18 -04:00

9 lines
92 B
Makefile

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