summaryrefslogtreecommitdiffstats
path: root/sms-quorum/src/smsquorum/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sms-quorum/src/smsquorum/Makefile')
-rw-r--r--sms-quorum/src/smsquorum/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/sms-quorum/src/smsquorum/Makefile b/sms-quorum/src/smsquorum/Makefile
deleted file mode 100644
index d264de9..0000000
--- a/sms-quorum/src/smsquorum/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-GOPATH := $(shell realpath "$(PWD)/../../")
-BINARY := quorumclient
-PLATFORM := linux
-
-export GOPATH ...
-
-all: test build
-deploy: test build
-
-build: format
- CGO_ENABLED=0 GOOS=$(PLATFORM) go build -a \
- -ldflags '-extldflags "-static"' \
- -o $(GOPATH)/target/$(BINARY) -v quorumclient.go
-
-clean:
- go clean
- rm -f $(GOPATH)/target/$(BINARY)
-
-test:
- @echo "Yet to Implement"
-
-format:
- go fmt ./...
-
-.PHONY: test