From 4dd321751a5ce98abc3edde51ca2a164cd4a47f5 Mon Sep 17 00:00:00 2001 From: Gabriel mermelstein Date: Fri, 29 Nov 2024 13:28:14 +0200 Subject: [PATCH] fixing Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 927a7a8..fd36c35 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Makefile for Go project with Waku library preparation +# Makefile for Waku Go Bindings # Directories THIRD_PARTY_DIR := third_party @@ -26,9 +26,9 @@ prepare: @echo "Building libwaku..." @cd $(NWAKU_DIR) && make libwaku -# Build Go project (replace with your actual build command) +# Build Waku Go Bindings build: prepare - @echo "Building Go project..." + @echo "Building Waku Go Bindings..." go build ./wakuv2/... # Clean up generated files