merge(3p/immer): Subtree merge at 'ad3e3556d' as 'third_party/immer'
Change-Id: I9636a41ad44b4218293833fd3e9456d9b07c731b
This commit is contained in:
commit
1213b086a1
311 changed files with 74223 additions and 0 deletions
29
third_party/immer/extra/js/makefile
vendored
Normal file
29
third_party/immer/extra/js/makefile
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
|
||||
BOOST=.
|
||||
EMCXX=em++
|
||||
EMCXXFLAGS=-O3 -std=c++14 --bind \
|
||||
-I ../.. \
|
||||
-I $(BOOST)
|
||||
WASM_BACKEND=0
|
||||
|
||||
ALL= \
|
||||
out/immer.asmjs.js \
|
||||
out/immer.asmjs.html \
|
||||
out/immer.wasm.js \
|
||||
out/immer.wasm.html
|
||||
|
||||
all: $(ALL)
|
||||
|
||||
out/immer.asmjs.js: immer.cpp
|
||||
@mkdir -p $(@D)
|
||||
$(EMCXX) $(EMCXXFLAGS) $< -o $@
|
||||
|
||||
out/immer.wasm.js: immer.cpp
|
||||
@mkdir -p $(@D)
|
||||
EMCC_WASM_BACKEND=$(WASM_BACKEND) $(EMCXX) -s WASM=1 $(EMCXXFLAGS) $< -o $@
|
||||
|
||||
%.html: %.js index.tpl.html
|
||||
sed s/%IMMER_JS%/`basename $<`/ < index.tpl.html > $@
|
||||
|
||||
clean:
|
||||
rm -f $(ALL)
|
||||
Loading…
Add table
Add a link
Reference in a new issue