diff options
author | Jakub Kicinski <kuba@kernel.org> | 2024-03-05 08:13:27 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-03-06 15:05:10 +0300 |
commit | 1d8617b2a610f36e361a91846725c065dc233541 (patch) | |
tree | 4e1db6f621c9c2a4186e1332854dfe8b71945f99 /tools/net/ynl/Makefile | |
parent | 4e887471e8e3a513607495d18333c44f59a82c5a (diff) | |
download | linux-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/Makefile')
-rw-r--r-- | tools/net/ynl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/net/ynl/Makefile b/tools/net/ynl/Makefile index 1874296665e1..8e9e09d84e26 100644 --- a/tools/net/ynl/Makefile +++ b/tools/net/ynl/Makefile @@ -18,4 +18,4 @@ clean distclean: fi \ done -.PHONY: clean all $(SUBDIRS) +.PHONY: all clean distclean $(SUBDIRS) |