Skip to content

Commit

Permalink
main: fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlinjin committed Jan 31, 2024
1 parent fe60432 commit 41dc855
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ build-bdk: install-uniffi-bindgen-go ## Build BDK static library
cargo build --release

build-utreexod: build-bdk ## Build utreexod with all features
go build ./... --tags=bdkwallet
go build --tags=bdkwallet ./...

build-utreexod-without-bdk: ## Build utreexod without BDK wallet
go build ./...

test:
test: ## Run all test
cargo test
sh ./goclean.sh

all: build-bdk build-utreexod
all: build-bdk build-utreexod ## Build all

clean:
clean: ## Clean all
rm utreexod
go clean
cargo clean

0 comments on commit 41dc855

Please sign in to comment.