aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8c7b80ea6..56f250a92 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
GOBIN = build/bin
geth:
- build/env.sh go install -v $(shell build/ldflags.sh) ./cmd/geth
+ build/env.sh go install -v $(shell build/flags.sh) ./cmd/geth
@echo "Done building."
@echo "Run \"$(GOBIN)/geth\" to launch geth."
@@ -39,12 +39,12 @@ evm:
@echo "Done building."
@echo "Run \"$(GOBIN)/evm to start the evm."
mist:
- build/env.sh go install -v $(shell build/ldflags.sh) ./cmd/mist
+ build/env.sh go install -v $(shell build/flags.sh) ./cmd/mist
@echo "Done building."
@echo "Run \"$(GOBIN)/mist --asset_path=cmd/mist/assets\" to launch mist."
all:
- build/env.sh go install -v $(shell build/ldflags.sh) ./...
+ build/env.sh go install -v $(shell build/flags.sh) ./...
test: all
build/env.sh go test ./...