From b80d3cfdb926d119fb9946e07fa51387cb3efe49 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Wed, 11 Feb 2009 09:03:52 +0000 Subject: [PATCH] Added a . to the SOURCEDIRS variable so that system files can be overridden by having a file with the same name in a local directory --- Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.include b/Makefile.include index ac2c4ee54..824ad0d25 100644 --- a/Makefile.include +++ b/Makefile.include @@ -118,7 +118,7 @@ CONTIKI_TARGET_DIRS_CONCAT = ${addprefix $(CONTIKI)/platform/$(TARGET)/, \ CONTIKI_CPU_DIRS_CONCAT = ${addprefix $(CONTIKI_CPU)/, \ $(CONTIKI_CPU_DIRS)} -SOURCEDIRS = $(PROJECTDIRS) $(CONTIKI_TARGET_DIRS_CONCAT) \ +SOURCEDIRS = . $(PROJECTDIRS) $(CONTIKI_TARGET_DIRS_CONCAT) \ $(CONTIKI_CPU_DIRS_CONCAT) $(CONTIKIDIRS) $(APPDIRS) vpath %.c $(SOURCEDIRS)