Don't include dependent makefile when doing make clean

This commit is contained in:
Sudar 2012-07-14 12:22:34 +05:30
parent 94fa378eaa
commit 4dc7457265

View file

@ -839,4 +839,6 @@ disasm: all $(OBJDIR)/$(TARGET).lss
.PHONY: all clean depends upload raw_upload reset reset_stty size show_boards monitor .PHONY: all clean depends upload raw_upload reset reset_stty size show_boards monitor
# added - in the beginning, so that we don't get an error if the file is not present # added - in the beginning, so that we don't get an error if the file is not present
ifneq ($(MAKECMDGOALS),clean)
-include $(DEP_FILE) -include $(DEP_FILE)
endif