Skip to content

Commit

Permalink
Bring exact Makefile from version 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maoueh committed Feb 10, 2025
1 parent e1ab1e5 commit 7cf5bab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,9 @@ docker:
$(output_root)/bin/nitro: $(DEP_PREDICATE) build-node-deps
go build $(GOLANG_PARAMS) -o $@ "$(CURDIR)/cmd/nitro"

$(output_root)/bin/deploy: $(DEP_PREDICATE) build-node-deps
go build $(GOLANG_PARAMS) -o $@ "$(CURDIR)/cmd/deploy"

$(output_root)/bin/relay: $(DEP_PREDICATE) build-node-deps
go build $(GOLANG_PARAMS) -o $@ "$(CURDIR)/cmd/relay"

Expand Down Expand Up @@ -634,4 +637,4 @@ contracts/test/prover/proofs/%.json: $(arbitrator_cases)/%.wasm $(prover_bin)
# Makefile settings

always: # use this to force other rules to always build
.DELETE_ON_ERROR: # causes a failure to delete its target
.DELETE_ON_ERROR: # causes a failure to delete its target

0 comments on commit 7cf5bab

Please sign in to comment.