From: Jakub Kicinski Date: Wed, 29 Nov 2023 19:36:21 +0000 (-0800) Subject: tools: ynl: order building samples after generated code X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9cf9b57082411ad42d6d12c7b857e60add673877;p=linux.git tools: ynl: order building samples after generated code 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. Link: https://lore.kernel.org/r/20231129193622.2912353-4-kuba@kernel.org Signed-off-by: Jakub Kicinski --- diff --git a/tools/net/ynl/Makefile b/tools/net/ynl/Makefile index d664b36deb5b5..da1aa10bbcc3d 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 $@ ; \