diff options
author | Jakub Kicinski <kuba@kernel.org> | 2024-03-05 06:13:27 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-03-06 13:05:10 +0100 |
commit | 1d8617b2a610f36e361a91846725c065dc233541 (patch) | |
tree | 4e1db6f621c9c2a4186e1332854dfe8b71945f99 /tools/net/ynl/samples | |
parent | tools: ynl: rename make hardclean -> distclean (diff) | |
download | linux-1d8617b2a610f36e361a91846725c065dc233541.tar.xz linux-1d8617b2a610f36e361a91846725c065dc233541.zip |
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/samples')
-rw-r--r-- | tools/net/ynl/samples/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/net/ynl/samples/Makefile b/tools/net/ynl/samples/Makefile index 3e81432f7b27..e194a7565861 100644 --- a/tools/net/ynl/samples/Makefile +++ b/tools/net/ynl/samples/Makefile @@ -31,5 +31,5 @@ clean: distclean: clean rm -f $(BINS) -.PHONY: all clean +.PHONY: all clean distclean .DEFAULT_GOAL=all |