diff --git a/Cargo.toml b/Cargo.toml index 9e71872413..cdd1f29631 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ members = [ "contracts/license", "execution-core", + "wallet-core", "rusk-prover", diff --git a/Makefile b/Makefile index 0a010f2340..3c7e1a64cc 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ test: keys wasm ## Run the tests $(MAKE) -C ./node-data $@ $(MAKE) -C ./consensus $@ $(MAKE) -C ./node $@ + $(MAKE) -C ./wallet-core $@ $(MAKE) -C ./rusk/ $@ clippy: ## Run clippy @@ -46,6 +47,7 @@ clippy: ## Run clippy $(MAKE) -C ./node-data $@ $(MAKE) -C ./consensus $@ $(MAKE) -C ./node $@ + $(MAKE) -C ./wallet-core $@ $(MAKE) -C ./rusk/ $@ doc: ## Run doc gen