From 39907ea80d2e16292a94245fae0f9677607a039f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Rivi=C3=A8re?= Date: Mon, 22 Oct 2012 11:47:10 +0000 Subject: [PATCH] Do not generated dependencies for make clean. --- BaS_GNU/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BaS_GNU/Makefile b/BaS_GNU/Makefile index dd0ce1b..823fea7 100644 --- a/BaS_GNU/Makefile +++ b/BaS_GNU/Makefile @@ -83,4 +83,6 @@ $(OBJDIR)/%.o:$(SRCDIR)/%.S depend: $(ASRCS) $(CSRCS) $(CC) $(CFLAGS) $(INCLUDE) -M $(ASRCS) $(CSRCS) > depend +ifneq (clean,$(MAKECMDGOALS)) -include depend +endif