From db4348d3119261236f30ba2d6e3ed2eb0d4b7cd9 Mon Sep 17 00:00:00 2001 From: gabrielmer <101006718+gabrielmer@users.noreply.github.com> Date: Wed, 22 Jan 2025 18:58:23 +0100 Subject: [PATCH] chore: improve package structure (#20) --- README.md | 2 +- Makefile => waku/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename Makefile => waku/Makefile (93%) diff --git a/README.md b/README.md index ef6a400..93af28d 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Follow these steps to install and set up the module: ``` 3. Build the dependencies: ``` - sudo make + sudo make -C waku ``` Now the module is ready for use in your project. diff --git a/Makefile b/waku/Makefile similarity index 93% rename from Makefile rename to waku/Makefile index 3520cc8..ce412bb 100644 --- a/Makefile +++ b/waku/Makefile @@ -1,7 +1,7 @@ # Makefile for Waku Go Bindings # Directories -THIRD_PARTY_DIR := third_party +THIRD_PARTY_DIR := ../third_party NWAKU_REPO := https://github.com/waku-org/nwaku NWAKU_DIR := $(THIRD_PARTY_DIR)/nwaku @@ -29,7 +29,7 @@ prepare: # Build Waku Go Bindings build: prepare @echo "Building Waku Go Bindings..." - go build ./waku/... + go build ./... # Clean up generated files clean: