summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-09-19 13:22:59 +0300
committerPaul Buetow <paul@buetow.org>2021-10-02 12:26:29 +0300
commitfe3e68afd99d8ea246be52893730f987e138ec24 (patch)
tree726e0914730912e0a3b223f7b37facc05ba31140 /Makefile
parentabeac87aec44249bf67f1b0eca471a31086265ca (diff)
move args to config package
logger package rewrite as dlog
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 2109e56..b544388 100644
--- a/Makefile
+++ b/Makefile
@@ -3,18 +3,18 @@ all: test build
build: dserver dcat dgrep dmap dtail
dserver:
ifndef USE_ACL
- ${GO} build -o dserver ./cmd/dserver/main.go
+ ${GO} build ${GO_FLAGS} -o dserver ./cmd/dserver/main.go
else
- ${GO} build -tags linuxacl -o dserver ./cmd/dserver/main.go
+ ${GO} build ${GO_FLAGS} -tags linuxacl -o dserver ./cmd/dserver/main.go
endif
dcat:
- ${GO} build -o dcat ./cmd/dcat/main.go
+ ${GO} build ${GO_FLAGS} -o dcat ./cmd/dcat/main.go
dgrep:
- ${GO} build -o dgrep ./cmd/dgrep/main.go
+ ${GO} build ${GO_FLAGS} -o dgrep ./cmd/dgrep/main.go
dmap:
- ${GO} build -o dmap ./cmd/dmap/main.go
+ ${GO} build ${GO_FLAGS} -o dmap ./cmd/dmap/main.go
dtail:
- ${GO} build -o dtail ./cmd/dtail/main.go
+ ${GO} build ${GO_FLAGS} -o dtail ./cmd/dtail/main.go
install:
ifndef USE_ACL
${GO} install ./cmd/dserver/main.go