From 4d6883a732b07072fc43c7e0a1ad9f644e244eb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Tue, 5 Jul 2016 16:06:33 +0200 Subject: [PATCH] tests/unittests: Remove unnecessary FORCE target Changes to CFLAGS #defines are now picked up by the configuration header (genconfigheader) when building, so the FORCE target is no longer necessary when building different test suites. --- tests/unittests/Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index 80c9dba7d6..0bbca74067 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -60,14 +60,11 @@ INCLUDES += -I$(RIOTBASE)/tests/unittests/common include $(RIOTBASE)/Makefile.include -.PHONY: FORCE $(UNIT_TESTS) +.PHONY: $(UNIT_TESTS) -FORCE: - touch $(CURDIR)/main.c +all: -all: FORCE - -$(UNIT_TESTS): FORCE all +$(UNIT_TESTS): all charCOMMA := ,