forked from hackape/talib.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
88 lines (68 loc) · 3.17 KB
/
Makefile
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
TA_SRC_DIR = src/ta-lib
RELEASE_DIR = .temp/lib
GET_EXPORTED_FUNCTIONS_SCRIPT = "console.log(['\'_malloc\'','\'_free\''].concat(require('./src/api.json').map(a=>'\'_TA_'+a.name+'\'')).join(','))"
EXPORTED_FUNCTIONS = [$$(node -e $(GET_EXPORTED_FUNCTIONS_SCRIPT))]
NODE_BIN = ./node_modules/.bin
define UMD_HEAD
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = global || self, factory(global.TA_LIB = {}));
})(this, function (exports) {
endef
export UMD_HEAD
emcc-template = $(TA_SRC_DIR)/src/ta_func/*.c $(TA_SRC_DIR)/src/ta_common/ta_global.c \
-I $(TA_SRC_DIR)/include/ -I $(TA_SRC_DIR)/src/ta_common/ \
$(1) -s 'EXPORT_NAME="__INIT__"' -s MAIN_MODULE=2 \
-s "EXPORTED_RUNTIME_METHODS=['ccall']" -s "EXPORTED_FUNCTIONS=$(EXPORTED_FUNCTIONS)" -Oz -o $(RELEASE_DIR)/$(2)
all: build docs
# The trick is to emit ES6 module, then remove last line
# Also insert a "use strict" directive to the first line
.temp/lib/talib.js:
@echo "emcc: compiling $@"
@d=$$(date +%s); \
mkdir -p $(RELEASE_DIR); \
emcc $(call emcc-template,-s SINGLE_FILE=0 -s WASM=1 -s MODULARIZE=1 -s EXPORT_ES6=1 -s USE_ES6_IMPORT_META=0,talib.js); \
echo "emcc: compile $@ took $$(($$(date +%s)-d)) seconds"
@mv $(RELEASE_DIR)/talib.js $(RELEASE_DIR)/talib.bak.js
@sed -e '1s/^/"use strict";/' -e '$$ d' $(RELEASE_DIR)/talib.bak.js | $(NODE_BIN)/prettier --no-config --parser babel > $(RELEASE_DIR)/talib.js
.temp/lib/talib.bundle.js:
@echo "emcc: compiling $@"
@d=$$(date +%s); \
mkdir -p $(RELEASE_DIR); \
emcc $(call emcc-template,-s SINGLE_FILE=1 -s WASM=1 -s MODULARIZE=1 -s EXPORT_ES6=1 -s USE_ES6_IMPORT_META=0,talib.bundle.js) && sed -e '1s/^/"use strict";/' -e '$$ d' -i '' $(RELEASE_DIR)/talib.bundle.js; \
echo "emcc: compile $@ took $$(($$(date +%s)-d)) seconds"
src/index.ts:
@echo 're-running "scripts/gencode.js" to generate "src/index.ts"'
@node scripts/gencode.js
.temp/esm/index.js: src/index.ts
@mkdir -p .temp/esm/
@tsc src/index.ts --module es2015 --removeComments --target ES6 --outDir .temp/esm
.temp/cjs/index.js: src/index.ts
@mkdir -p .temp/cjs/
@tsc src/index.ts --module commonjs --removeComments --target ES6 --outDir .temp/cjs
# final outputs
mkdir-lib:
@mkdir -p lib/
lib/index.esm.js: mkdir-lib .temp/lib/talib.js .temp/esm/index.js
@cat .temp/lib/talib.js .temp/esm/index.js > lib/index.esm.js
lib/index.cjs.js: mkdir-lib .temp/lib/talib.js .temp/cjs/index.js
@cat .temp/lib/talib.js .temp/cjs/index.js > lib/index.cjs.js
lib/index.umd.js: mkdir-lib lib/index.cjs.js
@mkdir -p lib
@echo "$$UMD_HEAD" | cat - lib/index.cjs.js > lib/index.umd.js
@echo "\n})" >> lib/index.umd.js
lib/index.d.ts: mkdir-lib src/index.ts
@tsc src/index.ts --module es2015 --target ES6 --declaration --emitDeclarationOnly --outDir lib
lib/talib.wasm: mkdir-lib .temp/lib/talib.js
@cp .temp/lib/talib.wasm lib/talib.wasm
build: lib/index.esm.js lib/index.cjs.js lib/index.umd.js lib/talib.wasm lib/index.d.ts
docs:
$(NODE_BIN)/typedoc
touch docs/.nojekyll
clean:
rm -rf .temp
rm -rf lib
rm -rf docs
rm src/index.ts
.PHONY: all mkdir-lib build docs clean