summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 290a783..1745551 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ GOBUILD_FLAGS := -ldflags "-X main.Version=$(VERSION_STRING) -X main.BuildTime=$
PREFIX ?= /usr/local
-build: bin/gitlab-shell
+build: bin/gitlab-shell bin/gitlab-sshd
validate: verify test
@@ -58,10 +58,13 @@ setup: _script_install bin/gitlab-shell
_script_install:
bin/install
-compile: bin/gitlab-shell
+compile: bin/gitlab-shell bin/gitlab-sshd
bin/gitlab-shell: $(GO_SOURCES)
GOBIN="$(CURDIR)/bin" go install $(GOBUILD_FLAGS) ./cmd/...
+bin/gitlab-sshd: $(GO_SOURCES)
+ GOBIN="$(CURDIR)/bin" go install $(GOBUILD_FLAGS) ./cmd/gitlab-sshd
+
check:
bin/check