forked from sheetjs/sheetjs
9 lines
92 B
Makefile
9 lines
92 B
Makefile
|
DEPS=$(wildcard bits/*.js)
|
||
|
|
||
|
xlsx.js: $(DEPS)
|
||
|
cat $^ > $@
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm xlsx.js
|