forked from sheetjs/sheetjs
11 lines
163 B
Makefile
11 lines
163 B
Makefile
TOOL=browserify
|
|
.PHONY: all
|
|
all: $(TOOL).min.js
|
|
|
|
$(TOOL).min.js: $(TOOL).js
|
|
uglifyjs $< > $@
|
|
|
|
.PHONY: $(TOOL).js
|
|
$(TOOL).js:
|
|
browserify -r './main.js:xlsx' > $@
|