forked from sheetjs/sheetjs
11 lines
179 B
Makefile
11 lines
179 B
Makefile
|
TOOL=webpack
|
||
|
.PHONY: all
|
||
|
all: $(TOOL).min.js
|
||
|
|
||
|
$(TOOL).min.js: $(TOOL).js
|
||
|
uglifyjs $< > $@
|
||
|
|
||
|
.PHONY: $(TOOL).js
|
||
|
$(TOOL).js:
|
||
|
webpack main.js --output-filename $@ --display-modules
|