diff options
author | Jakub Kicinski <kuba@kernel.org> | 2024-03-04 21:13:28 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-03-06 12:05:10 +0000 |
commit | 72fa191bfdf611e5362e71d4cacae26c4c8d302c (patch) | |
tree | 9cb50763b559b323a5f68f501fe365c986e27a01 | |
parent | 1d8617b2a610f36e361a91846725c065dc233541 (diff) |
tools: ynl: remove __pycache__ during clean
Build process uses python to generate the user space code.
Remove __pycache__ on make clean.
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>
-rw-r--r-- | tools/net/ynl/lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/net/ynl/lib/Makefile b/tools/net/ynl/lib/Makefile index 1507833d05c5..dfff3ecd1cba 100644 --- a/tools/net/ynl/lib/Makefile +++ b/tools/net/ynl/lib/Makefile @@ -17,6 +17,7 @@ ynl.a: $(OBJS) ar rcs $@ $(OBJS) clean: rm -f *.o *.d *~ + rm -rf __pycache__ distclean: clean rm -f *.a |