diff options
author | Jakub Kicinski <kuba@kernel.org> | 2024-03-04 21:13:26 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-03-06 12:05:10 +0000 |
commit | 4e887471e8e3a513607495d18333c44f59a82c5a (patch) | |
tree | 869480f4b543217e156252579d7107253d999125 /tools/net/ynl/samples | |
parent | db72b6fc8fa0eae6ad69707dcce7db5e7cd32180 (diff) |
tools: ynl: rename make hardclean -> distclean
The make target to remove all generated files used to be called
"hardclean" because it deleted files which were tracked by git.
We no longer track generated user space files, so use the more
common "distclean" name.
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 1d33e98e3ffe..3e81432f7b27 100644 --- a/tools/net/ynl/samples/Makefile +++ b/tools/net/ynl/samples/Makefile @@ -28,7 +28,7 @@ $(BINS): ../lib/ynl.a ../generated/protos.a $(SRCS) clean: rm -f *.o *.d *~ -hardclean: clean +distclean: clean rm -f $(BINS) .PHONY: all clean |