All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jakub Kicinski <kuba@kernel.org>
To: davem@davemloft.net
Cc: netdev@vger.kernel.org, edumazet@google.com, pabeni@redhat.com,
	donald.hunter@gmail.com, Jakub Kicinski <kuba@kernel.org>
Subject: [PATCH net-next v2 3/3] tools: ynl: remove __pycache__ during clean
Date: Mon,  4 Mar 2024 21:13:28 -0800	[thread overview]
Message-ID: <20240305051328.806892-4-kuba@kernel.org> (raw)
In-Reply-To: <20240305051328.806892-1-kuba@kernel.org>

Build process uses python to generate the user space code.
Remove __pycache__ on make clean.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
 tools/net/ynl/lib/Makefile | 1 +
 1 file changed, 1 insertion(+)

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
-- 
2.44.0


  parent reply	other threads:[~2024-03-05  5:13 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-05  5:13 [PATCH net-next v2 0/3] tools: ynl: clean up make clean Jakub Kicinski
2024-03-05  5:13 ` [PATCH net-next v2 1/3] tools: ynl: rename make hardclean -> distclean Jakub Kicinski
2024-03-05 10:56   ` Donald Hunter
2024-03-05  5:13 ` [PATCH net-next v2 2/3] tools: ynl: add distclean to .PHONY in all makefiles Jakub Kicinski
2024-03-05 10:56   ` Donald Hunter
2024-03-05  5:13 ` Jakub Kicinski [this message]
2024-03-05 10:56   ` [PATCH net-next v2 3/3] tools: ynl: remove __pycache__ during clean Donald Hunter
2024-03-06 12:10 ` [PATCH net-next v2 0/3] tools: ynl: clean up make clean patchwork-bot+netdevbpf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240305051328.806892-4-kuba@kernel.org \
    --to=kuba@kernel.org \
    --cc=davem@davemloft.net \
    --cc=donald.hunter@gmail.com \
    --cc=edumazet@google.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.