Clean the dynamic dependency files (.d)

Change-Id: I75ac64fea628f0e1762f58de887c790376af230a
This commit is contained in:
Romain Goyet
2016-09-20 11:26:01 +02:00
parent 5f2427aef2
commit e822a74393

View File

@@ -65,7 +65,9 @@ include escher/Makefile
include apps/Makefile
include quiz/Makefile # Quiz should be included at the end
-include $(objs:.o=.d)
dependencies = $(objs:.o=.d)
-include $(dependencies)
%.elf: $(objs)
@echo "LD $@"
@@ -101,4 +103,4 @@ include quiz/Makefile # Quiz should be included at the end
.PHONY: clean
clean:
@echo "CLEAN"
@rm -f $(objs) $(test_objs) $(products)
@rm -f $(objs) $(test_objs) $(products) $(dependencies)