summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-14 20:55:35 +0300
committerPaul Buetow <paul@buetow.org>2021-10-15 08:40:54 +0300
commit698fb76b98c46c677abe13fdc93afc6c4f38c39e (patch)
treeac6884ea24d262c36d1f3b6e12a6adf2ba7acb8b /Makefile
parent06ece112c0dd20c0c211c538216fe64ebe4045c9 (diff)
refactor
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 543b29e..45b0bea 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
GO ?= go
all: build
-build: dserver dcat dgrep dmap dtail dtailhealthcheck
+build: dserver dcat dgrep dmap dtail dtailhealth
dserver:
ifndef USE_ACL
${GO} build ${GO_FLAGS} -o dserver ./cmd/dserver/main.go
@@ -15,8 +15,8 @@ dmap:
${GO} build ${GO_FLAGS} -o dmap ./cmd/dmap/main.go
dtail:
${GO} build ${GO_FLAGS} -o dtail ./cmd/dtail/main.go
-dtailhealthcheck:
- ${GO} build ${GO_FLAGS} -o dtailhealthcheck ./cmd/dtailhealthcheck/main.go
+dtailhealth:
+ ${GO} build ${GO_FLAGS} -o dtailhealth ./cmd/dtailhealth/main.go
install:
ifndef USE_ACL
${GO} install ./cmd/dserver/main.go
@@ -27,7 +27,7 @@ endif
${GO} install ./cmd/dgrep/main.go
${GO} install ./cmd/dmap/main.go
${GO} install ./cmd/dtail/main.go
- ${GO} install ./cmd/dtailhealthcheck/main.go
+ ${GO} install ./cmd/dtailhealth/main.go
clean:
ls ./cmd/ | while read cmd; do \
test -f $$cmd && rm $$cmd; \