From 76b705576f9743fd6ab5ba839c6689b37912ae90 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Mon, 21 Aug 2017 10:58:49 +0200 Subject: [PATCH] Makefile: Fix 'make test' make test tried to execute the test for cJSON_Utils, which has been ported to CUnity tests. --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4ba0513..fb8244f 100644 --- a/Makefile +++ b/Makefile @@ -66,11 +66,10 @@ shared: $(CJSON_SHARED) $(UTILS_SHARED) static: $(CJSON_STATIC) $(UTILS_STATIC) -tests: $(CJSON_TEST) $(UTILS_TEST) +tests: $(CJSON_TEST) test: tests ./$(CJSON_TEST) - ./$(UTILS_TEST) .c.o: $(CC) -c $(R_CFLAGS) $< @@ -150,4 +149,4 @@ clean: $(RM) $(CJSON_OBJ) $(UTILS_OBJ) #delete object files $(RM) $(CJSON_SHARED) $(CJSON_SHARED_VERSION) $(CJSON_SHARED_SO) $(CJSON_STATIC) #delete cJSON $(RM) $(UTILS_SHARED) $(UTILS_SHARED_VERSION) $(UTILS_SHARED_SO) $(UTILS_STATIC) #delete cJSON_Utils - $(RM) $(CJSON_TEST) $(UTILS_TEST) #delete tests + $(RM) $(CJSON_TEST) #delete test