aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2017-03-14 18:58:39 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2017-03-14 18:58:39 +0800
commitfba189073130bad49061f451faef69533961c635 (patch)
treeeca9e5fe7ab48c6d86ac7ec518bd89c4be66e1c7
parent5d90f54f3da33c260a70f70ff6fc84ba599da078 (diff)
downloaddexon-bls-fba189073130bad49061f451faef69533961c635.tar
dexon-bls-fba189073130bad49061f451faef69533961c635.tar.gz
dexon-bls-fba189073130bad49061f451faef69533961c635.tar.bz2
dexon-bls-fba189073130bad49061f451faef69533961c635.tar.lz
dexon-bls-fba189073130bad49061f451faef69533961c635.tar.xz
dexon-bls-fba189073130bad49061f451faef69533961c635.tar.zst
dexon-bls-fba189073130bad49061f451faef69533961c635.zip
run_go after make clean
-rw-r--r--.travis.yml2
-rw-r--r--Makefile1
2 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 1e67093..a1a46c3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,5 +13,7 @@ script:
- git clone https://github.com/herumi/bls.git
- cd bls
- make test DEBUG=1
+ - make clean
+ - make
- make run_go
diff --git a/Makefile b/Makefile
index b650aa4..7bc3616 100644
--- a/Makefile
+++ b/Makefile
@@ -68,6 +68,7 @@ run_go: go/main.go $(BLS_LIB) $(BLS_IF_LIB)
clean:
$(RM) $(BLS_LIB) $(OBJ_DIR)/* $(EXE_DIR)/*.exe $(GEN_EXE) $(ASM_SRC) $(ASM_OBJ) $(LIB_OBJ) $(LLVM_SRC) $(BLS_IF_LIB)
+ $(MAKE) -C ../mcl clean
ALL_SRC=$(SRC_SRC) $(TEST_SRC) $(SAMPLE_SRC)
DEPEND_FILE=$(addprefix $(OBJ_DIR)/, $(ALL_SRC:.cpp=.d))