xiejun
2023-08-23 205056bc17023dd44e6d262cfe78b6e146ee2f20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
LIB=xlsx
FMT=xlsx xlsm xlsb ods xls xml misc full
REQS=jszip.js
ADDONS=dist/cpexcel.js
AUXTARGETS=ods.js
 
ULIB=$(shell echo $(LIB) | tr a-z A-Z)
DEPS=$(sort $(wildcard bits/*.js))
TARGET=$(LIB).js
 
.PHONY: all
all: $(TARGET) $(AUXTARGETS)
 
$(TARGET): $(DEPS)
    cat $^ | tr -d '\15\32' > $@
 
bits/01_version.js: package.json
    echo "$(ULIB).version = '"`grep version package.json | awk '{gsub(/[^0-9a-z\.-]/,"",$$2); print $$2}'`"';" > $@
 
bits/18_cfb.js: node_modules/cfb/dist/xlscfb.js
    cp $^ $@
 
.PHONY: clean
clean:
    rm -f $(TARGET)
 
.PHONY: clean-data
clean-data:
    rm -f *.xlsx *.xlsm *.xlsb *.xls *.xml
 
.PHONY: init
init:
    git submodule init
    git submodule update
    git submodule foreach git pull origin master
    git submodule foreach make
 
 
.PHONY: test mocha
test mocha: test.js
    mkdir -p tmp
    mocha -R spec -t 20000
 
.PHONY: prof
prof:
    cat misc/prof.js test.js > prof.js
    node --prof prof.js
 
TESTFMT=$(patsubst %,test_%,$(FMT))
.PHONY: $(TESTFMT)
$(TESTFMT): test_%:
    FMTS=$* make test
 
 
.PHONY: lint
lint: $(TARGET)
    jshint --show-non-errors $(TARGET) $(AUXTARGETS)
    jshint --show-non-errors package.json bower.json
    jscs $(TARGET) $(AUXTARGETS)
 
.PHONY: test-osx
test-osx:
    node tests/write.js
    open -a Numbers sheetjs.xlsx
    open -a "Microsoft Excel" sheetjs.xlsx
 
.PHONY: cov cov-spin
cov: misc/coverage.html
cov-spin:
    make cov & bash misc/spin.sh $$!
 
COVFMT=$(patsubst %,cov_%,$(FMT))
.PHONY: $(COVFMT)
$(COVFMT): cov_%:
    FMTS=$* make cov
 
misc/coverage.html: $(TARGET) test.js
    mocha --require blanket -R html-cov > $@
 
.PHONY: coveralls coveralls-spin
coveralls:
    mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js
 
coveralls-spin:
    make coveralls & bash misc/spin.sh $$!
 
bower.json: misc/_bower.json package.json
    cat $< | sed 's/_VERSION_/'`grep version package.json | awk '{gsub(/[^0-9a-z\.-]/,"",$$2); print $$2}'`'/' > $@
 
.PHONY: dist
dist: dist-deps $(TARGET) bower.json
    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
    uglifyjs $(REQS) $(TARGET) -o dist/$(LIB).core.min.js --source-map dist/$(LIB).core.min.map --preamble "$$(head -n 1 bits/00_header.js)"
    misc/strip_sourcemap.sh dist/$(LIB).core.min.js
    uglifyjs $(REQS) $(ADDONS) $(TARGET) -o dist/$(LIB).full.min.js --source-map dist/$(LIB).full.min.map --preamble "$$(head -n 1 bits/00_header.js)"
    misc/strip_sourcemap.sh dist/$(LIB).full.min.js
 
.PHONY: aux
aux: $(AUXTARGETS)
 
.PHONY: ods
ods: ods.js
 
ODSDEPS=$(sort $(wildcard odsbits/*.js))
ods.js: $(ODSDEPS)
    cat $(ODSDEPS) | tr -d '\15\32' > $@
    cp ods.js dist/ods.js
 
.PHONY: dist-deps
dist-deps: ods.js
    cp node_modules/codepage/dist/cpexcel.full.js dist/cpexcel.js
    cp jszip.js dist/jszip.js
    cp ods.js dist/ods.js