diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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; \ |
