Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix all recipe #1076

Merged
merged 2 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
all: circuits keys wasm abi allcircuits state contracts node ## Build everything
all: circuits keys wasm abi allcircuits state contracts rusk ## Build everything

help: ## Display this help screen
@grep -h \
Expand All @@ -14,7 +14,7 @@ circuits: ## Compress and store all circuits
keys: circuits ## Create the keys for the circuits
$(MAKE) -C ./rusk-recovery keys

state: wasm ## Create the network state
state: keys wasm ## Create the network state
$(MAKE) -C ./rusk-recovery state

wasm: ## Generate the WASM for all the contracts
Expand Down Expand Up @@ -53,7 +53,7 @@ clippy: ## Run clippy$(MAKE) -C ./rusk-abi/ $@
run: keys state ## Run the server
cargo run --release --bin rusk

node: rusk ## Build node binary
$(MAKE) -C ./node binary
rusk: keys state ## Build rusk binary
$(MAKE) -C ./rusk build

.PHONY: all abi circuits keys state wasm allcircuits contracts test run help node
.PHONY: all abi circuits keys state wasm allcircuits contracts test run help rusk
5 changes: 4 additions & 1 deletion rusk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ clippy: ## Run clippy
@cargo clippy --all-features --release -- -D warnings
@cargo clippy --no-default-features --release -- -D warnings

.PHONY: test help clippy
build: ## Build rusk binary
@cargo build --release

.PHONY: test help clippy build