diff mbox series

[net-next,3/4] tools: ynl: order building samples after generated code

Message ID 20231129193622.2912353-4-kuba@kernel.org (mailing list archive)
State Accepted
Commit 9cf9b57082411ad42d6d12c7b857e60add673877
Delegated to: Netdev Maintainers
Headers show
Series tools: ynl: fixes for the page-pool sample and the generation process | expand

Commit Message

Jakub Kicinski Nov. 29, 2023, 7:36 p.m. UTC
Parallel builds of ynl:

  make -C tools/net/ynl/ -j 4

don't work correctly right now. samples get handled before
generated, so build of samples does not notice that protos.a
has changed. Order samples to be last.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
CC: sdf@google.com
CC: willemb@google.com
---
 tools/net/ynl/Makefile | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/tools/net/ynl/Makefile b/tools/net/ynl/Makefile
index d664b36deb5b..da1aa10bbcc3 100644
--- a/tools/net/ynl/Makefile
+++ b/tools/net/ynl/Makefile
@@ -4,6 +4,8 @@  SUBDIRS = lib generated samples
 
 all: $(SUBDIRS)
 
+samples: | lib generated
+
 $(SUBDIRS):
 	@if [ -f "$@/Makefile" ] ; then \
 		$(MAKE) -C $@ ; \