Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Nowotyński <maxmati4@gmail.com>2019-04-10 23:04:40 +0300
committerMateusz Nowotyński <maxmati4@gmail.com>2019-04-13 17:01:58 +0300
commit0f45f6913bfaf8c649d72507bb75c1dc60a954ec (patch)
treec877e51d6afaa31d4c98c8a7e504694cfb04f3f3 /Makefile
parent22eb30d267465c42cbfbe51b2e028337bcd89aa1 (diff)
Do not build `gitaly-remote` by default.
Signed-off-by: Mateusz Nowotyński <maxmati4@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d0f9649e5..8aa7ac0fd 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,15 @@ all: build
.PHONY: build
build: prepare-build
- cd $(BUILD_DIR) && $(MAKE) install INSTALL_DEST_DIR=$(CURDIR)
+ cd $(BUILD_DIR) && $(MAKE) install INSTALL_DEST_DIR=$(CURDIR)
+
+.PHONY: build-gitaly-remote
+build-gitaly-remote: prepare-build
+ cd $(BUILD_DIR) && $(MAKE) $@
+
+.PHONY: test-gitaly-remote
+test-gitaly-remote: prepare-build
+ cd $(BUILD_DIR) && $(MAKE) $@
.PHONY: install
install: prepare-build