aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2017-04-14 08:54:12 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2017-04-14 08:54:12 +0800
commit737475faeaca06f65f1a95db810ba2aa6f83e422 (patch)
tree7b273c688ee3a21ddf2cd8ae5511fba6910b7917 /Makefile
parentfb2abdeec5ce179e70c198ffd500272ba0c33e13 (diff)
downloaddexon-bls-737475faeaca06f65f1a95db810ba2aa6f83e422.tar
dexon-bls-737475faeaca06f65f1a95db810ba2aa6f83e422.tar.gz
dexon-bls-737475faeaca06f65f1a95db810ba2aa6f83e422.tar.bz2
dexon-bls-737475faeaca06f65f1a95db810ba2aa6f83e422.tar.lz
dexon-bls-737475faeaca06f65f1a95db810ba2aa6f83e422.tar.xz
dexon-bls-737475faeaca06f65f1a95db810ba2aa6f83e422.tar.zst
dexon-bls-737475faeaca06f65f1a95db810ba2aa6f83e422.zip
rename go/blscgo to go/bls
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d8bf027..1e2e216 100644
--- a/Makefile
+++ b/Makefile
@@ -65,8 +65,8 @@ test: $(TEST_EXE)
@sh -ec 'for i in $(TEST_EXE); do $$i|grep "ctest:name"; done' > result.txt
@grep -v "ng=0, exception=0" result.txt; if [ $$? -eq 1 ]; then echo "all unit tests succeed"; else exit 1; fi
-run_go: go/main_test.go $(BLS_LIB) $(BLS_IF_LIB)
- cd go && go test -tags $(GO_TAG) -v .
+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 .
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)