aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2017-10-10 14:56:32 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2017-10-10 14:56:32 +0800
commit8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf (patch)
tree62eca2834317bcbb889534fbaf7460ae662dfce6 /Makefile
parentb0328ca6ad728dceb37f3244d1301899fba2ac0b (diff)
downloaddexon-bls-8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf.tar
dexon-bls-8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf.tar.gz
dexon-bls-8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf.tar.bz2
dexon-bls-8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf.tar.lz
dexon-bls-8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf.tar.xz
dexon-bls-8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf.tar.zst
dexon-bls-8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf.zip
[js] add BlsSecretKey
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 76d65d4..9889889 100644
--- a/Makefile
+++ b/Makefile
@@ -87,11 +87,12 @@ test_go: go/bls/bls.go go/bls/bls_test.go $(BLS384_SLIB)
EXPORTED_TXT=ffi/js/exported-bls.txt
EXPORTED_JS=docs/demo/exported-bls.js
+EXPORT_OPT=-re ffi/js/bls-re.txt
$(EXPORTED_TXT): ./include/bls/bls.h ../mcl/include/mcl/bn.h
- python ../mcl/ffi/js/export-functions.py $^ > $@
+ python ../mcl/ffi/js/export-functions.py $(EXPORT_OPT) $^ > $@
$(EXPORTED_JS): ./include/bls/bls.h ../mcl/include/mcl/bn.h
- python ../mcl/ffi/js/export-functions.py -js bls $^ > $@
+ python ../mcl/ffi/js/export-functions.py $(EXPORT_OPT) -js bls $^ > $@
EXPORTED_BLS=$(shell cat $(EXPORTED_TXT))