diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2017-04-23 21:01:50 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2017-04-23 21:01:50 +0800 |
commit | c7b481bb530f2632c05e58b779bf2c6ca0e4a8a2 (patch) | |
tree | 9d87317073648a9cc2c45d5bb53ea91fc863c993 /Makefile | |
parent | 947f42a7c84718e5a0434f69f1faff4adc01227f (diff) | |
download | dexon-bls-c7b481bb530f2632c05e58b779bf2c6ca0e4a8a2.tar dexon-bls-c7b481bb530f2632c05e58b779bf2c6ca0e4a8a2.tar.gz dexon-bls-c7b481bb530f2632c05e58b779bf2c6ca0e4a8a2.tar.bz2 dexon-bls-c7b481bb530f2632c05e58b779bf2c6ca0e4a8a2.tar.lz dexon-bls-c7b481bb530f2632c05e58b779bf2c6ca0e4a8a2.tar.xz dexon-bls-c7b481bb530f2632c05e58b779bf2c6ca0e4a8a2.tar.zst dexon-bls-c7b481bb530f2632c05e58b779bf2c6ca0e4a8a2.zip |
add GetCurveOrder/GetFieldOrder to Go
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -66,7 +66,8 @@ test: $(TEST_EXE) @grep -v "ng=0, exception=0" result.txt; if [ $$? -eq 1 ]; then echo "all unit tests succeed"; else exit 1; fi run_go: go/bls/bls.go go/bls/bls_test.go $(BLS_LIB) $(BLS_IF_LIB) - cd go/bls && go test -tags $(GO_TAG) -v . + cd go/bls && go test -tags $(GO_TAG) . +# cd go/bls && go test -tags $(GO_TAG) -v . clean: $(RM) $(BLS_LIB) $(OBJ_DIR)/*.d $(OBJ_DIR)/*.o $(EXE_DIR)/*.exe $(GEN_EXE) $(ASM_SRC) $(ASM_OBJ) $(LIB_OBJ) $(LLVM_SRC) $(BLS_IF_LIB) |