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: