From 0c97cf3e372bd5f2aed2fa18dcd79f3df59c0208 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Thu, 9 Oct 2025 08:09:47 +0200 Subject: [PATCH] Splut the submodules in two parts --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0c93e96..e086243 100644 --- a/Makefile +++ b/Makefile @@ -6,9 +6,11 @@ NIM_CODEX_DIR := vendor/nim-codex all: build -update: +submodules: @echo "Fetching submodules..." @git submodule update --init --recursive + +update: | submodules @echo "Updating nim-codex..." @$(MAKE) -C $(NIM_CODEX_DIR) update @@ -18,7 +20,7 @@ libcodex: build: @echo "Building Codex Go Bindings..." - go build -o codex-go examples/golang/codex.go + go build -o codex-go codex clean: @echo "Cleaning up..."