* [PATCH net-next v2 0/3] tools: ynl: clean up make clean
@ 2024-03-05 5:13 Jakub Kicinski
2024-03-05 5:13 ` [PATCH net-next v2 1/3] tools: ynl: rename make hardclean -> distclean Jakub Kicinski
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Jakub Kicinski @ 2024-03-05 5:13 UTC (permalink / raw)
To: davem; +Cc: netdev, edumazet, pabeni, donald.hunter, Jakub Kicinski
First change renames the clean target which removes build results,
to a more common name. Second one add missing .PHONY targets.
Third one ensures that clean deletes __pycache__.
v2: add patch 2
v1: https://lore.kernel.org/all/20240301235609.147572-1-kuba@kernel.org/
Jakub Kicinski (3):
tools: ynl: rename make hardclean -> distclean
tools: ynl: add distclean to .PHONY in all makefiles
tools: ynl: remove __pycache__ during clean
tools/net/ynl/Makefile | 4 ++--
tools/net/ynl/generated/Makefile | 4 ++--
tools/net/ynl/lib/Makefile | 5 +++--
tools/net/ynl/samples/Makefile | 4 ++--
4 files changed, 9 insertions(+), 8 deletions(-)
--
2.44.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH net-next v2 1/3] tools: ynl: rename make hardclean -> distclean
2024-03-05 5:13 [PATCH net-next v2 0/3] tools: ynl: clean up make clean Jakub Kicinski
@ 2024-03-05 5:13 ` 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
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Jakub Kicinski @ 2024-03-05 5:13 UTC (permalink / raw)
To: davem; +Cc: netdev, edumazet, pabeni, donald.hunter, Jakub Kicinski
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>
---
tools/net/ynl/Makefile | 2 +-
tools/net/ynl/generated/Makefile | 4 ++--
tools/net/ynl/lib/Makefile | 2 +-
tools/net/ynl/samples/Makefile | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/tools/net/ynl/Makefile b/tools/net/ynl/Makefile
index da1aa10bbcc3..1874296665e1 100644
--- a/tools/net/ynl/Makefile
+++ b/tools/net/ynl/Makefile
@@ -11,7 +11,7 @@ samples: | lib generated
$(MAKE) -C $@ ; \
fi
-clean hardclean:
+clean distclean:
@for dir in $(SUBDIRS) ; do \
if [ -f "$$dir/Makefile" ] ; then \
$(MAKE) -C $$dir $@; \
diff --git a/tools/net/ynl/generated/Makefile b/tools/net/ynl/generated/Makefile
index 7135028cb449..713f5fb9cc2d 100644
--- a/tools/net/ynl/generated/Makefile
+++ b/tools/net/ynl/generated/Makefile
@@ -43,11 +43,11 @@ protos.a: $(OBJS)
clean:
rm -f *.o
-hardclean: clean
+distclean: clean
rm -f *.c *.h *.a
regen:
@../ynl-regen.sh
-.PHONY: all clean hardclean regen
+.PHONY: all clean distclean regen
.DEFAULT_GOAL: all
diff --git a/tools/net/ynl/lib/Makefile b/tools/net/ynl/lib/Makefile
index d2e50fd0a52d..2201dafc62b3 100644
--- a/tools/net/ynl/lib/Makefile
+++ b/tools/net/ynl/lib/Makefile
@@ -18,7 +18,7 @@ ynl.a: $(OBJS)
clean:
rm -f *.o *.d *~
-hardclean: clean
+distclean: clean
rm -f *.a
%.o: %.c
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
--
2.44.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH net-next v2 2/3] tools: ynl: add distclean to .PHONY in all makefiles
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 5:13 ` Jakub Kicinski
2024-03-05 10:56 ` Donald Hunter
2024-03-05 5:13 ` [PATCH net-next v2 3/3] tools: ynl: remove __pycache__ during clean Jakub Kicinski
2024-03-06 12:10 ` [PATCH net-next v2 0/3] tools: ynl: clean up make clean patchwork-bot+netdevbpf
3 siblings, 1 reply; 8+ messages in thread
From: Jakub Kicinski @ 2024-03-05 5:13 UTC (permalink / raw)
To: davem; +Cc: netdev, edumazet, pabeni, donald.hunter, Jakub Kicinski
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>
---
v2: new patch
---
tools/net/ynl/Makefile | 2 +-
tools/net/ynl/lib/Makefile | 2 +-
tools/net/ynl/samples/Makefile | 2 +-
3 files changed, 3 insertions(+), 3 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 @@ samples: | lib generated
fi \
done
-.PHONY: clean all $(SUBDIRS)
+.PHONY: all clean distclean $(SUBDIRS)
diff --git a/tools/net/ynl/lib/Makefile b/tools/net/ynl/lib/Makefile
index 2201dafc62b3..1507833d05c5 100644
--- a/tools/net/ynl/lib/Makefile
+++ b/tools/net/ynl/lib/Makefile
@@ -24,5 +24,5 @@ distclean: clean
%.o: %.c
$(COMPILE.c) -MMD -c -o $@ $<
-.PHONY: all clean
+.PHONY: all clean distclean
.DEFAULT_GOAL=all
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 @@ $(BINS): ../lib/ynl.a ../generated/protos.a $(SRCS)
distclean: clean
rm -f $(BINS)
-.PHONY: all clean
+.PHONY: all clean distclean
.DEFAULT_GOAL=all
--
2.44.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH net-next v2 3/3] tools: ynl: remove __pycache__ during clean
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 5:13 ` [PATCH net-next v2 2/3] tools: ynl: add distclean to .PHONY in all makefiles Jakub Kicinski
@ 2024-03-05 5:13 ` Jakub Kicinski
2024-03-05 10:56 ` Donald Hunter
2024-03-06 12:10 ` [PATCH net-next v2 0/3] tools: ynl: clean up make clean patchwork-bot+netdevbpf
3 siblings, 1 reply; 8+ messages in thread
From: Jakub Kicinski @ 2024-03-05 5:13 UTC (permalink / raw)
To: davem; +Cc: netdev, edumazet, pabeni, donald.hunter, Jakub Kicinski
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
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH net-next v2 1/3] tools: ynl: rename make hardclean -> distclean
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
0 siblings, 0 replies; 8+ messages in thread
From: Donald Hunter @ 2024-03-05 10:56 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: davem, netdev, edumazet, pabeni
Jakub Kicinski <kuba@kernel.org> writes:
> 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>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH net-next v2 2/3] tools: ynl: add distclean to .PHONY in all makefiles
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
0 siblings, 0 replies; 8+ messages in thread
From: Donald Hunter @ 2024-03-05 10:56 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: davem, netdev, edumazet, pabeni
Jakub Kicinski <kuba@kernel.org> writes:
> 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>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH net-next v2 3/3] tools: ynl: remove __pycache__ during clean
2024-03-05 5:13 ` [PATCH net-next v2 3/3] tools: ynl: remove __pycache__ during clean Jakub Kicinski
@ 2024-03-05 10:56 ` Donald Hunter
0 siblings, 0 replies; 8+ messages in thread
From: Donald Hunter @ 2024-03-05 10:56 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: davem, netdev, edumazet, pabeni
Jakub Kicinski <kuba@kernel.org> writes:
> 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>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH net-next v2 0/3] tools: ynl: clean up make clean
2024-03-05 5:13 [PATCH net-next v2 0/3] tools: ynl: clean up make clean Jakub Kicinski
` (2 preceding siblings ...)
2024-03-05 5:13 ` [PATCH net-next v2 3/3] tools: ynl: remove __pycache__ during clean Jakub Kicinski
@ 2024-03-06 12:10 ` patchwork-bot+netdevbpf
3 siblings, 0 replies; 8+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-03-06 12:10 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: davem, netdev, edumazet, pabeni, donald.hunter
Hello:
This series was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:
On Mon, 4 Mar 2024 21:13:25 -0800 you wrote:
> First change renames the clean target which removes build results,
> to a more common name. Second one add missing .PHONY targets.
> Third one ensures that clean deletes __pycache__.
>
> v2: add patch 2
> v1: https://lore.kernel.org/all/20240301235609.147572-1-kuba@kernel.org/
>
> [...]
Here is the summary with links:
- [net-next,v2,1/3] tools: ynl: rename make hardclean -> distclean
https://git.kernel.org/netdev/net-next/c/4e887471e8e3
- [net-next,v2,2/3] tools: ynl: add distclean to .PHONY in all makefiles
https://git.kernel.org/netdev/net-next/c/1d8617b2a610
- [net-next,v2,3/3] tools: ynl: remove __pycache__ during clean
https://git.kernel.org/netdev/net-next/c/72fa191bfdf6
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-03-06 12:10 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [PATCH net-next v2 3/3] tools: ynl: remove __pycache__ during clean Jakub Kicinski
2024-03-05 10:56 ` Donald Hunter
2024-03-06 12:10 ` [PATCH net-next v2 0/3] tools: ynl: clean up make clean patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).