summaryrefslogtreecommitdiff
path: root/tools/net/ynl/lib/Makefile
diff options
context:
space:
mode:
authorJakub Kicinski <kuba@kernel.org>2024-03-05 08:13:27 +0300
committerDavid S. Miller <davem@davemloft.net>2024-03-06 15:05:10 +0300
commit1d8617b2a610f36e361a91846725c065dc233541 (patch)
tree4e1db6f621c9c2a4186e1332854dfe8b71945f99 /tools/net/ynl/lib/Makefile
parent4e887471e8e3a513607495d18333c44f59a82c5a (diff)
downloadlinux-1d8617b2a610f36e361a91846725c065dc233541.tar.xz
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: Donald Hunter <donald.hunter@gmail.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org> Reviewed-by: Donald Hunter <donald.hunter@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/net/ynl/lib/Makefile')
-rw-r--r--tools/net/ynl/lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/net/ynl/lib/Makefile b/tools/net/ynl/lib/Makefile
index 2201dafc62b3..1507833d05c5 100644
--- a/tools/net/ynl/lib/Makefile
+++ b/tools/net/ynl/lib/Makefile
@@ -24,5 +24,5 @@ distclean: clean
%.o: %.c
$(COMPILE.c) -MMD -c -o $@ $<
-.PHONY: all clean
+.PHONY: all clean distclean
.DEFAULT_GOAL=all