whisper : add makefile target to update ggml submodule

This commit adds a recipe/target to the makefile to update the ggml
submodule.

The motivation for this is that it is not always clear how to update and
what if any flags are needed to update the submodule.
This commit is contained in:
Daniel Bevenius 2025-04-03 14:54:14 +02:00
parent 5cc611d9e4
commit fbea9803f6

View File

@ -56,3 +56,8 @@ tiny.en tiny base.en base small.en small medium.en medium large-v1 large-v2 larg
./build/bin/whisper-cli -m models/ggml-$@.bin -f $$f ; \
echo "" ; \
done
.PHONY: update-ggml
update-ggml:
echo "Updating ggml submodule..."
git submodule update --remote ggml