aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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))