From 19eb6ce3b31e89d0bae7e2c23a6a64357728bcde Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Tue, 6 Nov 2018 14:44:55 +0900 Subject: [PATCH] fix dependency of Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e8fbd7e..b31fe1b 100644 --- a/Makefile +++ b/Makefile @@ -269,7 +269,7 @@ SAMPLE_EXE=$(addprefix $(EXE_DIR)/,$(addsuffix .exe,$(basename $(SAMPLE_SRC)))) sample: $(SAMPLE_EXE) $(MCL_LIB) TEST_EXE=$(addprefix $(EXE_DIR)/,$(TEST_SRC:.cpp=.exe)) -test_ci: +test_ci: $(TEST_EXE) @sh -ec 'for i in $(TEST_EXE); do echo $$i; $$i; done' test: $(TEST_EXE) @echo test $(TEST_EXE)