From 0f67531f2bf0b1f478093ecd225afca91022ced6 Mon Sep 17 00:00:00 2001 From: Niclas Finne Date: Tue, 18 Mar 2014 11:22:27 +0100 Subject: [PATCH] CONTIKI_PROJECT is sometimes set to multiple files which caused distclean to fail. --- Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.include b/Makefile.include index 5f0ecc57c..86ebb3150 100644 --- a/Makefile.include +++ b/Makefile.include @@ -183,7 +183,7 @@ clean: -rm -rf $(OBJECTDIR) distclean: clean - -rm -rf $(CONTIKI_PROJECT).$(TARGET) + -rm -f ${addsuffix .$(TARGET),$(CONTIKI_PROJECT)} -include $(CONTIKI)/platform/$(TARGET)/Makefile.customrules-$(TARGET)