forked from sheetjs/sheetjs
SheetJS
8bd3c624ac
run `make` to combine the files. Files are named in numerical order based on the relative placement
9 lines
92 B
Makefile
9 lines
92 B
Makefile
DEPS=$(wildcard bits/*.js)
|
|
|
|
xlsx.js: $(DEPS)
|
|
cat $^ > $@
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm xlsx.js
|