- sector checked before reading (h/t @e12009) See https://github.com/SheetJS/js-xlsx/issues/569 - flow type checking
		
			
				
	
	
		
			118 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SHELL=/bin/bash
 | 
						|
LIB=cfb
 | 
						|
FMT=xls doc ppt misc full
 | 
						|
REQS=
 | 
						|
ADDONS=
 | 
						|
AUXTARGETS=xlscfb.js
 | 
						|
CMDS=bin/cfb.njs
 | 
						|
HTMLLINT=index.html
 | 
						|
 | 
						|
ULIB=$(shell echo $(LIB) | tr a-z A-Z)
 | 
						|
DEPS=$(sort $(wildcard bits/*.js))
 | 
						|
TARGET=$(LIB).js
 | 
						|
FLOWTARGET=$(LIB).flow.js
 | 
						|
FLOWTGTS=$(TARGET) $(AUXTARGETS)
 | 
						|
 | 
						|
## Main Targets
 | 
						|
 | 
						|
.PHONY: all
 | 
						|
all: $(TARGET) $(AUXTARGETS) ## Build library and auxiliary scripts
 | 
						|
 | 
						|
$(FLOWTGTS): %.js : %.flow.js
 | 
						|
	node -e 'process.stdout.write(require("fs").readFileSync("$<","utf8").replace(/^[ \t]*\/\*[:#][^*]*\*\/\s*(\n)?/gm,"").replace(/\/\*[:#][^*]*\*\//gm,""))' > $@
 | 
						|
 | 
						|
$(FLOWTARGET): $(DEPS)
 | 
						|
	cat $^ | tr -d '\15\32' > $@
 | 
						|
 | 
						|
bits/31_version.js: package.json
 | 
						|
	echo "exports.version = '"`grep version package.json | awk '{gsub(/[^0-9a-z\.-]/,"",$$2); print $$2}'`"';" > $@
 | 
						|
 | 
						|
.PHONY: clean
 | 
						|
clean: ## Remove targets and build artifacts
 | 
						|
	rm -f $(TARGET) $(FLOWTARGET)
 | 
						|
 | 
						|
.PHONY: clean-data
 | 
						|
clean-data:
 | 
						|
	rm -fr ./test_files/ ./test_files_pres/
 | 
						|
 | 
						|
.PHONY: init
 | 
						|
init: ## Initial setup for development
 | 
						|
	if [ ! -e test_files ]; then git clone https://github.com/SheetJS/test_files; fi
 | 
						|
	cd test_files; git pull; make
 | 
						|
	if [ ! -e test_files_pres ]; then git clone https://github.com/SheetJS/test_files_pres; fi
 | 
						|
	cd test_files_pres; git pull
 | 
						|
 | 
						|
.PHONY: dist
 | 
						|
dist: dist-deps $(TARGET) ## Prepare JS files for distribution
 | 
						|
	cp $(TARGET) dist/
 | 
						|
	cp LICENSE dist/
 | 
						|
	uglifyjs $(TARGET) -o dist/$(LIB).min.js --source-map dist/$(LIB).min.map --preamble "$$(head -n 1 bits/00_header.js)"
 | 
						|
	misc/strip_sourcemap.sh dist/$(LIB).min.js
 | 
						|
 | 
						|
.PHONY: dist-deps
 | 
						|
dist-deps: xlscfb.js ## Copy dependencies for distribution
 | 
						|
	cp xlscfb.js dist/xlscfb.js
 | 
						|
 | 
						|
.PHONY: aux
 | 
						|
aux: $(AUXTARGETS)
 | 
						|
 | 
						|
.PHONY: xls
 | 
						|
xls: xlscfb.js
 | 
						|
 | 
						|
XLSDEPS=misc/suppress_export.js $(filter-out bits/08_blob.js,$(DEPS))
 | 
						|
xlscfb.flow.js: $(XLSDEPS) ## Build support library
 | 
						|
	cat $^ | tr -d '\15\32' > $@
 | 
						|
 | 
						|
 | 
						|
## Testing
 | 
						|
 | 
						|
.PHONY: test mocha
 | 
						|
test mocha: test.js $(TARGET) ## Run test suite
 | 
						|
	mocha -R spec -t 20000
 | 
						|
 | 
						|
#*                      To run tests for one format, make test_<fmt>
 | 
						|
TESTFMT=$(patsubst %,test_%,$(FMT))
 | 
						|
.PHONY: $(TESTFMT)
 | 
						|
$(TESTFMT): test_%:
 | 
						|
	FMTS=$* make test
 | 
						|
 | 
						|
 | 
						|
## Code Checking
 | 
						|
 | 
						|
.PHONY: lint
 | 
						|
lint: $(TARGET) $(AUXTARGETS) ## Run jshint and jscs checks
 | 
						|
	@jshint --show-non-errors $(TARGET) $(AUXTARGETS)
 | 
						|
	@jshint --show-non-errors $(CMDS)
 | 
						|
	@jshint --show-non-errors package.json
 | 
						|
	@jshint --show-non-errors --extract=always $(HTMLLINT)
 | 
						|
	@jscs $(TARGET) $(AUXTARGETS)
 | 
						|
 | 
						|
.PHONY: flow
 | 
						|
flow: lint ## Run flow checker
 | 
						|
	@flow check --all --show-all-errors
 | 
						|
 | 
						|
.PHONY: cov
 | 
						|
cov: misc/coverage.html ## Run coverage test
 | 
						|
 | 
						|
#*                      To run coverage tests for one format, make cov_<fmt>
 | 
						|
COVFMT=$(patsubst %,cov_%,$(FMT))
 | 
						|
.PHONY: $(COVFMT)
 | 
						|
$(COVFMT): cov_%:
 | 
						|
	FMTS=$* make cov
 | 
						|
 | 
						|
misc/coverage.html: $(TARGET) test.js
 | 
						|
	mocha --require blanket -R html-cov -t 20000 > $@
 | 
						|
 | 
						|
.PHONY: coveralls
 | 
						|
coveralls: ## Coverage Test + Send to coveralls.io
 | 
						|
	mocha --require blanket --reporter mocha-lcov-reporter -t 20000 | node ./node_modules/coveralls/bin/coveralls.js
 | 
						|
 | 
						|
 | 
						|
.PHONY: help
 | 
						|
help:
 | 
						|
	@grep -hE '(^[a-zA-Z_-][ a-zA-Z_-]*:.*?|^#[#*])' $(MAKEFILE_LIST) | bash misc/help.sh
 | 
						|
 | 
						|
#* To show a spinner, append "-spin" to any target e.g. cov-spin
 | 
						|
%-spin:
 | 
						|
	@make $* & bash misc/spin.sh $$!
 |