aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2017-03-08 15:44:11 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2017-03-08 15:44:11 +0800
commitef097d967db48dc7529ca63c21fa788887129793 (patch)
tree482d784fb81c7294cb2538ea5c7b6516744236b8
parentd4fd1e5e54820b188e68530a3f7c2254dd82367c (diff)
downloadtangerine-mcl-ef097d967db48dc7529ca63c21fa788887129793.tar.gz
tangerine-mcl-ef097d967db48dc7529ca63c21fa788887129793.tar.zst
tangerine-mcl-ef097d967db48dc7529ca63c21fa788887129793.zip
debug makefile
-rw-r--r--.travis.yml2
-rw-r--r--Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index c874799..3e49819 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,5 +10,5 @@ script:
- git clone https://github.com/herumi/xbyak.git
- git clone https://github.com/herumi/mcl.git
- cd mcl
- - make test
+ - make test -n
diff --git a/Makefile b/Makefile
index bf25d27..31592e7 100644
--- a/Makefile
+++ b/Makefile
@@ -130,7 +130,7 @@ $(LOW_ASM_OBJ): $(LOW_ASM_SRC)
VPATH=test sample src
-.SUFFIXES: .cpp .d .exe .c
+.SUFFIXES: .cpp .d .exe .c .o
$(OBJ_DIR)/%.o: %.cpp
$(PRE)$(CXX) $(CFLAGS) -c $< -o $@ -MMD -MP -MF $(@:.o=.d)