@@ -87,7 +87,7 @@ help-targets:
8787 @echo ' Targets for files in _output/bin/:'
8888 @echo ' - limactl : Build limactl, and lima'
8989 @echo ' - lima : Copy lima, and lima.bat'
90- @echo ' - helpers : Copy nerdctl.lima, apptainer.lima, docker.lima, podman.lima, and kubectl .lima'
90+ @echo ' - helpers : Copy nerdctl.lima, apptainer.lima, docker.lima, podman.lima, kubectl.lima, and yq .lima$(exe) '
9191 @echo
9292 @echo ' Targets for files in _output/share/lima/:'
9393 @echo ' - guestagents : Build guestagents'
@@ -277,10 +277,17 @@ LIMA_CMDS = $(sort lima lima$(bat)) # $(sort ...) deduplicates the list
277277LIMA_DEPS = $(addprefix _output/bin/,$(LIMA_CMDS ) )
278278lima : $(LIMA_DEPS )
279279
280- HELPER_CMDS = nerdctl.lima apptainer.lima docker.lima podman.lima kubectl.lima
280+ HELPER_CMDS = nerdctl.lima apptainer.lima docker.lima podman.lima kubectl.lima yq.lima $( exe )
281281HELPERS_DEPS = $(addprefix _output/bin/,$(HELPER_CMDS ) )
282282helpers : $(HELPERS_DEPS )
283283
284+ _output/bin/yq.lima$(exe ) : _output/bin/limactl$(exe )
285+ ifneq ($(GOOS ) ,windows)
286+ ln -sf limactl$(exe) $@
287+ else
288+ cp -aL $< $@
289+ endif
290+
284291_output/bin/% : ./cmd/% | _output/bin
285292 cp -a $< $@
286293
@@ -493,6 +500,7 @@ uninstall:
493500 " $( DEST) /bin/docker.lima" \
494501 " $( DEST) /bin/podman.lima" \
495502 " $( DEST) /bin/kubectl.lima" \
503+ " $( DEST) /bin/yq.lima$( exe) " \
496504 " $( DEST) /share/man/man1/lima.1" \
497505 " $( DEST) /share/man/man1/limactl" * " .1" \
498506 " $( DEST) /share/lima" " $( DEST) /share/doc/lima"
0 commit comments