We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c71b862 commit a15f888Copy full SHA for a15f888
Makefile
@@ -0,0 +1,15 @@
1
+.PHONY: test
2
+test:
3
+ go test -v ./...
4
+
5
+.PHONY: build
6
+build:
7
+ make -C tscli
8
9
+.PHONY: install
10
+install: build
11
+ cp ./bin/tscli /usr/local/bin/
12
13
+.PHONY: clean
14
+clean:
15
+ rm -rf ./bin
tscli/Makefile
@@ -0,0 +1,8 @@
+BINDIR ?= ../bin
+default: build
+ @mkdir -p $(BINDIR)
+ GOOS=linux GOARCH=amd64 /usr/local/go/bin/go build -o $(BINDIR)/tscli
0 commit comments