From 8f1d217f654ee9e8e4cf769e0140e3c511a9fdaf Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Tue, 10 Oct 2017 15:56:32 +0900 Subject: [js] add BlsSecretKey --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') 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)) -- cgit v1.2.3