2016-12-31 08:20:45 +00:00
|
|
|
SHELL=/bin/bash
|
2014-02-17 08:44:22 +00:00
|
|
|
LIB=xlsx
|
2015-04-02 20:32:22 +00:00
|
|
|
FMT=xlsx xlsm xlsb ods xls xml misc full
|
2014-04-23 01:37:08 +00:00
|
|
|
REQS=jszip.js
|
|
|
|
ADDONS=dist/cpexcel.js
|
2017-03-10 01:09:18 +00:00
|
|
|
AUXTARGETS=
|
2016-12-31 08:20:45 +00:00
|
|
|
CMDS=bin/xlsx.njs
|
|
|
|
HTMLLINT=index.html
|
2014-10-10 02:22:38 +00:00
|
|
|
|
|
|
|
ULIB=$(shell echo $(LIB) | tr a-z A-Z)
|
|
|
|
DEPS=$(sort $(wildcard bits/*.js))
|
|
|
|
TARGET=$(LIB).js
|
2016-12-31 08:20:45 +00:00
|
|
|
FLOWTARGET=$(LIB).flow.js
|
2017-02-03 20:50:45 +00:00
|
|
|
FLOWAUX=$(patsubst %.js,%.flow.js,$(AUXTARGETS))
|
|
|
|
AUXSCPTS=xlsxworker1.js xlsxworker2.js xlsxworker.js
|
|
|
|
FLOWTGTS=$(TARGET) $(AUXTARGETS) $(AUXSCPTS)
|
2017-02-10 19:23:01 +00:00
|
|
|
UGLIFYOPTS=--support-ie8
|
2016-12-31 08:20:45 +00:00
|
|
|
|
|
|
|
## Main Targets
|
2014-10-10 02:22:38 +00:00
|
|
|
|
|
|
|
.PHONY: all
|
2017-02-03 20:50:45 +00:00
|
|
|
all: $(TARGET) $(AUXTARGETS) $(AUXSCPTS) ## Build library and auxiliary scripts
|
2014-01-22 04:58:26 +00:00
|
|
|
|
2017-02-03 20:50:45 +00:00
|
|
|
$(FLOWTGTS): %.js : %.flow.js
|
|
|
|
node -e 'process.stdout.write(require("fs").readFileSync("$<","utf8").replace(/^[ \t]*\/\*[:#][^*]*\*\/\s*(\n)?/gm,"").replace(/\/\*[:#][^*]*\*\//gm,""))' > $@
|
|
|
|
|
|
|
|
$(FLOWTARGET): $(DEPS)
|
2014-05-29 22:30:03 +00:00
|
|
|
cat $^ | tr -d '\15\32' > $@
|
2013-03-31 22:56:45 +00:00
|
|
|
|
2014-04-15 09:04:03 +00:00
|
|
|
bits/01_version.js: package.json
|
2014-10-10 02:22:38 +00:00
|
|
|
echo "$(ULIB).version = '"`grep version package.json | awk '{gsub(/[^0-9a-z\.-]/,"",$$2); print $$2}'`"';" > $@
|
2014-01-22 04:58:26 +00:00
|
|
|
|
2017-02-24 10:33:01 +00:00
|
|
|
bits/18_cfb.js: node_modules/cfb/xlscfb.flow.js
|
2015-04-02 20:32:22 +00:00
|
|
|
cp $^ $@
|
|
|
|
|
2013-03-31 22:56:45 +00:00
|
|
|
.PHONY: clean
|
2016-12-31 08:20:45 +00:00
|
|
|
clean: ## Remove targets and build artifacts
|
2017-02-10 19:23:01 +00:00
|
|
|
rm -f $(TARGET) $(FLOWTARGET)
|
2014-06-05 07:06:20 +00:00
|
|
|
|
|
|
|
.PHONY: clean-data
|
|
|
|
clean-data:
|
|
|
|
rm -f *.xlsx *.xlsm *.xlsb *.xls *.xml
|
2013-10-30 19:26:07 +00:00
|
|
|
|
|
|
|
.PHONY: init
|
2016-12-31 08:20:45 +00:00
|
|
|
init: ## Initial setup for development
|
2013-10-30 19:26:07 +00:00
|
|
|
git submodule init
|
|
|
|
git submodule update
|
2014-01-15 13:58:55 +00:00
|
|
|
git submodule foreach git pull origin master
|
|
|
|
git submodule foreach make
|
2016-12-31 08:20:45 +00:00
|
|
|
mkdir -p tmp
|
|
|
|
|
|
|
|
.PHONY: dist
|
|
|
|
dist: dist-deps $(TARGET) bower.json ## Prepare JS files for distribution
|
|
|
|
cp $(TARGET) dist/
|
|
|
|
cp LICENSE dist/
|
2017-02-10 19:23:01 +00:00
|
|
|
uglifyjs $(UGLIFYOPTS) $(TARGET) -o dist/$(LIB).min.js --source-map dist/$(LIB).min.map --preamble "$$(head -n 1 bits/00_header.js)"
|
2016-12-31 08:20:45 +00:00
|
|
|
misc/strip_sourcemap.sh dist/$(LIB).min.js
|
2017-02-10 19:23:01 +00:00
|
|
|
uglifyjs $(UGLIFYOPTS) $(REQS) $(TARGET) -o dist/$(LIB).core.min.js --source-map dist/$(LIB).core.min.map --preamble "$$(head -n 1 bits/00_header.js)"
|
2016-12-31 08:20:45 +00:00
|
|
|
misc/strip_sourcemap.sh dist/$(LIB).core.min.js
|
2017-03-05 00:56:31 +00:00
|
|
|
uglifyjs $(UGLIFYOPTS) $(REQS) $(ADDONS) $(TARGET) $(AUXTARGETS) -o dist/$(LIB).full.min.js --source-map dist/$(LIB).full.min.map --preamble "$$(head -n 1 bits/00_header.js)"
|
2016-12-31 08:20:45 +00:00
|
|
|
misc/strip_sourcemap.sh dist/$(LIB).full.min.js
|
2017-03-05 00:56:31 +00:00
|
|
|
cat <(head -n 1 bits/00_header.js) $(REQS) $(ADDONS) $(TARGET) $(AUXTARGETS) > demos/requirejs/$(LIB).full.js
|
2016-12-31 08:20:45 +00:00
|
|
|
|
|
|
|
.PHONY: dist-deps
|
2017-03-10 01:09:18 +00:00
|
|
|
dist-deps: ## Copy dependencies for distribution
|
2016-12-31 08:20:45 +00:00
|
|
|
cp node_modules/codepage/dist/cpexcel.full.js dist/cpexcel.js
|
|
|
|
cp jszip.js dist/jszip.js
|
|
|
|
|
|
|
|
.PHONY: aux
|
|
|
|
aux: $(AUXTARGETS)
|
|
|
|
|
2017-03-10 17:33:08 +00:00
|
|
|
.PHONY: graph
|
|
|
|
graph: formats.png ## Rebuild format conversion graph
|
|
|
|
formats.png: formats.dot
|
|
|
|
circo -Tpng -o$@ $<
|
|
|
|
|
2017-03-10 01:09:18 +00:00
|
|
|
.PHONY: nexe
|
2017-03-10 17:33:08 +00:00
|
|
|
nexe: xlsx.exe ## Build nexe standalone executable
|
2013-10-30 19:26:07 +00:00
|
|
|
|
2017-03-10 17:33:08 +00:00
|
|
|
xlsx.exe: bin/xlsx.njs xlsx.js
|
2017-03-10 08:39:51 +00:00
|
|
|
nexe -i $< -o $@ --flags
|
2013-10-30 19:26:07 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
## Testing
|
|
|
|
|
2013-10-30 19:26:07 +00:00
|
|
|
.PHONY: test mocha
|
2016-12-31 08:20:45 +00:00
|
|
|
test mocha: test.js ## Run test suite
|
2014-07-28 15:57:28 +00:00
|
|
|
mocha -R spec -t 20000
|
2013-10-30 19:26:07 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
#* To run tests for one format, make test_<fmt>
|
2014-02-13 06:22:42 +00:00
|
|
|
TESTFMT=$(patsubst %,test_%,$(FMT))
|
|
|
|
.PHONY: $(TESTFMT)
|
|
|
|
$(TESTFMT): test_%:
|
|
|
|
FMTS=$* make test
|
|
|
|
|
2017-03-14 17:24:40 +00:00
|
|
|
.PHONY: travis
|
|
|
|
travis: ## Run test suite with minimal output
|
|
|
|
mocha -R dot -t 30000
|
|
|
|
|
2017-03-10 01:09:18 +00:00
|
|
|
.PHONY: demos
|
|
|
|
demos: demo-browserify demo-webpack demo-requirejs
|
|
|
|
|
2017-03-05 00:56:31 +00:00
|
|
|
.PHONY: demo-browserify
|
|
|
|
demo-browserify: ## Run browserify demo build
|
|
|
|
make -C demos/browserify
|
|
|
|
@echo "start a local server and go to demos/browserify/browserify.html"
|
|
|
|
|
|
|
|
.PHONY: demo-webpack
|
|
|
|
demo-webpack: ## Run webpack demo build
|
|
|
|
make -C demos/webpack
|
|
|
|
@echo "start a local server and go to demos/webpack/webpack.html"
|
2013-05-18 00:12:10 +00:00
|
|
|
|
2017-03-10 01:09:18 +00:00
|
|
|
.PHONY: demo-requirejs
|
|
|
|
demo-requirejs: ## Run requirejs demo build
|
|
|
|
make -C demos/requirejs
|
|
|
|
@echo "start a local server and go to demos/requirejs/requirejs.html"
|
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
## Code Checking
|
|
|
|
|
2013-10-30 19:26:07 +00:00
|
|
|
.PHONY: lint
|
2017-02-03 20:50:45 +00:00
|
|
|
lint: $(TARGET) $(AUXTARGETS) ## Run jshint and jscs checks
|
2016-12-31 08:20:45 +00:00
|
|
|
@jshint --show-non-errors $(TARGET) $(AUXTARGETS)
|
|
|
|
@jshint --show-non-errors $(CMDS)
|
|
|
|
@jshint --show-non-errors package.json bower.json
|
|
|
|
@jshint --show-non-errors --extract=always $(HTMLLINT)
|
|
|
|
@jscs $(TARGET) $(AUXTARGETS)
|
2014-06-05 07:06:20 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
.PHONY: flow
|
|
|
|
flow: lint ## Run flow checker
|
|
|
|
@flow check --all --show-all-errors
|
2014-01-22 04:58:26 +00:00
|
|
|
|
2017-02-10 19:23:01 +00:00
|
|
|
.PHONY: cov
|
2016-12-31 08:20:45 +00:00
|
|
|
cov: misc/coverage.html ## Run coverage test
|
2014-01-22 04:58:26 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
#* To run coverage tests for one format, make cov_<fmt>
|
2014-05-16 00:33:34 +00:00
|
|
|
COVFMT=$(patsubst %,cov_%,$(FMT))
|
|
|
|
.PHONY: $(COVFMT)
|
|
|
|
$(COVFMT): cov_%:
|
|
|
|
FMTS=$* make cov
|
|
|
|
|
2014-02-17 08:44:22 +00:00
|
|
|
misc/coverage.html: $(TARGET) test.js
|
2016-12-31 08:20:45 +00:00
|
|
|
mocha --require blanket -R html-cov -t 20000 > $@
|
2014-01-22 04:58:26 +00:00
|
|
|
|
2017-02-10 19:23:01 +00:00
|
|
|
.PHONY: coveralls
|
2016-12-31 08:20:45 +00:00
|
|
|
coveralls: ## Coverage Test + Send to coveralls.io
|
|
|
|
mocha --require blanket --reporter mocha-lcov-reporter -t 20000 | node ./node_modules/coveralls/bin/coveralls.js
|
2014-04-23 01:37:08 +00:00
|
|
|
|
2017-03-14 08:19:51 +00:00
|
|
|
.PHONY: readme
|
|
|
|
readme: ## Update README Table of Contents
|
|
|
|
markdown-toc -i README.md
|
2014-10-10 02:22:38 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
.PHONY: help
|
|
|
|
help:
|
|
|
|
@grep -hE '(^[a-zA-Z_-][ a-zA-Z_-]*:.*?|^#[#*])' $(MAKEFILE_LIST) | bash misc/help.sh
|
2014-10-10 02:22:38 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
#* To show a spinner, append "-spin" to any target e.g. cov-spin
|
|
|
|
%-spin:
|
|
|
|
@make $* & bash misc/spin.sh $$!
|