summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Bütow <pbuetow@mimecast.com>2020-01-22 13:07:04 +0000
committerPaul Bütow <pbuetow@mimecast.com>2020-01-22 13:07:04 +0000
commitbd683ec4a63b01255274ab6f2463c95a49695e90 (patch)
tree9c397b2edc9e118aac563abdfa78211a9f3d3938 /Makefile
parente56c31af93c5432eab8c129e19d8741db1e19a32 (diff)
more on dexec
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 456987d..3480637 100644
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,21 @@
GO ?= go
all: build
build:
- ${GO} version
- ${GO} build -o dtail ./cmd/dtail/main.go
${GO} build -o dcat ./cmd/dcat/main.go
+ ${GO} build -o dexec ./cmd/dexec/main.go
${GO} build -o dgrep ./cmd/dgrep/main.go
${GO} build -o dmap ./cmd/dmap/main.go
${GO} build -o dserver ./cmd/dserver/main.go
+ ${GO} build -o dtail ./cmd/dtail/main.go
clean:
- rm -v dtail dgrep dcat dmap dserver 2>/dev/null
+ rm -v dtail dgrep dcat dmap dserver dexec 2>/dev/null
install: build
- cp -pv dtail ${GOPATH}/bin/dtail
cp -pv dcat ${GOPATH}/bin/dcat
+ cp -pv dexec ${GOPATH}/bin/dexec
cp -pv dgrep ${GOPATH}/bin/dgrep
cp -pv dmap ${GOPATH}/bin/dmap
cp -pv dserver ${GOPATH}/bin/dserver
+ cp -pv dtail ${GOPATH}/bin/dtail
vet:
find . -type d | while read dir; do \
echo ${GO} vet $$dir; \