From 0793de9ef1bd7b8927f0388adefcd76cd4d9ded3 Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Mon, 21 Oct 2019 11:27:28 -0400 Subject: [PATCH] Do not fail makefile just because example fails. --- examples/example_1/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example_1/makefile b/examples/example_1/makefile index cca79b4..545476a 100644 --- a/examples/example_1/makefile +++ b/examples/example_1/makefile @@ -57,7 +57,7 @@ default: $(SRC_FILES1) $(SRC_FILES2) $(C_COMPILER) $(CFLAGS) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES1) -o $(TARGET1) $(C_COMPILER) $(CFLAGS) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES2) -o $(TARGET2) - ./$(TARGET1) - ./$(TARGET2) + - ./$(TARGET2) test/test_runners/TestProductionCode_Runner.c: test/TestProductionCode.c ruby $(UNITY_ROOT)/auto/generate_test_runner.rb test/TestProductionCode.c test/test_runners/TestProductionCode_Runner.c -- GitLab