Commit 1d8617b2 authored by Jakub Kicinski's avatar Jakub Kicinski Committed by David S. Miller
Browse files

tools: ynl: add distclean to .PHONY in all makefiles



Donald points out most YNL makefiles are missing distclean
in .PHONY, even tho generated/Makefile does list it.

Suggested-by: default avatarDonald Hunter <donald.hunter@gmail.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
Reviewed-by: default avatarDonald Hunter <donald.hunter@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4e887471
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,4 +18,4 @@ clean distclean:
		fi \
	done

.PHONY: clean all $(SUBDIRS)
.PHONY: all clean distclean $(SUBDIRS)
+1 −1
Original line number Diff line number Diff line
@@ -24,5 +24,5 @@ distclean: clean
%.o: %.c
	$(COMPILE.c) -MMD -c -o $@ $<

.PHONY: all clean
.PHONY: all clean distclean
.DEFAULT_GOAL=all
+1 −1
Original line number Diff line number Diff line
@@ -31,5 +31,5 @@ clean:
distclean: clean
	rm -f $(BINS)

.PHONY: all clean
.PHONY: all clean distclean
.DEFAULT_GOAL=all