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..5812c37ec7 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 @@ -59,6 +61,7 @@ doc: ## Run doc gen $(MAKE) -C ./rusk-profile $@ $(MAKE) -C ./rusk-prover/ $@ $(MAKE) -C ./rusk-recovery $@ + $(MAKE) -C ./wallet-core/ $@ run: keys state web-wallet ## Run the server $(MAKE) -C ./rusk/ $@